:root {
    --honey-gold: #FFA500;
    --honey-light: #FFD700;
    --honey-dark: #B8860B;
    --cream: #FFFAF0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--cream);
}

.header {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

nav {
    background-color: var(--honey-dark);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--honey-light);
}

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

.about-section {
    background-color: white;
    padding: 3rem 0;
    margin: 2rem 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content h3 {
    color: var(--honey-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-content h4 {
    color: var(--honey-gold);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
}

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

.about-content ul {
    list-style-position: inside;
    margin: 1rem 0 1.5rem 1rem;
}

.about-content li {
    margin-bottom: 0.5rem;
    color: var(--honey-dark);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.address {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--honey-gold);
}

.address h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.address h2::after {
    left: 0;
    transform: none;
}

.address p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address p::before {
    content: '🐝';
    color: var(--honey-gold);
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map iframe {
    border: none;
    border-radius: 10px;
}

h2 {
    text-align: center;
    color: var(--honey-dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--honey-light), var(--honey-dark));
    border-radius: 2px;
}

.gallery-section {
    padding: 1rem 0;
    background-color: white;
    margin: 1rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.gallery-category {
    margin: 1.5rem 0 0.5rem 0;
    text-align: center;
    color: var(--honey-dark);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.gallery-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--honey-light), var(--honey-dark));
    border-radius: 2px;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.gallery-intro h1 {
    color: var(--honey-dark);
    margin-bottom: 1rem;
}

.gallery-intro p {
    color: var(--honey-dark);
    font-size: 1.1rem;
    line-height: 1.4;
}

.gallery-item-info {
    padding: 0.8rem;
    background: linear-gradient(to right, var(--honey-light), var(--honey-gold));
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Image viewer styles */
.image-viewer {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.viewer-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}

.caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}

.close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Animation */
.viewer-content, .caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* Fullscreen styles */
img:-webkit-full-screen {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: black;
}

img:-moz-full-screen {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: black;
}

img:fullscreen {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: black;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    margin: auto;
    display: block;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-caption {
    color: #f1f1f1;
    font-size: 1.2em;
    padding: 15px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .map {
        height: 300px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 1rem;
        gap: 1rem;
    }
    
    .gallery img {
        height: 250px;
    }
}
