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

:root {
    /* Olive-themed color palette */
    --olive-dark: #2d5016;
    --olive-medium: #556b2f;
    --olive-light: #6b8e23;
    --olive-pale: #9acd32;
    --olive-cream: #f5f5dc;
    --olive-accent: #6b8e23;
    --olive-darker: #2d4016;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--olive-medium), var(--olive-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--olive-dark);
    border: 2px solid var(--olive-dark);
}

.btn-secondary:hover {
    background: var(--olive-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(107, 142, 35, 0.1);
}

.navbar .nav-container {
    position: relative;
    z-index: 1001;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    padding: 0 20px 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

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

.logo-icon-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--olive-medium), var(--olive-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
}

.logo-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.logo-text h2 {
    color: var(--olive-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    display: block;
    font-size: 0.7rem;
    color: var(--olive-medium);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(107, 142, 35, 0.15);
}

.header-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--olive-light), var(--olive-medium));
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(107, 142, 35, 0.2);
}

.header-social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
    background: linear-gradient(135deg, var(--olive-medium), var(--olive-dark));
}

.header-social-links a i {
    font-size: 0.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--olive-medium);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--olive-medium);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--olive-dark);
    margin: 4px 0;
    transition: all 0.25s ease-out;
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--olive-dark);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--olive-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--olive-cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
    padding-top: 80px;
}

.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="olive-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23556b2f" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23olive-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
    position: relative;
    padding-left: 2rem;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--olive-medium), var(--olive-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero-content h1 {
    color: var(--olive-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content h1 .highlight {
    color: var(--olive-light);
    position: relative;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--olive-medium), var(--olive-light));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--olive-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--olive-dark);
    font-weight: 500;
}

.hero-feature i {
    color: var(--olive-medium);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: scale(1.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.olive-container {
    position: relative;
    display: inline-block;
}

.olive-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    opacity: 0;
    animation: oliveImageEntrance 1s ease-out forwards,
               float 6s ease-in-out 1s infinite;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

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

/* Spinning olives around the main image */
.spinning-olive {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
}

.small-olive-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
}

/* Initial entrance animation for olive images */
@keyframes oliveEntrance {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Entrance animation for main olive image */
@keyframes oliveImageEntrance {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0px);
    }
    50% {
        transform: scale(1.15) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0px);
    }
}

/* Individual spinning olive positions and animations */
.spinning-olive-1 {
    top: 10%;
    right: 10%;
    animation: oliveFadeIn 0.8s ease-out 0.2s forwards,
               orbit-1 12s ease-in-out 1s infinite;
}

.spinning-olive-1 .small-olive-img {
    animation: oliveEntrance 0.8s ease-out 0.2s forwards,
               spin-clockwise 8s linear 1s infinite;
}

.spinning-olive-2 {
    top: 30%;
    left: -10%;
    animation: oliveFadeIn 0.8s ease-out 0.4s forwards,
               orbit-2 10s ease-in-out 1.2s infinite;
}

.spinning-olive-2 .small-olive-img {
    animation: oliveEntrance 0.8s ease-out 0.4s forwards,
               spin-counterclockwise 6s linear 1.2s infinite;
}

.spinning-olive-3 {
    bottom: 20%;
    right: -5%;
    animation: oliveFadeIn 0.8s ease-out 0.6s forwards,
               orbit-3 14s ease-in-out 1.4s infinite;
}

.spinning-olive-3 .small-olive-img {
    animation: oliveEntrance 0.8s ease-out 0.6s forwards,
               spin-clockwise 10s linear 1.4s infinite;
}

.spinning-olive-4 {
    top: 50%;
    left: -15%;
    animation: oliveFadeIn 0.8s ease-out 0.8s forwards,
               orbit-4 11s ease-in-out 1.6s infinite;
}

.spinning-olive-4 .small-olive-img {
    animation: oliveEntrance 0.8s ease-out 0.8s forwards,
               spin-counterclockwise 7s linear 1.6s infinite;
}

.spinning-olive-5 {
    bottom: 10%;
    left: 15%;
    animation: oliveFadeIn 0.8s ease-out 1s forwards,
               orbit-5 13s ease-in-out 1.8s infinite;
}

.spinning-olive-5 .small-olive-img {
    animation: oliveEntrance 0.8s ease-out 1s forwards,
               spin-clockwise 9s linear 1.8s infinite;
}

.spinning-olive-6 {
    top: 15%;
    left: 20%;
    animation: oliveFadeIn 0.8s ease-out 1.2s forwards,
               orbit-6 9s ease-in-out 2s infinite;
}

.spinning-olive-6 .small-olive-img {
    animation: oliveEntrance 0.8s ease-out 1.2s forwards,
               spin-counterclockwise 5s linear 2s infinite;
}

