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

:root {
    /* Colors inspired by the logo */
    --primary-yellow: #FFD700;
    --primary-orange: #FF8C00;
    --primary-green: #2E7D32;
    --secondary-green: #4CAF50;
    --light-orange: #FFB347;
    --dark-green: #1B5E20;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --heading-weight: 700;
    --subheading-weight: 600;
    --body-weight: 400;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: var(--subheading-weight);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/Main photo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-logo img {
    height: auto;
    width: 200px;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: var(--heading-weight);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: var(--subheading-weight);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--heading-weight);
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-text {
    flex-grow: 1;
    margin-top: 50px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 30px;
    height: 100%;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    flex: 1;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Auto-rotating Gallery Styles */
.auto-gallery {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    height: 350px;
    background: var(--light-gray);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-yellow);
}

/* Accommodations Section */
.accommodations {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    font-size: 1.3rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 20px;
}

.room-details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.room-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.room-details i {
    color: var(--primary-orange);
    width: 20px;
}

.room-price {
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: var(--heading-weight);
    color: var(--primary-green);
}

.tax-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: block;
}

.book-btn {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: var(--subheading-weight);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-top: auto;
}

.book-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.dorm-card .room-image {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

/* Breakfast Section */
.breakfast {
    padding: var(--section-padding);
    background: var(--white);
}

.breakfast-content {
    display: grid;
    grid-template-columns: 1.5fr 1.25fr;
    gap: 60px;
    align-items: center;
}

.breakfast-text h3 {
    font-size: 1.8rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 20px;
}

.breakfast-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.breakfast-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.breakfast-text li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.breakfast-text li::before {
    content: '☀️';
    position: absolute;
    left: 0;
}

.breakfast-note {
    font-style: italic;
    color: var(--primary-orange);
    font-weight: var(--subheading-weight);
}

/* Breakfast Gallery Styles */
.breakfast-gallery {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    height: 400px;
    background: var(--light-gray);
}

.breakfast-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.breakfast-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.breakfast-slide.active {
    opacity: 1;
}

.breakfast-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.breakfast-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.breakfast-dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.breakfast-dot:hover {
    background: var(--primary-yellow);
}

/* Amenities Section */
.amenities {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.amenities-category {
    margin-bottom: 60px;
}

.amenities-category h3 {
    font-size: 2rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.amenity-item, .social-area {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.amenity-item:hover, .social-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.amenity-item i, .social-area i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.amenity-item h4, .social-area h4 {
    font-size: 1.2rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Amenities Gallery Styles */
.amenities-gallery {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    height: 400px;
    background: var(--light-gray);
    margin-top: 30px;
}

.amenities-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.amenities-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.amenities-slide.active {
    opacity: 1;
}

.amenities-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.amenities-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amenities-dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.amenities-dot:hover {
    background: var(--primary-yellow);
}

.social-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Attractions Section */
.attractions {
    padding: var(--section-padding);
    background: var(--white);
}

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

.attraction-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-orange);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.attraction-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.attraction-card h3 {
    font-size: 1.4rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 10px;
}

.distance {
    font-weight: var(--subheading-weight);
    color: var(--primary-orange);
    margin-bottom: 15px !important;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: var(--heading-weight);
    color: var(--primary-green);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Google Map Styling */
.map-container {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container h3 {
    font-size: 1.4rem;
    font-weight: var(--heading-weight);
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
}

.google-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Booking and Transport Info */
.booking-info,
.transport-info {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.booking-info:hover,
.transport-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.booking-info h3,
.transport-info h3 {
    font-size: 1.4rem;
    font-weight: var(--heading-weight);
    color: var(--primary-green);
    margin-bottom: 15px;
}

.booking-info p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.booking-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: var(--subheading-weight);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.booking-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.transport-item:last-child {
    margin-bottom: 0;
}

.transport-item i {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.transport-item h4 {
    font-size: 1.1rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 5px;
}

.transport-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 60px 0 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-orange), var(--primary-yellow));
}

.footer-content {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.footer-logo img {
    height: auto;
    width: 220px;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(1.15) drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.25) drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.footer-tagline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-tagline {
    font-size: 1.4rem;
    font-weight: var(--heading-weight);
    color: var(--primary-yellow);
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.sub-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.location-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.highlight:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.highlight i {
    color: var(--primary-yellow);
    font-size: 0.85rem;
}

.footer-links, .footer-social {
    padding-top: 10px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.25rem;
    font-weight: var(--heading-weight);
    margin-bottom: 24px;
    color: var(--primary-yellow);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.developer-credit {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.developer-credit a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: var(--subheading-weight);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.developer-credit a:hover {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
    transform: translateY(-1px);
}

.footer-motto {
    font-size: 1rem;
    color: var(--primary-yellow);
    font-weight: var(--subheading-weight);
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Image Gallery Styles */
.image-gallery {
    margin-top: 80px;
    text-align: center;
}

.image-gallery h3 {
    font-size: 2rem;
    font-weight: var(--subheading-weight);
    color: var(--primary-green);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 140, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background: rgba(255, 140, 0, 0.8);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.prev-btn i, .next-btn i {
    font-size: 1.2rem;
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: var(--subheading-weight);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: var(--subheading-weight);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--primary-green);
    color: var(--white);
}

.flag {
    font-size: 1.2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .breakfast-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo img {
        width: 180px;
        max-width: 200px;
    }

    .location-highlights {
        justify-content: center;
    }

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

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .social-areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo img {
        width: 160px;
        max-width: 180px;
    }

    .main-tagline {
        font-size: 1.1rem;
    }

    .sub-tagline {
        font-size: 0.9rem;
    }

    .highlight {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .location-highlights {
        gap: 8px;
    }

    .footer-content {
        gap: 25px;
    }
}