/*==================================================
  TENNESSEE SUNSET FARM
  STYLE.CSS
  Version 3.0
====================================================

  Design Inspiration
  • Warm Southern Hospitality
  • Boutique Agritourism
  • Elegant Farm Experience
  • Sequatchie Valley Sunsets

==================================================*/

/*==================================================
  GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Tilt+Neon&display=swap');  

@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Poppins:wght@300;400;500;600;700&family=Tilt+Neon&display=swap');

/*==================================================
  ROOT VARIABLES
==================================================*/

:root{

    /* Brand Colors */

    --primary:#222222;
    --primary-dark:#574739;

    --secondary:#E66A66;

    --accent:#E8B64B;

    /* Backgrounds */

    --background:#FCFAF6;

    --surface:#FFFFFF;

    --card:#F8F2E8;

    /* Text */

    --text:#333333;

    --text-light:#666666;

    /* UI */

    --border:#E9E0D3;

    --shadow:0 4px 12px rgba(0,0,0,.06);

    --radius:22px;

    --transition:.3s ease;

    --container:1220px;

}
/*==================================================
  RESET
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);

    color:var(--text);

    font-family:'Poppins',sans-serif;

    font-size:15px;

    line-height:1.8;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button,
input,
textarea{

    font:inherit;

}

/*==================================================
  TYPOGRAPHY
==================================================*/

body{

    background:var(--background);

    color:var(--text);

    font-family:'Poppins',sans-serif;

    font-size:15px;

    line-height:1.8;

    -webkit-font-smoothing:antialiased;

}

/* ======================================
   FORCE TILT NEON ON ALL HEADINGS
====================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.hero h2,
.section-heading h2,
.feature-text h4,
.experience-card h3,
.visit-card h3,
.review-author h4,
.animal-content h3,
.footer h3,
.footer h4 {
    font-family: "Tilt Neon", cursive !important;
    font-weight: 400;
}
p{

    color:var(--text-light);

    margin-bottom:20px;

}
/*==================================================
  GLOBAL LAYOUT
==================================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

.section{

    padding:130px 0;

}

.section-heading h2{

    font-size:4.2rem;

    margin-bottom:18px;

}

.section-label{

    display:inline-block;

    margin-bottom:18px;

    color:var(--accent);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.85rem;

    font-weight:700;

}

.section-heading h2{

    margin-bottom:22px;

}

.section-heading p{

    font-size:1.1rem;

}

/*==================================================
  SECTION BACKGROUNDS
==================================================*/

.welcome,
.visit-info,
.gallery,
.contact{

    background:var(--surface);

}

.experiences,
.reviews,
.animals{

    background:var(--card);

}

/*==================================================
  BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

    border-radius:999px;

    font-size:.95rem;

    font-weight:600;

    transition:.3s ease;

}

.btn-primary{

    background:var(--secondary);

    color:#ffffff;

    border:2px solid var(--secondary);

}

.btn-primary:hover{

    background:#D6A13F;

    border-color:#D6A13F;

    color:#ffffff;

    transform:translateY(-3px);

}

.btn-accent{

    background:var(--secondary);

    color:#222222;

}

.btn-accent:hover{

    background:#D6A13F;

}

/*==================================================
  CARDS
==================================================*/

.card{

    background:var(--surface);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    border:1px solid var(--border);

}

/*==================================================
  IMAGE STYLE
==================================================*/

.rounded-image{

    border-radius:38px;

    overflow:hidden;

    box-shadow:var(--shadow);

}
/*==================================================
  HEADER
==================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:all .35s ease;

}

.header.scrolled{

    background:rgba(74,56,45,.96);

    backdrop-filter:blur(14px);

    box-shadow:0 8px 30px rgba(0,0,0,.20);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:110px;

    flex-wrap:nowrap;

}

.logo{

    text-decoration:none;

}

.logo-text{

    display:inline-block;

    font-family:'Ephesis',cursive;

    font-size:2.2rem;

    font-weight:400;

    line-height:.9;

    color:#ffffff;

    text-decoration:none;

    white-space:nowrap;

    transition:var(--transition);

}

.header.scrolled .logo-text{

    color:#ffffff;

}

/*==================================================
  NAVIGATION
==================================================*/

.navigation{

    margin-left:auto;

}

.navigation ul{

    display:flex;

    align-items:center;

    gap:32px;

}

.navigation a{

    position:relative;

    font-size:.95rem;

    font-weight:600;

    letter-spacing:.05em;

    text-transform:uppercase;

    color:#ffffff;

    transition:.35s ease;

}

.header.scrolled .navigation a{

    color:#ffffff;

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s ease;

}

.navigation a:hover::after,

.navigation a.active::after{

    width:100%;

}

.navigation a:hover{

    color:var(--secondary);

}

/*==================================================
  MOBILE MENU
==================================================*/

.mobile-menu{

    display:none;
    cursor:pointer;

    background:transparent;
    border:1px solid rgba(255,255,255,.7);
    border-radius:12px;

    padding:10px 12px;

    appearance:none;
    -webkit-appearance:none;

    box-shadow:none;

}