/* Fade-in animation for container */
@keyframes oliveFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Spinning animations */
@keyframes spin-clockwise {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@keyframes spin-counterclockwise {
    from { transform: scale(1) rotate(360deg); }
    to { transform: scale(1) rotate(0deg); }
}

/* Orbit animations for floating movement */
@keyframes orbit-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -10px) scale(1.1); }
    50% { transform: translate(5px, -25px) scale(0.9); }
    75% { transform: translate(-10px, -15px) scale(1.05); }
}

@keyframes orbit-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, 15px) scale(0.8); }
    50% { transform: translate(-10px, 30px) scale(1.2); }
    75% { transform: translate(5px, 10px) scale(0.95); }
}

@keyframes orbit-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, 20px) scale(1.1); }
    50% { transform: translate(-15px, 15px) scale(0.85); }
    75% { transform: translate(-5px, -10px) scale(1.15); }
}

@keyframes orbit-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(25px, -5px) scale(0.9); }
    50% { transform: translate(15px, -20px) scale(1.3); }
    75% { transform: translate(-5px, -15px) scale(0.8); }
}

@keyframes orbit-5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-15px, -20px) scale(1.2); }
    50% { transform: translate(20px, -10px) scale(0.9); }
    75% { transform: translate(10px, 15px) scale(1.05); }
}

@keyframes orbit-6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5px, 25px) scale(0.85); }
    50% { transform: translate(-20px, 5px) scale(1.15); }
    75% { transform: translate(-10px, -20px) scale(1.0); }
}

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

/* Placeholder Images - General Styles */
.placeholder-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placeholder-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* About Section - Olive Grove Image */
.olive-grove-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Products Section - Oil Bottle Images */
.oil-bottle-img {
    width: 120px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

/* Tastings Section - Tasting Setup Image */
.tasting-setup-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

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

.section-header h2 {
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--olive-medium);
    font-size: 1.2rem;
}

/* Section fade animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

section.fade-out {
    opacity: 0.3;
    transform: translateY(10px);
}

/* Hero section should be visible immediately */
.hero {
    opacity: 1;
    transform: translateY(0);
}

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

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

.about-text h3 {
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--olive-medium);
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--olive-dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.olive-grove {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--olive-light), var(--olive-medium));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.olive-grove::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="20" cy="20" r="3" fill="%239acd32"/><circle cx="80" cy="30" r="2" fill="%239acd32"/><circle cx="40" cy="60" r="2.5" fill="%239acd32"/><circle cx="70" cy="70" r="2" fill="%239acd32"/></svg>');
    opacity: 0.6;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--gray-light);
}

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

.products-grid-centered {
    max-width: 800px;
    margin: 3rem auto 0;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    justify-items: center;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.product-image {
    text-align: center;
    margin-bottom: 2rem;
}

.oil-bottle {
    width: 120px;
    height: 200px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.oil-bottle.classic {
    background: linear-gradient(135deg, var(--olive-medium), var(--olive-dark));
}

.oil-bottle.premium {
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-medium));
}

.oil-bottle.organic {
    background: linear-gradient(135deg, var(--olive-pale), var(--olive-light));
}

.oil-bottle::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: var(--olive-dark);
    border-radius: 5px;
}

.product-info h3 {
    color: var(--olive-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.product-info p {
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--olive-medium);
    font-weight: 500;
}

.product-details .acidity {
    text-align: center;
    width: 100%;
}

/* Tastings Section */
.tastings {
    padding: 6rem 0;
    background: var(--white);
}

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

.tasting-info h3 {
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.tasting-info p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.tasting-features {
    margin-bottom: 2rem;
}

.tasting-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tasting-feature i {
    font-size: 1.5rem;
    color: var(--olive-medium);
    width: 30px;
}

.tasting-feature h4 {
    color: var(--olive-dark);
    margin-bottom: 0.25rem;
}

.tasting-feature p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.tasting-setup {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--olive-cream), var(--olive-pale));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.tasting-setup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--olive-medium);
    border-radius: 50%;
    opacity: 0.3;
}

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

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(107, 142, 35, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--olive-medium);
    border-radius: 10px;
}

.contact-item-content {
    flex: 1;
}

.contact-item h4 {
    color: var(--olive-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-medium);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--olive-medium);
}

/* Phone number styling */
.phone-primary {
    margin-bottom: 0.8rem;
}

.phone-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.phone-icon {
    font-size: 1rem;
    color: var(--olive-medium);
}

.phone-whatsapp a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--olive-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-whatsapp a:hover {
    color: var(--olive-medium);
}

.phone-label {
    font-size: 0.85rem;
    color: var(--olive-medium);
    font-weight: 500;
    font-style: italic;
}

