body{

margin:0;
font-family:'Poppins',sans-serif;
background:#0f0f0f;
color:white;

}

/* HERO */

.hero{

height:100vh;

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.8)),
url("/images/kaoskapak.png") center/cover;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

}

.hero h1{

font-size:42px;
margin:0;

}

.scroll{

margin-top:50px;
opacity:0.8;
animation:scroll 2s infinite;

}

@keyframes scroll{

0%{transform:translateY(0)}
50%{transform:translateY(10px)}
100%{transform:translateY(0)}

}

/* SPLIT */

.split{

display:flex;
height:40vh;

}


.panel{

flex:1;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:24px;
color:white;
position:relative;

}

.menuPanel{

background:url("images/KaosMenuKapak.png") center/cover;

}

.aboutPanel{

background:url("images/KaosHakkimizdaKapak.png") center/cover;

}

.overlay{

background:rgba(0,0,0,0.6);
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;

}

/* MENU */

.menu{

padding:80px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;

}

.card{

background:#1b1b1b;
border-radius:10px;
overflow:hidden;
text-align:center;

}

.card img{

width:100%;
height:140px;
object-fit:cover;

}

/* ABOUT */

.about{

padding:80px 20px;
line-height:1.8;

}

/* BACK BUTTON */

.backButton{

position:fixed;
top:20px;
left:20px;

background:#c70007;

padding:12px 18px;

border-radius:30px;

color:white;

text-decoration:none;

font-weight:bold;

box-shadow:0 6px 15px rgba(0,0,0,0.4);

}

/* PAGE ANIMATION */

.fade-in{

animation:fadeIn 0.6s;

}

@keyframes fadeIn{

from{

opacity:0;
transform:translateY(15px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* -------------------- */
/* HAKKIMIZDA GELİŞMİŞ */
/* -------------------- */

/* mağaza fotoğrafı */

.aboutHero{

height:45vh;

background:
linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.8)),
url("images/KaosHakkimizdaKapak.png") center/cover;

}

/* firma metni */

.aboutContent{

padding:50px 25px;

max-width:750px;

margin:auto;

line-height:1.8;

text-align:center;

}

.aboutContent h1{

margin-top:0;

}

/* iletişim kartı */

.contactCard{

margin:40px auto;

padding:30px;

background:#1b1b1b;

border-radius:12px;

max-width:600px;

box-shadow:0 10px 30px rgba(0,0,0,0.4);

}

/* iletişim satırları */

.infoItem{

margin-top:15px;

font-size:16px;

}

.infoItem span{

color:#ffd000;

font-weight:600;

}

/* FOOTER */

.footer{

margin-top:80px;

background:#0a0a0a;

border-top:1px solid #222;

}

/* CONTAINER */

.footerContainer{

display:flex;

flex-direction:column;

align-items:center;

text-align:center;

gap:20px;

padding:40px 20px;

}

/* BRAND */

.footerBrand h2{

margin:0;

font-size:22px;

color:#c70007;

}

.footerBrand p{

margin:5px 0 0 0;

opacity:0.7;

}

/* CONTACT */

.footerContact p{

margin:6px 0;

font-size:14px;

}

/* SOCIAL */

.footerSocial{

display:flex;

gap:15px;

margin-top:10px;

}

.footerSocial a{

text-decoration:none;

color:white;

font-size:14px;

padding:6px 12px;

border:1px solid #333;

border-radius:20px;

transition:0.3s;

}

.footerSocial a:hover{

background:#c70007;

border-color:#c70007;

}

/* BOTTOM */

.footerBottom{

border-top:1px solid #222;

text-align:center;

padding:20px;

font-size:13px;

opacity:0.6;

}