/*==================================
BREWIKA HERO CSS PART 1
==================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:"Poppins",sans-serif;
background:#fff;
  height:100%;
overflow-y:auto;
 overflow-x: hidden;



}
img{
display:block;
max-width:100%;
height:auto;
}

video{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

a{
text-decoration:none;
}

:root{

--orange:#ff6b00;
--white:#fff;
--text:#e8e8e8;
--glass:rgba(255,255,255,.08);
--border:rgba(255,255,255,.15);

}

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

.brewika-hero{

position:relative;

width:100%;

min-height:100svh;

overflow:hidden;

background:#000;

display:flex;

align-items:center;

justify-content:center;

}

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

.hero-video{

position:absolute;

inset:0;

width:100%;

height:100%;

object-fit:cover;

z-index:1;

transform:scale(1.06);

animation:heroZoom 18s linear infinite alternate;

}

@keyframes heroZoom{

from{

transform:scale(1.06);

}

to{

transform:scale(1.15);

}

}

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

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(
90deg,
rgba(194,178,161,.88) 0%,
rgba(203,188,172,.72) 45%,
rgba(211,197,182,.55) 100%
);
  

z-index:2;

}

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

.hero-wrapper{

position:relative;

z-index:10;

width:min(1500px,92%);

margin:auto;

min-height:100svh;

display:flex;

align-items:center;

justify-content:space-between;

gap:80px;

}
.brew-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease;
}

.brew-slide.active{
    opacity:1;
    visibility:visible;
    z-index:5;
}
/*============================*/

.hero-content{

position:relative;
  top:47%;
    left:0;
    transform:translateY(-45%);

width:min(560px,100%);

z-index:50;

}

.hero-content::before{

content:"BREWIKA";

position:absolute;

left:-10px;

top:-50px;

font-size:clamp(90px,12vw,220px);

font-weight:900;

line-height:1;

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

white-space:nowrap;

pointer-events:none;

}
.product-line{

position:absolute;

left:50%;

bottom:170px;
  top:60%;

transform:translateX(-50%);

width:100%;
margin:0 auto;
height:290px;

}
/* Remove blue tap highlight */

.can,
.product-line .can,
img,
a,
button{

-webkit-tap-highlight-color:transparent;

outline:none;

user-select:none;

-webkit-user-select:none;

-webkit-touch-callout:none;

}
/* Common */

.product-line .can{

 position:absolute;
    width:auto;
    height:500px;
    max-height:500px;

transition:.45s ease;

cursor:pointer;

filter:drop-shadow(0 18px 40px rgba(0,0,0,.35));

}

/* 1 */
.can-left{
    left:4%;
    height:115px;
    transform:rotate(-28deg);
}

/* 2 */
.can-center-left{
    left:32%;
    height:165px;
    transform:translateX(-50%) rotate(-10deg);
}

/* 3 */
.can-center-right{
    left:58%;
    height:165px;
    transform:translateX(-50%) rotate(10deg);
}

/* 4 */
.can-right{
    left:86%;
    height:115px;
    transform:translateX(-50%) rotate(28deg);
}

/* Hover */

.product-line .can{
    transition:transform .45s ease, filter .45s ease;
}

.product-line .can:hover{
    z-index:20;
    filter:drop-shadow(0 30px 70px rgba(255,170,0,.55));
}

/* Rotation same rakho */
.can-left:hover{
    transform:rotate(-30deg) scale(1.12);
}

.can-center-left:hover{
    transform:translateX(-50%) rotate(-8deg) scale(1.12);
}

.can-center-right:hover{
    transform:translateX(-50%) rotate(8deg) scale(1.12);
}

.can-right:hover{
    transform:rotate(30deg) scale(1.12);
}

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

.product-showcase{

position:relative;

flex:1;

height:100svh;

display:flex;

align-items:flex-end;

justify-content:flex-end;

z-index:30;

}
/*==================================
BREWIKA HERO CSS PART 2
==================================*/

/*-----------------------------
CONTENT
------------------------------*/

.hero-tag{

display:inline-flex;
align-items:center;
gap:8px;

padding:10px 20px;

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

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

backdrop-filter:blur(15px);

border-radius:50px;

color:#fff;

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:25px;

}

.hero-content h1{

font-size:clamp(58px,7vw,120px);

font-weight:800;

line-height:.9;

text-transform:uppercase;

color:#fff;

margin-bottom:25px;

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

}

.hero-content p{

font-size:18px;

line-height:1.9;

color:#ffffff;

max-width:520px;

margin-bottom:45px;

}

/*-----------------------------
BUTTONS
------------------------------*/

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.hero-buttons a{

display:flex;

align-items:center;

justify-content:center;

min-width:180px;

height:58px;

border-radius:60px;

font-size:15px;

font-weight:700;

transition:.35s;

}

