body{
margin:0;
font-family:Montserrat,Arial;
background:#f4f4f4;
}

/* HERO */

.hero{
height:70vh;
background:url("image.png") center/cover no-repeat;
display:flex;
align-items:center;
padding:40px;
color:white;
}

.hero h1{
font-size:48px;
animation:fade 1s ease;
}

/* BUTTONS */

.buttons{
max-width:600px;
margin:auto;
padding:20px;
}

.btn{
display:block;
margin:15px 0;
padding:18px;
text-align:center;
background:black;
color:white;
border-radius:12px;
cursor:pointer;
transition:.3s;
text-decoration:none;
}

.btn:hover{
transform:translateY(-3px);
}

.btn:active{
transform:scale(.95);
}

/* POPUP */

.popup{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.6);
justify-content:center;
align-items:center;
}

.popup-content{
background:white;
padding:30px;
border-radius:15px;
max-width:400px;
animation:fade .4s;
}

@keyframes fade{
from{opacity:0;transform:translateY(20px)}
to{opacity:1;}
}

/* SOCIAL */

.social{
text-align:center;
padding:30px;
}

.icons a{
margin:10px;
display: flex;
justify-content: center;
align-content: center;
}
/* ===== SOCIAL BLOCK ===== */

.social-section{
padding:40px 20px;
text-align:center;
}

.section{
margin-bottom:30px;
}

.section h3{
color:#444;
margin-bottom:20px;
font-weight:600;
}

.icons{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.icon{
width:70px;
height:70px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 25px rgba(0,0,0,.2);
transition:.3s;
}

.icon img{
width:36px;
}

.icon:hover{
transform:scale(1.12);
}

.icon:active{
transform:scale(.95);
}

/* кольори */

.instagram{
background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}

.tiktok{
background:black;
}

.telegram{
background:#2AABEE;
}

.viber{
background:#7360F2;
}

hr{
border:none;
height:1px;
background:#eee;
margin:30px auto;
max-width:600px;
}
/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:32px;
}

.hero{
height:50vh;
}

}