
/*=========================================
Cocktail Details
==========================================*/

.cocktail-details{
    width:100%;
    background:#f7f5ef;
   
}

.cocktail-container{
    max-width:1600px;
    margin:auto;
    display:flex;
    align-items:stretch;
    /*margin-top: 70px;*/
}

.cocktail-content{
    width:55%;
    padding:70px 50px 0px 150px;
    box-sizing:border-box;
     margin-top: 70px;
    
     opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cocktail-content.show {
    opacity: 1;
    transform: translateY(0);
}
.cocktail-image{
    width:45%;
     display:flex;
    justify-content:flex-end;
     margin-top: 70px;

}

.cocktail-image img{
    width:640px;
    height: 710px;
    /*height:100%;*/
  
    display:block;
    /*object-fit:cover;*/
    margin-top: 70px;
}
.back-link2{
     margin-top: 80px;
}


.back-link{
    display:inline-flex;
    align-items:center;
    gap:10px;              /* space between icon and text */
    text-decoration:none;
    color:#000;
    font-size:12.5px;
    font-family:"Sharp Grotesk Book 20 Regular";

   
}

.fa-arrow-left{
    font-size:22px;
    font-weight:bold;
    color:#3c3c3c;
    margin-right:10px;        /* gap handles spacing */
}

.fa-arrow-right{
    font-size:18px;
    font-weight:bold;
    color:#3c3c3c;
    margin-right:10px;        /* gap handles spacing */
}

.cocktail-content h1{
     font-family:"Sharp Grotesk DB Cyr Medium 22 Regular";
     font-weight: normal;
    font-size:61px;
    line-height:69.3px;
   
    color:#242424;
    margin-bottom:70px;
    margin-top: 70px;
}

.cocktail-desc{
      font-family:"Sharp Grotesk Book 20 Regular";
      font-weight: normal;
    font-size:12.5px;
    line-height:18.3px;
    color:#787878;
    max-width:650px;
    margin-bottom:50px;
}

.ingredients{
    margin-bottom:40px;
}

.ingredients h2,
.method h2{
     font-family:"Sharp Grotesk Book 20 Regular";
     font-weight: 600;
    font-size:20px;
    margin-bottom:20px;
    color:#3C3C3C;
}

.ingredients ul{
    list-style:none;
    padding:0;
    margin-bottom:0;
}

.ingredients li{
    font-family:"Sharp Grotesk Book 20 Regular";
    font-weight: normal;
    font-size:12.5px;
    color:#787878;
    /*margin-bottom:10px;*/
    line-height:1.4;
}

.method ol{
    margin:0;
    padding-left:28px;
}

.method li{
    font-family:"Sharp Grotesk Book 20 Regular";
    font-weight: normal;
    font-size:12.5px;
    color:#787878;
    line-height:1.4;
    /*margin-bottom:10px;*/
}

.article-line{

    width:620px;
    height:1px;
    background:#222;
    margin-left: -200px;
    margin-top:50px;
}

/*=============================
Cocktail Gallery
==============================*/

.cocktail-gallery{
    padding:90px 0;
    background:#fff;
}

.gallery-wrapper{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:90px;
}

/* LEFT */

.gallery-left{
    width:55%;
    padding-left: 80px;
}

.agave-icon{
    width:120px;
    display:block;
    /*margin:0 auto 45px;*/
    margin-bottom: 10px;
}


/* Four Images */

.cocktail-grid{
    display:grid;
    grid-template-columns:227px 227px;
    column-gap:25px;
    row-gap:25px;
}



/*.cocktail-item:nth-child(odd){*/
/*    justify-self:end;*/
/*}*/

/*.cocktail-item:nth-child(even){*/
/*    justify-self:start;*/
/*}*/


.cocktail-item{
    text-decoration:none;
    color:#222;
}


.cocktail-item img{
    width:100%;
    height:219px;
    object-fit:cover;
}
.cocktail-item p{
    margin-top:12px;
    font-size:12px;
    line-height:1.3;
    color: #3C3C3C;
}


/* RIGHT */

.gallery-right{
    width:40%;
    padding-top:270px;
    padding-left: 30px;
}

.gallery-right h2{
     font-family:"Sharp Grotesk DB Cyr Medium 22 Regular";
     font-weight: normal;
    font-size:60.6px;
    line-height:.92;
    margin-bottom:30px;
    color:#3C3C3C;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #000;
    /*margin: 40px auto;*/
    margin: 40px 0px 0 170px;
}

/*tablet*/
@media (min-width:768px) and (max-width:1024px){


.cocktail-container{
    align-items:flex-start;
}

.cocktail-content{
    width:55%;
    padding:50px 30px 0 50px;
}

.cocktail-image{
    width:45%;
}

.cocktail-image img{
    width:100%;
    max-width:420px;
    height:auto;
    margin-top:50px;
}

.cocktail-content h1{
    font-size:52px;
    line-height:1;
    margin:50px 0 40px;
}

.cocktail-desc{
    font-size:16px;
    line-height:1.7;
    margin-bottom:40px;
}

.ingredients h2,
.method h2{
    font-size:24px;
}

.ingredients li,
.method li{
    font-size:16px;
}

.back-link{
    font-size:16px;
}

.article-line{
    width:100%;
    margin-left:0;
}

/* Gallery */

.gallery-wrapper{
    gap:40px;
}

.gallery-left{
    width:55%;
    padding-left:20px;
}

.gallery-right{
    width:45%;
    padding-top:220px;
}

.gallery-right h2{
    font-size:50px;
}

.cocktail-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.cocktail-item img{
    width:100%;
    height:180px;
}

.cocktail-item p{
    font-size:14px;
}

.line{
    width:100%;
    margin-top:30px;
}

}

/*Mobile Landscape*/

/*=====================================
MOBILE LANDSCAPE (577px–991px)
Same layout as Desktop
======================================*/
@media (min-width:577px) and (max-width:991px) and (orientation:landscape){

.cocktail-container{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
}

.cocktail-content{
    width:55%;
    padding:30px 20px 0 30px;
}

.cocktail-image{
    width:45%;
    justify-content:flex-end;
}

.cocktail-image img{
    width:100%;
    max-width:320px;
    height:auto;
    margin-top:30px;
}

.back-link{
    font-size:14px;
}

.cocktail-content h1{
    font-size:38px;
    line-height:1;
    margin:30px 0;
}

.cocktail-desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:25px;
}

.ingredients h2,
.method h2{
    font-size:20px;
}

.ingredients li,
.method li{
    font-size:14px;
    line-height:1.7;
}

.back-link2{
    margin-top:35px;
}

.article-line{
    width:100%;
    margin-left:0;
}

/* Gallery */

.gallery-wrapper{
    display:flex;
    flex-direction:row;
    gap:30px;
}

.gallery-left{
    width:55%;
    padding-left:20px;
}

.gallery-right{
    width:45%;
    padding-top:150px;
}

.gallery-right h2{
    font-size:42px;
}

.cocktail-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.cocktail-item img{
    width:100%;
    height:160px;
}

.cocktail-item p{
    font-size:13px;
}

}