.mobile-menu span{

    display:block;

    width:28px;

    height:2px;

    margin:6px 0;

    background:#ffffff;

    transition:.35s ease;

}

.header.scrolled .mobile-menu span{

    background:#ffffff;

}

.mobile-menu.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);
    background:#ffffff;

}

.mobile-menu.active span:nth-child(2){

    opacity:0;

}

.mobile-menu.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}

/*==================================================
  HERO
==================================================*/

.hero h1{

    font-size:6.5rem;

    color:#ffffff;

    text-shadow:0 4px 12px rgba(0,0,0,.25);

    line-height:.95;

}

.hero-background{

    position:absolute;

    inset:0;

    z-index:-3;

}

.hero-background img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    display:none;

}

.hero::after{

    display:none;

}

/*==================================================
  HERO CONTENT
==================================================*/

.hero{

    display:flex;

    align-items:center;

    justify-content:center;

    padding-top:120px;

    padding-bottom:120px;

}

.hero-content{

    max-width:750px;

    margin:auto;

    padding:50px 55px 65px;

    background:rgba(34,34,34,.45);

    border-radius:22px;

    box-shadow:0 12px 35px rgba(0,0,0,.28);

    border:1px solid rgba(255,255,255,.14);

    text-align:center;

}

.hero-subtitle{

    display:inline-block;

    margin-bottom:22px;

    color:var(--secondary);

    font-size:.9rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:4px;

}

.hero h1{

    color:#ffffff;

    margin-bottom:20px;

    text-shadow:0 2px 8px rgba(0,0,0,.25);

}


.hero p{

    color:rgba(255,255,255,.92);

    margin-bottom:35px;

    font-size:1.05rem;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;

}

/*==================================================
  SCROLL INDICATOR
==================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:34px;

    height:58px;

    border:2px solid rgba(255,255,255,.75);

    border-radius:999px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--secondary);

    left:50%;

    top:10px;

    transform:translateX(-50%);

    animation:scrollMouse 2s infinite;

}

@keyframes scrollMouse{

    0%{

        opacity:0;

        transform:translate(-50%,0);

    }

    35%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translate(-50%,22px);

    }

}
/*==================================================
  WELCOME SECTION
==================================================*/

.welcome{

    position:relative;

    overflow:hidden;

}

.welcome-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:90px;

}

.welcome-content{

    max-width:640px;

}

.welcome-content h2{

    margin-bottom:28px;

}

.welcome-content p{

    font-size:1.08rem;

    margin-bottom:28px;

}
.welcome-content i{

    color:var(--secondary);

}

.welcome-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin:45px 0;

}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.feature-icon{

    width:68px;

    height:68px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(216,165,68,.14);

}

.feature-icon i{

    color:var(--secondary);

    font-size:1.55rem;

}

.feature-text h4{

    margin-bottom:8px;

    font-size:1.45rem;

}

.feature-text p{

    margin:0;

    font-size:.96rem;

}

.welcome-image{

    position:relative;

}

.welcome-image img{

    width:100%;

    min-height:700px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.welcome-image::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(216,165,68,.14);

    border-radius:50%;

    top:-40px;

    right:-40px;

    z-index:-1;

}

.welcome-image::after{

    content:"";

    position:absolute;

    width:130px;

    height:130px;

    border:2px dashed rgba(216,165,68,.35);

    border-radius:50%;

    bottom:-35px;

    left:-35px;

    z-index:-1;

}

/*==================================================
  FARM EXPERIENCES
==================================================*/

.experiences{

    position:relative;

}

.experience-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:34px;

}

.experience-card{

    text-align:center;

    padding:35px 25px;

    border-radius:22px;
    
    background:#ffffff;
    
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.experience-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 70px rgba(58,48,40,.12);

}

.experience-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2.8rem;

    color:var(--secondary);

    margin-bottom:25px;

}

.experience-icon i{

    font-size:2rem;

    color:var(--secondary);

}

.experience-card h3{

    margin-bottom:18px;

    color:var(--primary);

}

.experience-card p{

    margin-bottom:0;

}

.experience-card:hover .experience-icon{

    transform:rotate(8deg) scale(1.05);

    transition:.35s ease;

}

/*==================================================
  FEATURE SCENIC IMAGE
==================================================*/

.feature-image{

    position:relative;

    overflow:hidden;

}

.feature-image img{

    width:100%;

    height:720px;

    object-fit:cover;

    display:block;

    filter:saturate(108%);

}

.feature-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(45,33,23,.08),

        rgba(45,33,23,.22)

    );

}

.feature-image::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:140px;

    /*background:linear-gradient(

        transparent,

        var(--surface)

    );*/

}
/*==================================================
  VISIT INFORMATION
==================================================*/

.visit-info{

    position:relative;

}

.visit-card-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:34px;

}

.visit-card{

    position:relative;

    background:var(--surface);

    border-radius:36px;

    padding:60px 35px 45px;

    text-align:center;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.visit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 70px rgba(58,48,40,.12);

}

