:root {
    --honey-gold: #FFA726;
    --honey-dark: #F57C00;
    --honey-light: #FFE0B2;
    --cream: #FFF8E1;
    --brown: #5D4037;
    --text-dark: #2D2D2D;
    --text-light: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: linear-gradient(to bottom, rgba(93, 64, 55, 0.95), rgba(93, 64, 55, 0.85));
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    color: var(--honey-gold);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--honey-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/med1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.about-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-highlight {
    background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
    padding: 1rem;
    border-radius: 15px;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.award {
    text-align: center;
    padding: 1rem;
    width: 100%;
}

.award h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.award-image {
    margin: 1rem auto;
    max-width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.award-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.award-image:hover img {
    transform: scale(1.05);
}

.award p {
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.about-location {
    background: var(--honey-light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.about-location h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--text-light);
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--honey-light);
    color: var(--brown);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--honey-gold);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

/* Lightbox customization */
.lb-data .lb-caption {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.lb-data .lb-number {
    font-family: 'Raleway', sans-serif;
}

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

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.contact-info {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--honey-gold);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-map {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--honey-gold);
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--brown);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-highlight {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .contact-map {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Consider adding a mobile menu */
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .about-section h2,
    .gallery-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .award h3 {
        font-size: 1.3rem;
    }

    .about-text,
    .about-highlight,
    .about-location {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-section,
    .gallery-section,
    .contact-section {
        padding: 3rem 0;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    .award-image {
        max-width: 150px;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .contact-map {
        height: 300px;
    }
}

/* Fix for very small devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .container {
        padding: 0 0.8rem;
    }
}

/* Fix for landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0;
    }

    .about-section,
    .gallery-section,
    .contact-section {
        padding: 2rem 0;
    }
}

/* Ensure lightbox is responsive */
@media (max-width: 768px) {
    .lb-outerContainer,
    .lb-dataContainer {
        width: 90% !important;
        height: auto !important;
    }

    .lb-image {
        max-width: 100% !important;
        height: auto !important;
    }
}