/*Mobile Portrait*/

@media (max-width:576px){



.cocktail-container{
    display:flex;
    flex-direction:column;
}

/* Make both children flex containers */
.cocktail-content,
.cocktail-image{
    width:100%;
    margin-top: 0;
}

/* Show content first */
.cocktail-content{
    display:contents;
}

/* Order all elements */

.back-link{
    order:1;
    /*padding:20px;*/
    font-size:15px;
    
}
.first-back{
    margin-top: 120px;
    padding: 20px;
}
.cocktail-content h1{
    order:2;
    font-size:55px;
    line-height:1;
    margin:0 20px 0px;
}

.cocktail-image{
    order:3;
    padding:0 20px;
}

.cocktail-image img{
    width:100%;
    height:auto;
    display:block;
    /*margin:30px 30px 30px 30px;*/
}

.cocktail-desc{
    order:4;
    margin:0 20px 30px;
    font-size:17.2px;
    line-height:1.7;
    margin-top: 15px;
}

.ingredients{
    order:5;
    margin:0 20px 30px;
}

.method{
    order:6;
    margin:0 20px;
}

.back-link2{
    order:7;
    margin:25px 20px 0;
}

.article-line{
    order:8;
    width:50%;
    margin:35px 0 0;
}

.ingredients h2,
.method h2{
    font-size:22px;
}

.ingredients li,
.method li{
    font-size:17.2px;
    line-height:1.7;
}

/* Gallery */

.gallery-wrapper{
    flex-direction:column;
    gap:40px;
}

.gallery-left,
.gallery-right{
    width:100%;
    padding-left:0;
}

.gallery-right{
    padding-top:0;
}

.gallery-right h2{
    font-size:38px;
    line-height:1;
}

.agave-icon{
    width:80px;
    margin-bottom:20px;
}

.cocktail-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.cocktail-item img{
    width:100%;
    height:auto;
}

.cocktail-item p{
    font-size:15px;
}

.line{
    width:100%;
    margin-top:30px;
    margin-left: 0;
}

}

