/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;      /* Saddle brown - matches lodge walls */
    --secondary-color: #CD853F;    /* Peru - terra cotta color */
    --accent-color: #DAA520;       /* Goldenrod - warm yellow accent */
    --earth-orange: #CC7722;       /* Earth orange */
    --warm-terra: #D2691E;         /* Chocolate terra cotta */
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #FFF8DC;           /* Cornsilk - warm light background */
    --gradient-bg: linear-gradient(135deg, #8B4513 0%, #CD853F 50%, #DAA520 100%);
    --shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
    --shadow-hover: 0 20px 40px rgba(139, 69, 19, 0.25);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-bg);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    background: none !important;
    color: initial !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-weight: initial !important;
    font-size: initial !important;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 100%;
}

.book-btn {
    background: var(--gradient-bg);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.book-btn:after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    background: url('images/Main.jpg') center/cover;
    background-attachment: fixed;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem 2rem 4rem 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-background {
    display: none;
}

.hero-overlay {
    display: none;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Accommodations Section */
.accommodations {
    padding: 6rem 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.room-content p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.amenities {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 0;
}

.amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.amenities i {
    color: var(--accent-color);
    width: 20px;
}

.room-content .btn {
    margin-top: auto;
    display: block;
    text-align: center;
}

/* Tours Section */
.tours {
    padding: 6rem 0;
    background: var(--light-bg);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tour-content p {
    flex: 1;
    margin-bottom: 1rem;
}

.tour-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 0;
}

.tour-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-details i {
    color: var(--accent-color);
}

.tour-content .btn {
    margin-top: auto;
    display: block;
    text-align: center;
}

/* Restaurant Section */
.restaurant {
    padding: 6rem 0;
    background: var(--light-bg);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.restaurant-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.restaurant-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.restaurant-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.restaurant-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.restaurant-content p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.menu-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card .menu-highlights {
    margin: 0;
}

.menu-card .menu-highlights h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-items {
    display: grid;
    gap: 1rem;
}

.menu-item {
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.menu-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.menu-item p {
    margin: 0;
    font-size: 0.9rem;
}

.dining-info {
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item i {
    color: var(--accent-color);
    width: 20px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    height: auto;
    min-height: 500px;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.card-text {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.card-text p {
    margin: 0;
    line-height: 1.5;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Special styling for the combined Contact & Social card */
.contact-social-card {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 250px;
}

.contact-social-card .card-text {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 100%;
    padding: 1rem;
}

.phone-section,
.social-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 45%;
}

.phone-section {
    border-right: 1px solid #e0e0e0;
    padding-right: 2rem;
}

.phone-section p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.social-section {
    padding-left: 1rem;
}

.social-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 0.95rem;
}

.whatsapp-btn:hover {
    background: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.2rem;
    margin: 0;
}

.social-media-links {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: 500;
    border: 2px solid transparent;
    position: relative;
    flex-shrink: 0;
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-link.tiktok {
    background: #000000;
    color: white;
}

.social-link.tiktok:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-link.tripadvisor {
    background: #00AF87;
    color: white;
}

.social-link.tripadvisor:hover {
    background: #009973;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 175, 135, 0.4);
}

.social-link.google {
    background: #4285F4;
    color: white;
}

.social-link.google:hover {
    background: #3367d6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.social-link:hover {
    color: white;
}

.social-link i {
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.social-link span {
    display: none !important;
}

/* Language Toggle Styling */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.flag-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.lang-text {
    font-weight: 600;
    font-size: 0.85rem;
}

/* Map and Image Container Styling */
.map-and-image-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    min-height: 750px;
}

.map-container {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 400px;
    height: 100%;
    position: relative;
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    border: 0 !important;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.aerial-image-container {
    position: relative;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 350px;
}

.aerial-image-container:hover {
    box-shadow: var(--shadow-hover);
}

.aerial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.aerial-image-container:hover .aerial-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    text-align: left;
}

.image-overlay h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.image-overlay p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Mobile footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

/* Professional footer styling */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-section p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1.5rem 2rem;
}

.footer-bottom p {
    color: var(--white) !important;
    opacity: 1 !important;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Heart emoji styling */
.footer-bottom p::after {
    content: "";
    display: inline-block;
    margin-left: 0.3rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Professional testimonials section styles */
.testimonials {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 1rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info h5 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Professional CTA section */
.cta-section {
    padding: 4rem 0;
    background: var(--gradient-bg);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Professional badge styling */
.professional-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    color: var(--accent-color);
}

/* Professional stats section */
.stats-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .professional-badges {
        gap: 1rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .restaurant-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-social-card {
        grid-column: 1;
        grid-row: auto;
    }

    .contact-social-card .card-text {
        flex-direction: column;
        gap: 1.5rem;
    }

    .phone-section {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 1rem;
    }

    .social-section {
        padding-left: 0;
        padding-top: 1rem;
    }

    .map-and-image-container {
        height: auto;
        gap: 1rem;
    }

    .map-container {
        min-height: 250px;
        height: 250px;
    }

    .aerial-image-container {
        min-height: 200px;
        height: 200px;
    }

    .image-overlay {
        padding: 1rem 1rem 0.75rem;
    }

    .image-overlay h4 {
        font-size: 1rem;
    }

    .image-overlay p {
        font-size: 0.8rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .rooms-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}