:root {
    --primary-color: #FFA500;
    --secondary-color: #FFD700;
    --honey-dark: #CD853F;
    --honey-darker: #8B4513;
    --honey-light: #FFE4B5;
    --dark-color: #333333;
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--honey-dark), var(--primary-color));
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: linear-gradient(to right, var(--honey-dark), var(--primary-color));
    box-shadow: var(--shadow);
    padding: 0.8rem 0;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

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

.logo img {
    height: 50px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-links a:hover {
    background: var(--honey-light);
    color: var(--honey-dark);
    text-shadow: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Honey Info Section */
.honey-info {
    background: var(--light-color);
}

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

.honey-text p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

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

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.contact-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    transition: var(--transition);
    border-radius: 8px;
}

.info-item:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.info-item p {
    margin: 0;
    font-size: 1rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, var(--honey-dark), var(--primary-color));
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        display: block;
    }

    .nav-links a:hover {
        background: var(--honey-light);
        color: var(--honey-dark);
    }

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

    .about-content,
    .honey-content,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

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

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

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

img:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--honey-darker), var(--honey-dark));
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-links h3 {
    margin-bottom: 1rem;
    color: var(--honey-light);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--honey-light);
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