/*==========================
AGAVALES ON SOCIAL
==========================*/

.Social{
    background:#cee1e0;
    /*padding:100px 7%;*/
    padding:100px 5% 100px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.social-left{
    width:35%;
    margin-left: 50px;

    opacity:0;
    transform:translateY(60px);

    transition:
        opacity 2.1s ease,
        transform 2.1s ease;
}

.social-left.show{
    opacity:1;
    transform:translateY(0);
}
.social-left h2{
      font-family:'Sharp Grotesk DB Cyr Medium 22 Regular';
    font-size:49.6px;
    font-weight:normal;
    color:#3C3C3C;
    line-height:1.1;
    margin-bottom:10px;
    letter-spacing: 2px;
}



.premium-tequila{
     font-family:"Sharp Grotesk Book 20 Regular";
    display:inline-flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    color:#3c3c3c;
    font-weight:normal;
    font-size:12px;
}

.premium-tequila::before{
    /*padding:0px 0px 0px 80px;*/
    content:"→";

    font-size:23px;

}

.social-right{

    width:320px;
}

.premiumSlider{
     width:90%;
    height:330px;
}

.premiumSlider img{

    width:100%;
    height:380px;
    
    object-fit:cover;
    display:block;
}

/* Arrow buttons */
.swiper-button-prev,
.swiper-button-next{
    width:34px;
    height:30px;
    background:#fff;
    color:#000;
    margin:0;
}

/* Position */
.swiper-button-prev{
    left:0;
}

.swiper-button-next{
    right:0;
}

/* Remove Swiper default arrow */
.swiper-button-prev::after,
.swiper-button-next::after{
    content:"";
}

/* Custom arrows */
.swiper-button-prev::before{
    content:"<";
    font-size:42px;
    font-weight:800;
    color:#000;
    line-height:50px;
    display:block;
    text-align:center;
}

.swiper-button-next::before{
    content:">";
    font-size:42px;
    font-weight:800;
    color:#000;
    line-height:50px;
    display:block;
    text-align:center;
}


/* Mobile */

@media(max-width:576px){

   .Social{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /*padding: 60px 20px;*/
          padding: 80px 10px 80px 10px;
         /* top right bottom left */
        gap: 80px;
    }

    .social-left{
        width: 100%;
        margin-left: 10px;
    }

    .social-right{
        width: 100%;
        /*display: grid;*/
        /*grid-template-columns: repeat(2,1fr);*/
        gap: 0;
         /*padding:20px;*/
    }

    .social-left h2{
        font-size: 42px;
        margin-bottom: 40px;
    }

    /*.newsletter{*/
    /*    max-width: 100%;*/
    /*}*/

  

    .social-right{

    width:100%;
}

.premiumSlider{

    height:400px;
}

.premiumSlider img{

    height:400px;
}
}


/*=========================================
TABLET
=========================================*/
@media (min-width:768px) and (max-width:1024px){
    
    
/* Social */

.Social{
    padding:80px 40px;
    gap:40px;
}

.social-left{
    width:40%;
    margin-left:0;
}

.social-left h2{
    font-size:40px;
}

.social-right{
    width:50%;
}

.premiumSlider{
    width:100%;
}

}

/*=========================================
MOBILE LANDSCAPE
=========================================*/
@media (min-width:577px) and (max-width:991px) and (orientation: landscape) {
    /* Social */

/*.Social{*/
/*    flex-direction:column;*/
/*    padding:60px 30px;*/
/*    gap:40px;*/
/*}*/

/*.social-left,*/
/*.social-right{*/
/*    width:100%;*/
/*    margin-left:0;*/
/*}*/

/*.social-left h2{*/
/*    font-size:40px;*/
/*}*/

/*.premiumSlider{*/
/*    width:100%;*/
/*}*/
   .Social{
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        padding:70px 30px;
        gap:40px;
    }

    .social-left{
        width:40%;
        margin-left:0;
    }

    .social-left h2{
        font-size:36px;
        line-height:1.1;
        letter-spacing:1px;
    }

    .premium-tequila{
        font-size:11px;
    }
    
       .social-right{
        width:55%;
    }

    .premiumSlider{
        width:100%;
        height:280px;
    }

    .premiumSlider img{
        width:100%;
        height:280px;
        object-fit:cover;
    }

    .swiper-button-prev,
    .swiper-button-next{
        width:30px;
        height:28px;
    }

    .swiper-button-prev::before,
    .swiper-button-next::before{
        font-size:34px;
        line-height:45px;
    }
}



/*==========================
PREMIUM SECTION
==========================*/

.premium{
    margin-top:30px;
    position:relative;
    width:100%;
    min-height:95vh;
    overflow:hidden;
}

.premium-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    /*height:100%;*/
    object-fit:cover;
}


