/*==================================================
IMPERIAL VIN
Premium Winery Landing Page
==================================================*/



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

:root{

    --green:#163126;

    --green-light:#214438;

    --gold:#c5a46d;

    --gold-dark:#ab8b58;

    --burgundy:#6d1d2b;

    --white:#ffffff;

    --light:#f8f6f2;

    --gray:#777777;

    --dark:#1e1e1e;

    --shadow:0 15px 45px rgba(0,0,0,.12);

    --transition:.35s ease;

}





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

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    color:var(--dark);

    background:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}





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

h1,h2,h3,h4,h5,h6{

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    color:#1d1d1d;

}

h1{

    font-size:72px;

    line-height:1.05;

}

h2{

    font-size:52px;

}

h3{

    font-size:36px;

}

h4{

    font-size:28px;

}

p{

    color:var(--gray);

    font-size:17px;

    margin-bottom:20px;

}





.section{

    padding:120px 0;

}





.section-title{

    margin-bottom:25px;

}





.section-tag{

    display:inline-block;

    margin-bottom:15px;

    letter-spacing:3px;

    font-size:12px;

    text-transform:uppercase;

    color:var(--gold);

    font-weight:700;

}





.text-gold{

    color:var(--gold);

}





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

.btn{

    border-radius:50px;

    padding:16px 36px;

    transition:var(--transition);

    font-weight:600;

}





.btn-gold{

    background:var(--gold);

    color:white;

    border:none;

}





.btn-gold:hover{

    background:var(--gold-dark);

    color:white;

    transform:translateY(-3px);

}





.btn-outline-light{

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

    color:white;

}





.btn-outline-light:hover{

    background:white;

    color:var(--green);

}





/*=========================================
NAVBAR
=========================================*/

.navbar{

    padding:22px 0;

    transition:.4s;

    background:transparent;

}

.navbar.scrolled{

    background:#13281f;

    box-shadow:var(--shadow);

    padding:12px 0;

}

.navbar-brand{

    font-family:'Cormorant Garamond',serif;

    letter-spacing:2px;

    font-size:32px;

}

.nav-link{

    color:white;

    margin-left:30px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}





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

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:url("../img/hero/hero.jpg") center center;

    background-size:cover;

}

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

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(12,25,18,.65),
        rgba(10,20,16,.60)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.hero-subtitle{

    color:var(--gold);

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

    font-size:15px;

    font-weight:600;

}

.hero h1{

    color:#fff;

    margin-bottom:30px;

}

.hero p{

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

    max-width:760px;

    margin:0 auto 45px;

    font-size:20px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}





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

.scroll-down{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    color:#fff;

    font-size:30px;

    z-index:5;

    animation:floatArrow 2s infinite;

}

.scroll-down:hover{

    color:var(--gold);

}

@keyframes floatArrow{

    0%{

        transform:translate(-50%,0);

    }

    50%{

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

    }

    100%{

        transform:translate(-50%,0);

    }

}





/*=========================================
ABOUT
=========================================*/

#about img{

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.5s;

}

#about img:hover{

    transform:scale(1.02);

}

#about p{

    margin-bottom:24px;

}





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

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.35s;

    height:100%;

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

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.feature-card i{

    font-size:48px;

    color:var(--gold);

    margin-bottom:25px;

}

.feature-card h4{

    margin-bottom:18px;

}

.feature-card p{

    margin:0;

}





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

.wine-card{

    overflow:hidden;

    border-radius:20px;

    background:#fff;

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

    transition:.35s;

    height:100%;

}

.wine-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.16);

}

.wine-card img{

    height:330px;

    object-fit:cover;

    transition:.6s;

}

.wine-card:hover img{

    transform:scale(1.08);

}

.wine-info{

    padding:30px;

}

.wine-info h4{

    margin-bottom:15px;

}

.wine-info p{

    margin-bottom:0;

}





/*=========================================
SECTION DARK
=========================================*/

.section-dark{

    background:var(--green);

    color:#fff;

}

.section-dark h2{

    color:#fff;

}

.section-dark p{

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

}