.btn-primary{

background:linear-gradient(135deg,#ff9b1d,#ff5a00);

color:#fff;

box-shadow:0 15px 40px rgba(255,106,0,.35);

}

.btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 20px 60px rgba(255,106,0,.50);

}

.btn-secondary{

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

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

backdrop-filter:blur(18px);

color:#fff;

}

.btn-secondary:hover{

background:#fff;

color:#111;

}

/*-----------------------------
PRODUCT SHOWCASE
------------------------------*/

.product-showcase{

position:absolute;

right:-40px;

bottom:0;

width:700px;

height:100%;

pointer-events:none;

}

/* Orange Glow */

.product-showcase::before{

content:"";

position:absolute;

right:100px;

bottom:120px;

width:420px;

height:420px;

background:#ff7a00;

border-radius:50%;

filter:blur(140px);

opacity:.35;

z-index:1;

}

/*-----------------------------
COMMON CAN
------------------------------*/

.can{

position:absolute;

height:auto;

user-select:none;

-webkit-user-drag:none;

filter:drop-shadow(0 30px 60px rgba(0,0,0,.45));

transition:.5s;

z-index:5;

}

.can:hover{

transform:scale(1.04);

filter:drop-shadow(0 40px 80px rgba(255,140,0,.50));

}
/*==================================
BREWIKA HERO CSS PART 3
==================================*/

/*=========================
MAIN CAN
=========================*/

.can-main{

width:320px;

right:140px;

bottom:20px;

z-index:6;

transform:rotate(-12deg);

animation:floatMain 4s ease-in-out infinite;

}

/*=========================
BACK CAN
=========================*/

.can-back{

width:250px;

right:-30px;

bottom:160px;

opacity:.9;

z-index:5;

transform:rotate(18deg);

animation:floatBack 5s ease-in-out infinite;

}

/*=========================
HORIZONTAL CAN
=========================*/

.can-horizontal{

width:300px;

right:220px;

bottom:-30px;

z-index:4;

transform:rotate(92deg);

animation:floatHorizontal 6s ease-in-out infinite;

}

/*=========================
FLOAT ANIMATION
=========================*/

@keyframes floatMain{

0%,100%{

transform:
rotate(-12deg)
translateY(0);

}

50%{

transform:
rotate(-12deg)
translateY(-18px);

}

}

@keyframes floatBack{

0%,100%{

transform:
rotate(18deg)
translateY(0);

}

50%{

transform:
rotate(18deg)
translateY(-28px);

}

}

@keyframes floatHorizontal{

0%,100%{

transform:
rotate(92deg)
translateX(0);

}

50%{

transform:
rotate(92deg)
translateX(-20px);

}

}

/*=========================
SHINE EFFECT
=========================*/

.can::after{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.45),
transparent
);

transform:skewX(-25deg);

animation:shine 6s linear infinite;

}

@keyframes shine{

0%{

left:-120%;

}

100%{

left:180%;

}

}

/*=========================
CAPTION
=========================*/

.hero-caption{

position:absolute;

left:50%;

bottom:80px;

transform:translateX(-50%);

text-align:center;

z-index:20;

color:#ffffff;

width:100%;

max-width:700px;

padding:0 20px;

}

.hero-caption h2{

font-size:clamp(28px,4vw,46px);

font-weight:700;

margin-bottom:12px;

}

.hero-caption p{

font-size:16px;

letter-spacing:3px;

color:#ffffff;

}

/*=========================
DOTS
=========================*/

.hero-dots{

position:absolute;

left:50%;

bottom:30px;

transform:translateX(-50%);

display:flex;

gap:12px;

z-index:30;

}

.hero-dots .dot{

width:12px;

height:12px;

border-radius:50%;

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

cursor:pointer;

transition:.35s;

}

.hero-dots .dot.active{

width:42px;

border-radius:30px;

background:#ff6b00;

}

/*=========================
PROGRESS BAR
=========================*/

.progress-bar{

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

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

z-index:50;

}

.progress-bar span{

display:block;

width:0;

height:100%;

background:#ff6b00;

animation:progress 6s linear infinite;

}

@keyframes progress{

from{

width:0;

}

to{

width:100%;

}

}
/*==================================
BREWIKA HERO CSS PART 4
==================================*/

/*=============
1440px
==============*/

@media (max-width:1440px){

.hero-wrapper{
width:min(1320px,94%);
}

.hero-content h1{
font-size:clamp(55px,6vw,90px);
}

.can-main{
width:290px;
right:90px;
}

.can-back{
width:220px;
right:-20px;
}

.can-horizontal{
width:260px;
right:180px;
}

}

/*=============
1200px
==============*/

