/* Root Variables */
:root {
    --primary-color: #2D5016;
    --secondary-color: #3E6B1A;
    --accent-color: #4F7A1E;
    --gold-color: #8FBC8F;
    --saffron-color: #32CD32;
    --spice-color: #228B22;
    --nature-green: #006400;
    --leaf-green: #228B22;
    --plantation-green: #013220;
    --forest-green: #0B4D0B;
    --jungle-green: #1A4A1A;
    --moss-green: #4F7942;
    --cream-color: #F0FFF0;
    --dark-brown: #1C2E1C;
    --light-brown: #556B2F;
    --text-dark: #0F2F0F;
    --text-light: #4F7942;
    --white: #FFFFFF;
    --light-gray: #F5FFF5;
    --shadow: rgba(0, 50, 0, 0.15);
    --shadow-dark: rgba(0, 50, 0, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-color);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 139, 34, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 100, 0, 0.03) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--nature-green), var(--leaf-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(240, 255, 240, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(6, 100, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(1, 50, 32, 0.3) 0%, rgba(11, 77, 11, 0.2) 30%, rgba(45, 80, 22, 0.3) 70%, rgba(13, 50, 13, 0.4) 100%),
        url('https://images.unsplash.com/photo-1559056961-84ac46983be8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    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"><defs><pattern id="rainforest-leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 Q16,10 10,18 Q4,10 10,2 Z" fill="%23006400" opacity="0.1"/><path d="M5,8 Q8,12 5,16 Q2,12 5,8 Z" fill="%23228B22" opacity="0.08"/><circle cx="15" cy="15" r="1" fill="%232D5016" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23rainforest-leaves)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 3;
    position: relative;
}

.hero-text {
    background: rgba(240, 255, 240, 0.9);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 139, 34, 0.3);
    box-shadow: 0 15px 35px rgba(0, 50, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: var(--gold-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), var(--secondary-color));
    animation: underline-expand 1s ease-out 0.5s both;
}

@keyframes underline-expand {
    from { width: 0; }
    to { width: 100%; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--forest-green), var(--nature-green));
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold-color), var(--accent-color));
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Coffee Cup Animation */
.coffee-cup-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    background: rgba(240, 255, 240, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(34, 139, 34, 0.2);
    box-shadow: 0 15px 35px rgba(0, 50, 0, 0.15);
    padding: 2rem;
}

.coffee-cup {
    width: 180px;
    height: 220px;
    background: linear-gradient(45deg, var(--forest-green), var(--nature-green));
    border-radius: 0 0 90px 90px;
    position: relative;
    animation: cup-float 3s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 50, 0, 0.3);
    border: 3px solid var(--leaf-green);
}

.coffee-cup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 160px;
    background: linear-gradient(135deg, var(--plantation-green), var(--dark-brown));
    border-radius: 0 0 75px 75px;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.3);
}

.coffee-cup::after {
    content: '';
    position: absolute;
    right: -35px;
    top: 50px;
    width: 50px;
    height: 70px;
    border: 12px solid var(--forest-green);
    border-left: none;
    border-radius: 0 40px 40px 0;
    box-shadow: 0 5px 15px rgba(0, 50, 0, 0.2);
}

.coffee-steam {
    position: absolute;
    top: -25px;
    width: 3px;
    height: 25px;
    background: linear-gradient(to top, rgba(240, 255, 240, 0.8), rgba(240, 255, 240, 0.3));
    border-radius: 2px;
    opacity: 0.8;
}

.coffee-steam:nth-child(1) {
    left: 60px;
    animation: steam 2s ease-in-out infinite;
}

.coffee-steam:nth-child(2) {
    left: 85px;
    animation: steam 2s ease-in-out 0.5s infinite;
}

.coffee-steam:nth-child(3) {
    left: 110px;
    animation: steam 2s ease-in-out 1s infinite;
}

/* Add coffee plantation elements around the cup */
.coffee-cup-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="coffee-elements" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%23DC143C" opacity="0.4"/><circle cx="60" cy="40" r="2.5" fill="%23B22222" opacity="0.3"/><path d="M40,10 Q50,20 40,30 Q30,20 40,10 Z" fill="%23228B22" opacity="0.25"/><ellipse cx="10" cy="60" rx="2" ry="3" fill="%232D5016" opacity="0.2"/></pattern></defs><rect width="400" height="400" fill="url(%23coffee-elements)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    border-radius: 20px;
}

.coffee-cup-animation::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(46, 125, 50, 0.05));
    border-radius: 15px;
    z-index: -1;
}