.phone-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(107, 142, 35, 0.15);
}

.phone-secondary a {
    font-size: 0.95rem;
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-secondary a:hover {
    color: var(--olive-medium);
}

.phone-secondary-label {
    font-size: 0.8rem;
    color: var(--gray-medium);
    opacity: 0.7;
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--shadow-dark);
}

.contact-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.contact-cta h3 {
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 25px;
    font-size: 1.1rem;
}

.contact-buttons .btn i {
    font-size: 1.2rem;
}

.contact-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.hours-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hours-header i {
    color: var(--olive-medium);
    font-size: 1.2rem;
}

.hours-header h4 {
    color: var(--olive-dark);
    margin-bottom: 0;
}

.hours-schedule {
    display: grid;
    gap: 0.75rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.hours-day:hover {
    background: rgba(107, 142, 35, 0.1);
}

.hours-day.closed {
    opacity: 0.7;
}

.hours-day .day {
    font-weight: 500;
    color: var(--olive-dark);
    font-size: 0.95rem;
}

.hours-day .time {
    color: var(--olive-medium);
    font-weight: 500;
    font-size: 0.95rem;
}

.hours-day.closed .time {
    color: var(--gray-medium);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--olive-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    justify-items: center;
}

.footer-section h3,
.footer-section h4 {
    color: var(--olive-cream);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--olive-cream);
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--olive-cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--olive-medium);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--olive-light);
}

.footer-awards {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--olive-medium);
    border-bottom: 1px solid var(--olive-medium);
}

.awards-image {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.awards-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--olive-cream);
    opacity: 0.8;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 85%;
        max-width: 320px;
        height: 100vh;
        text-align: left;
        transition: left 0.25s ease-out;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.2);
        padding: 5rem 0 2rem 0;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(107, 142, 35, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 2rem;
        color: var(--olive-dark);
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        position: relative;
        text-align: left;
    }
    
    .nav-menu a i {
        width: 20px;
        text-align: center;
        font-size: 1rem;
        color: var(--olive-medium);
        transition: all 0.3s ease;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, var(--olive-medium), var(--olive-dark));
        transform: scaleY(0);
        transition: transform 0.3s ease;
        transform-origin: bottom;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus {
        background: rgba(107, 142, 35, 0.1);
        color: var(--olive-dark);
        padding-left: 2.5rem;
    }
    
    .nav-menu a:hover i,
    .nav-menu a:focus i {
        color: var(--olive-dark);
        transform: scale(1.2);
    }
    
    .nav-menu a:hover::before,
    .nav-menu a:focus::before {
        transform: scaleY(1);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Reset menu items when menu is closed */
    .nav-menu:not(.active) li {
        opacity: 0;
        animation: none;
    }
    
    /* Staggered animation for menu items */
    .nav-menu.active li {
        animation: slideInLeft 0.2s ease-out forwards;
        opacity: 0;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.02s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.04s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.06s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.08s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.1s; }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-10px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 2rem 1rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        padding-left: 0;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-icon-image {
        height: 40px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 160px;
    }
    
    .nav-logo {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .header-social-links {
        gap: 0.4rem;
        margin-left: 0.25rem;
        padding-left: 0.75rem;
        border-left: 1px solid rgba(107, 142, 35, 0.1);
    }
    
    .header-social-links a {
        width: 28px;
        height: 28px;
    }
    
    .header-social-links a i {
        font-size: 0.75rem;
    }
    
    /* Hide social links in mobile menu view */
    .nav-menu.active ~ .hamburger ~ .nav-logo .header-social-links {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-features {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .tastings-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-centered {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .olive-image {
        max-height: 300px;
        max-width: 90%;
    }
    
    .olive-grove-img,
    .tasting-setup-img {
        height: 250px;
    }
    
    .oil-bottle-img {
        width: 80px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 1rem 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    /* Mobile phone styling */
    .phone-whatsapp {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .phone-whatsapp a {
        font-size: 1rem;
    }
    
    .phone-label {
        display: block;
        width: 100%;
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }
    
    .phone-secondary {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .phone-secondary-label {
        font-size: 0.75rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hours-day {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hours-day .day,
    .hours-day .time {
        font-size: 0.9rem;
    }
    
    .footer-awards {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }
    
    .awards-image {
        max-height: 120px;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-container {
        gap: 0.4rem;
    }
    
    .logo-icon-image {
        height: 35px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 140px;
    }
    
    .header-social-links {
        gap: 0.35rem;
        margin-left: 0.2rem;
        padding-left: 0.5rem;
    }
    
    .header-social-links a {
        width: 26px;
        height: 26px;
    }
    
    .header-social-links a i {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 90%;
        max-width: 300px;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-menu a i {
        width: 18px;
        font-size: 0.9rem;
    }
} 