@media (max-width:1200px){

.hero-wrapper{
grid-template-columns:1fr 1fr;
gap:40px;
}

.hero-content{
max-width:470px;
}

.hero-content h1{
font-size:58px;
}

.hero-content p{
font-size:16px;
}

.product-showcase{
width:560px;
}

.can-main{
width:250px;
right:80px;
bottom:20px;
}

.can-back{
width:190px;
right:0;
bottom:130px;
}

.can-horizontal{
width:230px;
right:150px;
bottom:-20px;
}

}

@media (max-width:767px){

.hero-wrapper{
width:95%;
}

.hero-content{
top:40px;
left:0;
max-width:340px;
}

.hero-content::before{
font-size:95px;
top:-35px;
left:-5px;
transform:none;
}

.hero-content h1{
font-size:48px;
}

.hero-content p{
font-size:15px;
max-width:320px;
}

.hero-buttons{
gap:12px;
}

.hero-buttons a{
min-width:150px;
height:48px;
font-size:14px;
}

.product-showcase{
right:-40px;
bottom:20px;
width:360px;
height:420px;
}

.can-main{
width:220px;
right:40px;
bottom:10px;
}

.can-back{
width:170px;
right:-20px;
bottom:110px;
}

.can-horizontal{
width:210px;
right:140px;
bottom:-25px;
}

.hero-caption{
bottom:75px;
}

.hero-caption h2{
font-size:28px;
}

.hero-caption p{
font-size:13px;
  }
  .hero-dots{
bottom:4px;
  
}

}

@media (max-width:480px){

.hero-wrapper{
width:96%;
}

.hero-content{
position:absolute;

top:12%;

left:15px;

transform:none;

max-width:220px;
}

.hero-content::before{
font-size:30px;
top:-10px;
left:0;
transform:none;
}

.hero-tag{
font-size:10px;
padding:7px 14px;
}

.hero-content h1{
font-size:18px;
line-height:.95;
}

.hero-content p{
font-size:13px;
line-height:1.6;
max-width:200px;
}
.product-line{
left:50%;

top:70%;

transform:translateX(-50%);

position:absolute;
    width:100%;
  margin:0 auto;
    height:180px;
    justify-content:center;
    align-items:center;
}

/* Common */

.product-line .can{

transition:.45s ease;
  position:absolute;
    width:auto ;
    height:120px;
    max-height:90px;

}

/* 1 */
.can-left{
    left:2%;
    height:110px;
    transform:rotate(-28deg);
    z-index:1;
}

/* 2 */
.can-center-left{
    left:33%;
    height:160px;
    transform:translateX(-50%) rotate(-8deg);
    z-index:3;
}

/* 3 */
.can-center-right{
    left:67%;
    height:160px;
    transform:translateX(-50%) rotate(8deg);
    z-index:3;
}

/* 4 */
.can-right{
    left:98%;
    height:110px;
    transform:translateX(-50%) rotate(28deg);
    z-index:1;
  }
  

/* Hover */

.product-line .can:hover,
.product-line .can:active{

transform:scale(1.08);

z-index:20;

}

.can-left:hover,
.can-left:active{

transform:rotate(-22deg) scale(1.08);

}

.can-center-left:hover,
.can-center-left:active{

transform:rotate(-3deg) scale(1.08);

}

.can-center-right:hover,
.can-center-right:active{

transform:rotate(3deg) scale(1.08);

}

.can-right:hover,
.can-right:active{

transform:rotate(22deg) scale(1.08);

}
.hero-buttons{
display:flex;
    flex-direction:row;
    justify-content:flex-start;
    align-items:center;
    margin-top:10px;
    gap:8px;
    flex-wrap:nowrap;
}

.hero-buttons a{
min-width:90px;
height:40px;
  border-radius:0;
font-size:12px;
padding:0 14px;
}

.product-showcase{
right:-15px;
bottom:80px;
width:250px;
height:300px;
}

.can-main{
width:150px;
right:35px;
bottom:10px;
}

.can-back{
width:115px;
right:-5px;
bottom:75px;
}

.can-horizontal{
width:150px;
right:90px;
bottom:-20px;
}

.hero-caption{
bottom:35px;
}

.hero-caption h2{
font-size:14px;
}

.hero-caption p{
font-size:9px;
}

.hero-dots{
bottom:15px;
  size:10px;
}

}

/*=============
Large Desktop
==============*/

@media (min-width:1800px){

.hero-wrapper{
max-width:1700px;
}

.hero-content h1{
font-size:120px;
}

.can-main{
width:380px;
}

.can-back{
width:300px;
}

.can-horizontal{
width:340px;
}

}
/*==================================
BREWIKA INFO SECTION
==================================*/

.brewika-info{

width:100%;

padding:110px 20px;

background:#f7f8f7;

}

