/* ============================================
   Avenir Font Face Declarations
   ============================================ */
@font-face {
    font-family: 'Avenir Book';
    src: url('../fonts/Avenir-Book.woff2') format('woff2'),
         url('../fonts/Avenir-Book.woff') format('woff'),
         url('../fonts/Avenir-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Heavy';
    src: url('../fonts/Avenir-Heavy.woff2') format('woff2'),
         url('../fonts/Avenir-Heavy.woff') format('woff'),
         url('../fonts/Avenir-Heavy.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir-MediumOblique';
    src: url('../fonts/Avenir-MediumOblique.woff2') format('woff2'),
         url('../fonts/Avenir-MediumOblique.woff') format('woff'),
         url('../fonts/Avenir-MediumOblique.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia Bold';
    src: url('../fonts/Georgia-Bold.eot');
    src: url('../fonts/Georgia-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Georgia-Bold.woff2') format('woff2'),
         url('../fonts/Georgia-Bold.woff') format('woff'),
         url('../fonts/Georgia-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir Book', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #6C6C6C;
    background-color: #F3F3F3;
    font-size: 16px;
    font-weight: normal;
}

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

section {
    padding: 80px 0;
}

/* ============================================
   Fade-in Animation for Sections
   ============================================ */
section.fade-in-section {
    opacity: 0 !important;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

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

green {
    color: #51876E;
}

/* ============================================
   Header
   ============================================ */
.header {
    padding: 30px 0 20px;
    background-color: #F3F3F3;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E5E5E5;
}

.header-content {
    align-items: center;
    text-align: center;
}

.logo-icon {
    width: 220px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-name h1 {
    font-family: 'Avenir Heavy', sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #6C6C6C;
    margin: 0;
}

.tagline {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #6C6C6C;
    margin: 0;
    text-transform: uppercase;
}

/* ============================================
   Hero Image Section
   ============================================ */
.hero-image {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/7;
}

.stamp-container {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.stamp-container.stamp-2 {
    left: auto;
    top: -80px;
    right: 40px;
}

.stamp-container.stamp-3 {
    left: auto;
    top: -100px;
    right: 0px;
}

.stamp-container.stamp-4 {
    left: auto;
    top: -100px;
    right: -100px;
}
.stamp-container.stamp-4 img {
    width: 220px;
}

.stamp-container.stamp-5 {
    left: auto;
    top: auto;
    bottom: -80px;
    right: -220px;
}

.stamp-img {
    width: 230px;
    height: auto;
    display: block;
}

.stamp-img-2 {
    width: 240px;
    height: auto;
    display: block;
}
/* ============================================
   Typography
   ============================================ */
.section-title {
    font-family: 'Avenir Heavy', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
}

.green-text {
    color: #51876E;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: left;
}

.center-align {
    text-align: left;
}

.text-content {
    font-size: 20px;
    line-height: 27px;
    text-align: left;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Introduction Section
   ============================================ */
.intro-section {
    padding: 80px 0;
    background-color: #F3F3F3;
}

.intro-section .section-title {
    font-family: 'Georgia Bold', 'Georgia', serif;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    max-width: 840px;
    margin: 0 auto 20px;
    color: #51876E;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #6C6C6C;
    font-size: 17px;
    line-height: 23px;
}

.intro-text p {
    margin-bottom: 25px;
}

/* ============================================
   Quote Styles
   ============================================ */
.quote {
    max-width: 700px;
    margin: 20px 0 0;
    text-align: left;
    border: none;
    padding: 0;
}

.intro-section .quote {
    margin: 20px auto 0;
    text-align: center;
}

.quote-text {
    font-family: 'Avenir-MediumOblique', sans-serif;
    font-size: 20px;
    font-style: italic;
    line-height: 27px;
    color: #6C6C6C;
    font-weight: 500;
}

.quote-author {
    font-size: 18px;
    font-style: normal;
    color: #6C6C6C;
    font-weight: 400;
    display: block;
}

/* ============================================
   Image Grid Sections
   ============================================ */
.image-grid-section {
    padding: 40px 0;
    background-color: #ebe9e6;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1440px;
    margin: 0px auto;
}

.grid-item {
    width: 100%;
}

.grid-item:nth-child(odd) {
    padding-top: 40px;
}


.grid-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 0.5;
}

/* ============================================
   Section Content (Meet Family, Farm, etc.)
   ============================================ */
.meet-family-section,
.farm-section,
.wine-section {
    padding: 100px 0 50px;
    background-color: #F3F3F3;
}

.wine-section {
   overflow: hidden;
}

.farm-section {
    overflow: hidden;
}

.container {
    position: relative;
}

.wine-section .container {
    padding-right: 220px;
}

.experiencia-section {
    padding: 100px 0;
    background-color: #F3F3F3;
}

.section-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.farm-section .section-content {
    align-items: end;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
    padding-right: 150px;
}

.section-content.reverse .section-image {
    order: -1;
}

.section-text {
    position: relative;
}

.section-image {
    width: 100%;
}

.section-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #C9B8A8 0%, #A89787 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
}

.section-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}


/* ============================================
   Icons Overlay
   ============================================ */
.icon-overlay {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.icon-overlay svg {
    width: 100%;
    height: 100%;
}

.wine-icons {
    position: absolute;
    top: -40px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.wine-icons svg {
    width: 80px;
    height: 80px;
}

.leaf-icon,
.cow-icon,
.grape-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ============================================
   Farmhouse Section
   ============================================ */
.farmhouse-section {
    padding: 100px 0 40px;
    background-color: #F3F3F3;
}

.farmhouse-section .container {
    padding-left: 220px;
}

.experiencia-section .container {
    padding-right: 220px;
}

.farmhouse-hero-image {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

/* .farmhouse-hero-image .image-placeholder {
    width: 100%;
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, #B5A595 0%, #968A7A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 300;
} */

.farmhouse-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 5/3;
}

.farmhouse-section .section-title {
    text-align: left;
    /* margin-bottom: 60px; */
}

.two-column-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    /* max-width: 1000px; */
    /* margin: 0 auto 60px; */
    color: #6C6C6C;
    font-size: 20px;
    line-height: 27px;
    text-align: left;
}

.two-column-text .column p {
    margin-bottom: 20px;
}

.single-column-text {
    color: #6C6C6C;
    font-size: 20px;
    line-height: 27px;
    text-align: left;
}


/* ============================================
   CTA Text
   ============================================ */
.cta-text {
    font-family: 'Avenir Heavy', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #6C6C6C;
    margin-top: 30px;
}

/* ============================================
   Experiences Grid Section
   ============================================ */
.experiences-grid-section .container {
    max-width: 1440px;
}


.experiences-grid-section {
    padding: 20px 0;
    background-color: #F3F3F3;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Slick slider styles */
.experiences-grid.slick-slider {
    display: block;
    margin-bottom: 90px;
}

.experiences-grid .slick-list {
    margin: 0 -15px;
}

.experiences-grid .slick-slide {
    padding: 0 15px;
}

.experiences-grid .slick-dots {
    bottom: -50px;
    text-align: center;
}

.experiences-grid .slick-dots li button:before {
    color: #51876E;
    font-size: 12px;
}

.experiences-grid .slick-dots li.slick-active button:before {
    color: #51876E;
    opacity: 1;
}

.experience-item {
    text-align: left;
}

.experience-image {
    width: 100%;
    margin-bottom: 20px;
}

.experience-image .image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #D4C5B9 0%, #B8A79B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 300;
}

.experience-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/5;
}

.experience-title {
    font-family: 'Avenir Heavy', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #51876E;
    margin-bottom: 10px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.experience-description {
    font-size: 20px;
    line-height: 27px;
    color: #6C6C6C;
    line-height: 1.6;
}

.experiences-cta {
    text-align: left;
    font-size: 16px;
    color: #6C6C6C;
    margin-top: 40px;
    font-family: 'Avenir Heavy', sans-serif;
    max-width: 1120px;
    margin: 0 auto;
}

.experiences-cta a {
    color: #51876E;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.experiences-cta a:hover {
    opacity: 0.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 100px 0 0px;
    background-color: #F3F3F3;
    text-align: center;
}

.footer-slogan {
    /* font-family: 'Avenir Heavy', sans-serif; */
    font-size: 24px;
    /* font-weight: bold; */
    color: #51876E;
    margin-bottom: 50px;
    line-height: 30px;
}

.footer-cta {
    font-family: 'Avenir Heavy', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #6C6C6C;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-info {
    max-width: 700px;
    margin: 0 auto 20px;
}

.footer-address {
    font-size: 16px;
    color: #6C6C6C;
    margin-bottom: 0px;
    font-weight: 500;
}

.footer-contact {
    font-size: 15px;
    color: #6C6C6C;
    line-height: 22px;
}

.footer-contact a {
    color: #51876E;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.7;
}

.footer-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-icon-img {
    width: 30px;
    height: 30px;
}

.leaf-icon-small {
    width: 60px;
    height: 60px;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-family: 'Avenir Heavy', sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #6C6C6C;
    margin-bottom: 5px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
}

.footer-nav a {
    font-size: 12px;
    color: #6C6C6C;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #51876E;
}

/* ============================================
   Footer Bottom
   ============================================ */
.footer-bottom {
    background-color: #eae8e5;
    padding: 40px 0;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-bottom-cta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 40px;
    font-size: 12px;
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-cta a {
    color: #6C6C6C;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom-cta a:hover {
    opacity: 0.7;
}

.footer-bottom-cta span {
    color: #6C6C6C;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 900px) {
    .image-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        gap: 20px;
        padding: 0 20px;
    }

    .image-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .grid-item {
        flex: 0 0 auto;
        width: 80vw;
        max-width: 400px;
        scroll-snap-align: start;
        padding-top: 0;
    }

    .grid-item:nth-child(odd) {
        padding-top: 0;
    }

    .stamp-img,
    .stamp-img-2,
    .stamp-container.stamp-4 img {
        width: 120px;
    }

    .hero-img {
        height: 80vh;
        aspect-ratio: auto;
    }

    .farm-section .section-img {
        aspect-ratio: 5/3;
    }
}

@media (max-width: 990px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content .section-image {
        order: -1;
    }

    .section-content .section-text {
        order: 1;
    }

    .section-content.reverse .section-image {
        order: -1;
    }

    .section-content.reverse .section-text {
        order: 1;
    }

    .section-image,
    .section-text {
        width: 100%;
    }

    .two-column-text {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .farmhouse-section .container,
    .experiencia-section .container,
    .wine-section .container,
    .farm-section .container,
    .meet-family-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-content.reverse {
        padding-right: 0;
    }

    .meet-family-section .section-content,
    .farm-section .section-content,
    .experiencia-section .section-content,
    .wine-section .section-content {
        grid-template-columns: 1fr;
    }

    .meet-family-section .section-content .section-image,
    .farm-section .section-content .section-image,
    .experiencia-section .section-content .section-image,
    .wine-section .section-content .section-image {
        order: -1;
    }

    .meet-family-section .section-content .section-text,
    .farm-section .section-content .section-text,
    .experiencia-section .section-content .section-text,
    .wine-section .section-content .section-text {
        order: 1;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .intro-section,
    .meet-family-section,
    .farm-section,
    .experiencia-section,
    .wine-section,
    .farmhouse-section,
    .experiences-grid-section {
        padding: 60px 0;
    }

    .header {
        padding: 20px 0;
    }

    .logo-icon {
        width: 160px;
    }

    .brand-name h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .intro-text {
        font-size: 16px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content.reverse .section-image {
        order: 0;
    }

    .two-column-text {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experiences-grid:not(.slick-initialized) {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .experiences-grid.slick-slider {
        margin-bottom: 90px;
    }

    .experiences-cta {
        margin-top: 0px;
    }

    .experiences-cta {
        margin-top: 20px;
    }

    .icon-overlay {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
    }

    .wine-icons {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        flex-direction: row;
    }

    .wine-icons svg {
        width: 60px;
        height: 60px;
    }

    .footer {
        padding: 40px 0 0px;
    }

    .footer-slogan {
        font-size: 20px;
    }

    .footer-cta {
        font-size: 16px;
    }

    .footer-nav {
        gap: 20px;
        flex-direction: column;
    }

    .intro-section .section-title {
        font-size: 20px;
    }

    .intro-text {
        font-size: 16px;
        line-height: 23px;
    }

    .quote-text {
        font-size: 16px;
        line-height: 23px;
    }

    .quote-author {
        font-size: 16px;
        line-height: 23px;
    }

    .text-content,
    .two-column-text {
        font-size: 16px;
        line-height: 23px;
    }

    /* All text elements - font-size 16px and line-height 23px */
    body,
    p,
    .text-content p,
    .intro-text p,
    .two-column-text .column,
    .two-column-text .column p,
    .single-column-text,
    .single-column-text p,
    .quote-author,
    .experience-description,
    .footer-contact,
    .footer-address,
    .experiences-cta {
        font-size: 16px;
        line-height: 23px;
    }

    .experience-item {
        /* margin-bottom: 50px; */
    }

    .experiences-grid .slick-dots {
        bottom: -40px;
    }

    .footer-bottom-cta {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-bottom-left,
    .footer-bottom-right,
    .footer-bottom-center {
        flex: none;
        text-align: center;
        width: 100%;
    }

    .footer-bottom-left {
        order: 1;
    }

    .footer-bottom-right {
        order: 2;
    }

    .footer-bottom-center {
        order: 3;
    }

    .stamp-container.stamp-4 {
        left: auto;
        top: -60px;
        right: 0px;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .experiences-grid:not(.slick-initialized) {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .quote-text {
        font-size: 18px;
    }

    .footer-slogan {
        font-size: 18px;
    }
}