@keyframes cup-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes steam {
    0% { transform: translateY(0px) scaleY(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scaleY(1.5); opacity: 0.3; }
    100% { transform: translateY(-40px) scaleY(0.5); opacity: 0; }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Coffee Showcase */
.coffee-showcase {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(240, 255, 240, 0.7), rgba(245, 255, 245, 0.7)),
        url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    background: rgba(240, 255, 240, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 50, 0, 0.1);
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.coffee-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow), 0 0 0 1px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.coffee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(240, 255, 240, 0.95), rgba(245, 255, 245, 0.9));
    z-index: 1;
    border-radius: 20px;
}

.coffee-card > * {
    position: relative;
    z-index: 2;
}

.coffee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.coffee-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.coffee-bean-pattern {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--forest-green), var(--nature-green));
    position: relative;
}

.coffee-bean-pattern::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"><defs><pattern id="coffee-cherries" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="10" r="3" fill="%23DC143C" opacity="0.4"/><circle cx="8" cy="20" r="2.5" fill="%23B22222" opacity="0.3"/><ellipse cx="20" cy="22" rx="4" ry="6" fill="%23FFFFFF" opacity="0.2"/><path d="M10,5 Q15,10 10,15 Q5,10 10,5 Z" fill="%23228B22" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23coffee-cherries)"/></svg>');
}

.coffee-bean-pattern.wayanad {
    background: linear-gradient(45deg, var(--plantation-green), var(--forest-green));
}

.coffee-bean-pattern.chikmagalur {
    background: linear-gradient(45deg, var(--moss-green), var(--leaf-green));
}

.coffee-type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--leaf-green), var(--nature-green));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(34, 139, 34, 0.4);
}

.coffee-info {
    padding: 2rem;
}

.coffee-info h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coffee-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coffee-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.stat i {
    color: var(--gold-color);
}

.coffee-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.coffee-price.coming-soon {
    background: linear-gradient(45deg, var(--leaf-green), var(--nature-green));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
    display: inline-block;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(34, 139, 34, 0.4);
    }
    to {
        box-shadow: 0 4px 20px rgba(34, 139, 34, 0.7);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(13, 50, 13, 0.2) 0%, rgba(26, 74, 26, 0.1) 30%, rgba(79, 121, 66, 0.3) 70%, rgba(240, 255, 240, 0.8) 100%),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(240, 255, 240, 0.9);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 50, 0, 0.1);
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coffee-journey {
    position: relative;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-journey::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"><defs><pattern id="map" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 L40,25 L25,40 L10,25 Z" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23map)"/></svg>');
}

.journey-step {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--leaf-green), var(--gold-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.5);
}

.journey-step:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--leaf-green);
}

.journey-step[data-city="coorg"] {
    top: 25%;
    left: 40%;
}

.journey-step[data-city="wayanad"] {
    top: 45%;
    left: 35%;
}

.journey-step[data-city="chikmagalur"] {
    top: 20%;
    left: 50%;
}

.journey-step[data-city="nilgiris"] {
    top: 60%;
    left: 55%;
}

.city-marker {
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 139, 34, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 139, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 139, 34, 0); }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(240, 255, 240, 0.7), rgba(245, 255, 245, 0.7)),
        url('https://images.unsplash.com/photo-1587734195503-904fca47e0df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(240, 255, 240, 0.9);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 50, 0, 0.1);
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--gold-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-color);
}

.form-input::placeholder {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: 
        linear-gradient(rgba(1, 50, 32, 0.85), rgba(13, 50, 13, 0.85)),
        url('https://images.unsplash.com/photo-1485808191679-5760e38de311?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h4,
.footer-section h5 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--cream-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
    color: var(--cream-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile background fix */
    .hero,
    .coffee-showcase,
    .about,
    .contact {
        background-attachment: scroll;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(240, 255, 240, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        background: rgba(240, 255, 240, 0.95);
        backdrop-filter: blur(20px);
    }

    .about-text,
    .contact-info,
    .section-header {
        background: rgba(240, 255, 240, 0.95);
        backdrop-filter: blur(15px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .coffee-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .coffee-cup {
        width: 150px;
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Natural atmosphere enhancement */
.hero,
.coffee-showcase,
.about,
.contact {
    position: relative;
}

.hero::after,
.coffee-showcase::after,
.about::after,
.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(34, 139, 34, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(0, 100, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Plantation-inspired floating leaves */
.floating-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

.floating-leaf {
    position: absolute;
    width: 12px;
    height: 8px;
    background: var(--forest-green);
    border-radius: 50% 0;
    animation: leafFloat 8s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-10px) rotate(-5deg); 
        opacity: 0.15;
    }
    75% { 
        transform: translateY(-15px) rotate(3deg); 
        opacity: 0.2;
    }
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
} 