/* Enhanced responsive styles for Rumi Konağı Mardin */

/* Base responsive styles - hamburger menu styling is now in hamburger-menu-fix.css */

@media (max-width: 768px) {
    .header-container {
        position: relative;
        padding: 15px 0;
    }
    
    .logo img {
        height: 50px;
    }    .footer-logo img {
        height: 70px;
    }
    
    /* Responsive container for various elements */
    .container {
        padding: 0 15px;
    }
    
    /* Adjustments for small screens */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
      .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "info"
            "form"
            "map";
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    /* Fix for first image in gallery */
    .gallery-item:first-child {
        grid-column: span 2 !important;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .room-grid, 
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: span 1 !important;
    }
    
    .hero-content {
        padding: 20px;
    }
}

/* Gold accent color update */
.btn, 
.btn-view-details, 
.room-feature, 
.testimonial-author-image,
.footer::before,
.section-title h2::after,
nav ul li a::after,
.footer-heading::after {
    background-color: var(--gold) !important;
}

.price, 
.room-badge,
.testimonial-card::before,
.footer-links a::before,
.room-feature svg,
.footer-contact-item svg,
.contact-item svg {
    color: var(--gold) !important;
}

/* Make buttons more luxurious */
.btn {
    background: linear-gradient(135deg, var(--gold) 0%, #f8e7a8 100%) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    box-shadow: 0 10px 20px rgba(243, 217, 123, 0.3) !important;
}

.btn:hover {
    background: linear-gradient(135deg, #f8e7a8 0%, var(--gold) 100%) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(243, 217, 123, 0.4) !important;
}

/* Map container styles */
.map-container {
    width: 100%;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        margin: 20px 0;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Values grid responsive styling */
@media (max-width: 991px) {
    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .value-card {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