.brewika-box{

position:relative;

width:min(900px,100%);

margin:0 auto;

padding:70px 55px;

text-align:center;

background:#fff;

border-radius:30px;

overflow:hidden;

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

transition:.45s ease;

}

.brewika-box::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(
90deg,
#0f7b43,
#20b468
);

transform:scaleX(0);

transform-origin:left;

transition:.45s;

}

.brewika-box:hover{

transform:translateY(-8px);

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

}

.brewika-box:hover::before{

transform:scaleX(1);

}

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

.brew-tag{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 24px;

background:#0f7b43;

color:#fff;

font-size:12px;

font-weight:700;

letter-spacing:2px;

border-radius:40px;

margin-bottom:25px;

}

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

.brewika-box h2{

font-size:clamp(38px,5vw,62px);

font-weight:800;

line-height:1;

color:#222;

margin-bottom:25px;

}

.brewika-box p{

max-width:700px;

margin:0 auto 35px;

font-size:17px;

line-height:1.9;

color:#666;

}

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

.domain-box{

padding:28px;

margin-bottom:35px;

background:#f3fbf6;

border:2px dashed #0f7b43;

border-radius:22px;

}

.domain-box h3{

font-size:26px;

font-weight:800;

color:#0f7b43;

margin-bottom:12px;

}

.domain-box p{

margin:0;

font-size:16px;

line-height:1.8;

}

/*==========================
BUTTON
==========================*/

.brew-btn{

width:100%;

display:flex;

justify-content:center;

align-items:center;

margin-top:30px;

}

.brew-btn a{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

width:320px;

max-width:100%;

height:64px;

padding:0 20px;

background:#0f7b43;

color:#fff;

font-size:15px;

font-weight:700;

line-height:1.4;

text-decoration:none;

border-radius:8px;

transition:.35s;

box-shadow:0 18px 40px rgba(15,123,67,.25);

}

.brew-btn a:hover{

background:#18a65a;

transform:translateY(-5px);

box-shadow:0 25px 55px rgba(15,123,67,.35);

}

/*==========================
1050px
==========================*/

@media(max-width:1050px){

.brewika-box{

max-width:760px;

padding:60px 40px;

}

.brewika-box h2{

font-size:48px;

}

.brewika-box p{

font-size:16px;

}

.domain-box h3{

font-size:22px;

}

.brew-btn a{

width:300px;

height:60px;

}

}

/*==========================
767px
==========================*/

@media(max-width:767px){

.brewika-info{

padding:80px 18px;

}

.brewika-box{

padding:45px 28px;

border-radius:22px;

}

.brew-tag{

font-size:11px;

padding:8px 18px;

}

.brewika-box h2{

font-size:36px;

}

.brewika-box p{

font-size:15px;

line-height:1.8;

margin-bottom:25px;

}

.domain-box{

padding:22px;

border-radius:18px;

}

.domain-box h3{

font-size:20px;

}

.domain-box p{

font-size:14px;

}

.brew-btn{

margin-top:22px;

}

.brew-btn a{

width:280px;

height:54px;

font-size:14px;

}

}

/*==========================
480px
==========================*/

@media(max-width:480px){

.brewika-info{

padding:50px 12px;

}

.brewika-box{

width:100%;

max-width:100%;

margin:0 auto;

padding:30px 16px;

border-radius:16px;

box-sizing:border-box;
}

.brew-tag{

font-size:10px;

padding:7px 14px;

margin-bottom:16px;

}

.brewika-box h2{

font-size:28px;

line-height:1.1;

margin-bottom:16px;

}

.brewika-box p{

font-size:14px;

line-height:1.7;

margin-bottom:20px;

}

.domain-box{

padding:18px;

border-radius:14px;

margin-bottom:20px;

}

.domain-box h3{

font-size:17px;

margin-bottom:8px;

}

.domain-box p{

font-size:13px;

line-height:1.6;

}

.brew-btn{

margin-top:18px;

}

.brew-btn a{

width:100%;

max-width:280px;

height:52px;

padding:0 12px;

font-size:13px;

line-height:1.3;

border-radius:6px;

}

}
/*==================================
OUTLINE SOCIAL ICONS
==================================*/

.social-row{

display:flex;

justify-content:center;

align-items:center;

gap:16px;

flex-wrap:wrap;

margin-top:30px;

}

.social-row a{

width:56px;

height:56px;

display:flex;

align-items:center;

justify-content:center;

border:2px solid #0f7b43;

border-radius:50%;

background:transparent;

color:#0f7b43;

font-size:22px;

text-decoration:none;

transition:.35s ease;

}

.social-row a:hover{

background:#0f7b43;

color:#fff;

transform:translateY(-6px) scale(1.08);

box-shadow:0 15px 35px rgba(15,123,67,.25);

}