.visit-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:22px;

}

.visit-icon i{

    font-size:2.4rem;

    color:var(--secondary);

}

.visit-card h3{

    margin-bottom:14px;

}

.visit-card p{

    margin-bottom:0;

    font-size:.95rem;

}
.visit-card .btn{
    margin-top:30px;
}

/*==================================================
  TESTIMONIALS
==================================================*/

.reviews{

    position:relative;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:34px;

}

.review-card{

    background:var(--surface);

    border-radius:36px;

    padding:45px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.review-card:hover{

    transform:translateY(-8px);

}

.review-stars{

    color:#E8B64B;

    margin-bottom:22px;

    font-size:1rem;

}

.review-card p{

    font-style:italic;

    margin-bottom:30px;

}

.review-card i{

    color:#E8B64B;

}

.review-author{

    display:flex;

    align-items:center;

    gap:18px;

}

.review-author img{

    width:72px;

    height:72px;

    object-fit:cover;

    border-radius:50%;

}

.review-author h4{

    margin-bottom:4px;

    font-size:1.4rem;

}

.review-author span{

    color:var(--text-light);

    font-size:.9rem;

}

/*==================================================
  GALLERY
==================================================*/

.gallery{

    position:relative;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.gallery-item{

    overflow:hidden;

    border-radius:30px;

    background:var(--surface);

    box-shadow:var(--shadow);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:transform .6s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item{

    position:relative;

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,0),

        rgba(0,0,0,.28)

    );

    opacity:0;

    transition:.35s ease;

}

.gallery-item:hover::after{

    opacity:1;

}

/*==================================================
  GALLERY IMAGE VARIATIONS
==================================================*/

.gallery-item.large{

    grid-column:span 2;

}

.gallery-item.tall img{

    height:664px;

}
/*==================================================
  MEET OUR ANIMALS
==================================================*/

.animals{

    position:relative;

}

.animal-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:34px;

}

.animal-card{

    background:var(--surface);

    border-radius:36px;

    overflow:hidden;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

    transition:all .35s ease;

}

.animal-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(58,48,40,.14);

}

.animal-card img{

    width:100%;

    height:340px;

    object-fit:cover;

    transition:transform .5s ease;

}

.animal-card:hover img{

    transform:scale(1.05);

}

.animal-content{

    padding:34px;

    text-align:center;

}

.animal-content h3{

    margin-bottom:14px;

}

.animal-content p{

    margin-bottom:0;

}

/*==================================================
  CONTACT
==================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-form-wrapper{

    background:var(--surface);

    padding:50px;

    border-radius:36px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 22px;

    margin-bottom:20px;

    border:1px solid var(--border);

    border-radius:18px;

    background:#fff;

    transition:.3s ease;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(216,165,68,.15);

}

.contact-form textarea{

    min-height:170px;

    resize:vertical;

}

.contact-map{

    overflow:hidden;

    border-radius:36px;

    box-shadow:var(--shadow);

}

.contact-map iframe{

    width:100%;

    height:100%;

    min-height:620px;

    border:0;

}

/*==================================================
  FOOTER
==================================================*/

.footer{

    background:#4A382D;

    color:rgba(255,255,255,.88);

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer h3,
.footer h4{

    color:#ffffff;

    margin-bottom:20px;

}

.footer p{

    color:rgba(255,255,255,.75);

}

.footer a{

    color:rgba(255,255,255,.75);

}

.footer a:hover{

    color:var(--secondary);

}

.footer-logo{

    margin-bottom:24px;

}
.footer-logo-text{

    display:inline-block;

    font-family:'Ephesis',cursive;

    font-size:4rem;

    font-weight:400;

    line-height:.9;

    color:#ffffff;

    text-decoration:none;

    transition:var(--transition);

}

.footer-logo-text:hover{

    color:var(--secondary);

}

.footer-links li{

    margin-bottom:14px;

}

.social-links{

    display:flex;

    gap:14px;

    margin-top:24px;

}

.social-links a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    transition:.35s ease;

}

.social-links a:hover{

    background:var(--secondary);

    color:#ffffff;

    transform:translateY(-4px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:28px;

    text-align:center;

    font-size:.9rem;

}

/*==================================================
  BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:56px;

    height:56px;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.2rem;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    background:var(--accent);

}

/*==================================================
  LIGHTBOX
==================================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.88);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:5000;

}

.lightbox.open{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.lightbox-close{

    position:absolute;

    top:30px;

    right:40px;

    font-size:2.5rem;

    color:#ffffff;

    cursor:pointer;

}

/*==================================================
  SCROLL ANIMATIONS
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:opacity .8s ease,
               transform .8s ease;

}

.fade-up.visible{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
  IMAGE LOADING
==================================================*/

img{

    opacity:0;

    transition:opacity .4s ease;

}

img.loaded{

    opacity:1;

}

/*==================================================
  SELECTION
==================================================*/

::selection{

    background:var(--secondary);

    color:#ffffff;

}

/*==================================================
  END OF STYLE.CSS
==================================================*/