/*=========================================
SERVICE BOX
=========================================*/

.service-box{

    display:flex;

    align-items:center;

    gap:16px;

}

.service-box i{

    font-size:24px;

    color:var(--gold);

}

.service-box h5{

    color:#fff;

    margin:0;

    font-size:22px;

}





/*=========================================
PRIVATE LABEL IMAGE
=========================================*/

#private img{

    border-radius:24px;

    box-shadow:0 25px 70px rgba(0,0,0,.25);

}





/*=========================================
PRODUCTION
=========================================*/

.production-section{

    position:relative;

    padding:170px 0;

    background:url("../img/winery/production.jpg") center center;

    background-size:cover;

    background-attachment:fixed;

}

.production-overlay{

    position:absolute;

    inset:0;

    background:rgba(10,20,15,.72);

}

.production-section .container{

    position:relative;

    z-index:2;

}





/*=========================================
COUNTERS
=========================================*/

.counter{

    padding:30px;

}

.counter h2{

    color:var(--gold);

    font-size:60px;

    margin-bottom:10px;

}

.counter p{

    color:#666;

    font-weight:500;

    margin:0;

}

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

.gallery-image{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:20px;

    cursor:pointer;

    transition:.45s;

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

}

.gallery-image:hover{

    transform:scale(1.04);

    box-shadow:0 30px 70px rgba(0,0,0,.22);

}

.gallery-image:nth-child(odd){

    border-radius:30px;

}





/*=========================================
CTA
=========================================*/

.cta-section{

    position:relative;

    padding:160px 0;

    background:linear-gradient(
        rgba(18,49,38,.88),
        rgba(18,49,38,.88)
    ),
    url("../img/hero/cta.jpg") center center;

    background-size:cover;

}

.cta-section h2{

    color:#fff;

}

.cta-section p{

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

}





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

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:30px;

}

.contact-item i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--green);

    color:#fff;

    border-radius:50%;

    font-size:22px;

    flex-shrink:0;

}

.contact-item strong{

    display:block;

    margin-bottom:6px;

    color:#222;

}

.contact-item div{

    color:#666;

}





/*=========================================
FORM
=========================================*/

.form-control{

    border:none;

    border-radius:14px;

    background:#f6f6f6;

    padding:18px 24px;

    font-size:16px;

    box-shadow:none;

    transition:.35s;

}

.form-control:focus{

    background:#fff;

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

    box-shadow:0 0 0 .2rem rgba(197,164,109,.18);

}

textarea{

    resize:none;

}





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

.footer{

    background:#11261d;

    color:#fff;

    padding:80px 0 40px;

}

.footer h3{

    color:#fff;

    margin-bottom:20px;

    letter-spacing:2px;

}

.footer p{

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

    margin-bottom:0;

}





.social-links{

    display:flex;

    justify-content:flex-end;

    gap:18px;

}

.social-links a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

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

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.social-links a:hover{

    background:var(--gold);

    transform:translateY(-5px);

}





/*=========================================
GENERAL HOVER EFFECTS
=========================================*/

img{

    transition:.5s;

}

img:hover{

    filter:brightness(1.03);

}





::selection{

    background:var(--gold);

    color:#fff;

}





::-webkit-scrollbar{

    width:10px;

}





::-webkit-scrollbar-track{

    background:#efefef;

}





::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:30px;

}





::-webkit-scrollbar-thumb:hover{

    background:var(--gold-dark);

}





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

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:none;

}





.zoom{

    overflow:hidden;

}

.zoom img{

    transition:.8s;

}

.zoom:hover img{

    transform:scale(1.1);

}





/*=========================================
SHADOW HELPERS
=========================================*/

.shadow-soft{

    box-shadow:0 15px 45px rgba(0,0,0,.10);

}

.shadow-large{

    box-shadow:0 35px 80px rgba(0,0,0,.18);

}





/*=========================================
SPACING HELPERS
=========================================*/

.mt-80{

    margin-top:80px;

}

.mb-80{

    margin-bottom:80px;

}

.pt-120{

    padding-top:120px;

}

.pb-120{

    padding-bottom:120px;

}