/* ===========================
   KISSU WEBSITE - STYLE.CSS
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f172a;
    color:white;
    line-height:1.6;
}

/* Header */

header{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    background:rgba(15,23,42,.92);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo h2{
    color:#ff4d6d;
    font-size:28px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#ff4d6d;
}

.telegram-btn{
    background:#ff4d6d;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    transition:.3s;
}

.telegram-btn:hover{
    transform:translateY(-2px);
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:120px 8%;
}

.hero-left{
    width:50%;
}

.hero-left h1{
    font-size:70px;
    line-height:1.1;
}

.hero-left p{
    margin:25px 0;
    color:#d6d6d6;
    max-width:500px;
}

.buttons{
    display:flex;
    gap:20px;
}

.primary{
    background:#ff4d6d;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:30px;
}

.secondary{
    border:2px solid #ff4d6d;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:30px;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
    width:50%;
}

.phone{
    width:260px;
    height:500px;
    border-radius:35px;
    background:linear-gradient(135deg,#ff4d6d,#ff8fab);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:100px;
    box-shadow:0 20px 60px rgba(255,77,109,.35);
}

/* Sections */

section{
    padding:90px 8%;
}

section h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

/* Feature Cards */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.card{
    background:#1e293b;
    padding:30px;
    border-radius:18px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    margin-bottom:15px;
    color:#ff4d6d;
}

/* Pricing */

.pricing{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.price{
    background:#1e293b;
    padding:40px;
    text-align:center;
    border-radius:20px;
}

.price h1{
    margin:20px 0;
    font-size:48px;
}

.featured{
    border:3px solid #ff4d6d;
    transform:scale(1.05);
}

/* FAQ */

.faq{
    max-width:900px;
    margin:auto;
}

.faq h3{
    color:#ff4d6d;
    margin-top:25px;
}

/* Contact */

#contact{
    text-align:center;
}

/* Footer */

footer{
    padding:40px;
    text-align:center;
    background:#111827;
}

footer h2{
    color:#ff4d6d;
    margin-bottom:10px;
}

/* Responsive */

@media(max-width:900px){

header{
    flex-direction:column;
    gap:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-left h1{
    font-size:50px;
}

.buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.phone{
    margin-top:50px;
    width:220px;
    height:430px;
}

section h2{
    font-size:32px;
}

.featured{
    transform:none;
}

}
/* Animation */

.hidden{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

/* Ripple */

a{
position:relative;
overflow:hidden;
}

.ripple{
position:absolute;
width:15px;
height:15px;
background:rgba(255,255,255,.4);
border-radius:50%;
transform:translate(-50%,-50%);
animation:ripple .6s linear;
pointer-events:none;
}

@keyframes ripple{

from{
width:0;
height:0;
opacity:.7;
}

to{
width:300px;
height:300px;
opacity:0;
}

}