.premium-overlay{
    display: none;
}

.premium-content{
    position:relative;
    z-index:10;
    max-width:600px;
    padding:80px 10%;
    color:#fff;
}


.premium-content h2{
    font-family: "Sharp Grotesk DB Cyr Medium 22 Regular";
    font-size:36.5px;
    line-height:1.4;
    font-weight:normal;
    margin-bottom:5px;
    color:#fff;
    text-shadow:1px 1px 4px #000;

    opacity:0;
    transform:translateY(60px);
    transition:transform .8s ease, opacity .8s ease;
}

.premium.show .premium-content h2{
    opacity:1;
    transform:translateY(0);
}
.premium-link{
    font-family:"Sharp Grotesk Book 20 Regular";
    display:inline-flex;
    align-items:center;
    gap:15px;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:400;
    transition:.3s;
  text-shadow: 1px 1px 4px #000000;
}

.premium-link::before{
    content:"→";
    font-size:24px;
        color: white;
  text-shadow: 1px 1px 4px #000000;
}

/*==========================
MOBILE
==========================*/

@media(max-width:576px){

 .premium{
        position: relative;
        width: 100%;
        height: 240px;      
        margin-top: 100px;
        overflow: hidden;
        min-height:0px;
    }

    .premium-bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .premium-overlay{
        display: none;
    }

    .premium-content{
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 40px 20px;
        color: #fff;
    }

    .premium-content h2{
        font-size: 32px;
        line-height: 1;
        margin-bottom: 25px;
        color: #fff;
        text-shadow: 1px 1px 4px rgba(0,0,0,.6);
    }

    .premium-link{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 17px;
        color: #fff;
        text-decoration: none;
        text-shadow: 1px 1px 4px rgba(0,0,0,.6);
    }

    .premium-link::before{
        content: "→";
        font-size: 28px;
        color: #fff;
        text-shadow: 1px 1px 4px rgba(0,0,0,.6);
    }

}

/*=========================================
TABLET
=========================================*/
@media (min-width:768px) and (max-width:1024px){



/* Premium */

.premium{
    min-height:650px;
}

.premium-content{
    padding:100px 50px;
}

.premium-content h2{
    font-size:48px;
    margin-bottom:40px;
}

.premium-link{
    font-size:15px;
}



}

/*=========================================
MOBILE LANDSCAPE
=========================================*/

@media (min-width:577px) and (max-width:991px) and (orientation: landscape) {

/* Premium */

.premium{
    min-height:420px;
    margin-top:80px;
}

.premium-content{
    padding:80px 40px;
}

.premium-content h2{
    font-size:42px;
    margin-bottom:35px;
}

.premium-link{
    font-size:15px;
}


}