*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#000;
color:#fff;
font-family:Arial, Helvetica, sans-serif;
}

/* HEADER */

.site-header{
position: flex;
width:100%;
background:#000;
color: #cfcfcf;
border-bottom:0px solid #111;

top:0;
z-index:999;
}

/* TOP BAR */

.top-bar {
    background: #111111;
    color: white;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-badge {
    border: 1px solid #444;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    color: #aaaaaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-ticker { color: #ddd; }
.nav-arrows { display: flex; gap: 5px; }
.arrow-btn {
    background: #1a1a1a; border: 1px solid #333; color: #fff;
    padding: 2px 8px; cursor: pointer;
}

.right-section { display: flex; align-items: center; gap: 12px; }
.action-link { color: #aaaaaa; text-decoration: none; }
.date-display { color: #aaaaaa; }


/* HEADER WRAP */

.header-wrap {
width:100%;
padding:18px 40px;
display:flex;
align-items:center;
justify-content:space-between;
border-top:1px solid #111;
}

/* LOGO */

.logo a{
color:#cfcfcf;
font-size:26px;
font-weight:700;
text-decoration:none;
font-family:serif;
}

/* MENU */

.main-menu{
display:flex;
gap:28px;
}

.main-menu a{
color:#cfcfcf;
text-decoration:none;
font-size:15px;
font-weight:200;
transition:.3s;
}

.main-menu a:hover{
color:#fff;
}

/* RIGHT SIDE */

.header-right{
display:flex;
align-items:center;
gap:15px;
}

/* BTN OUTLİNE */

.btn-outline{
  color:#cfcfcf;
text-decoration:none;
font-size:16px;
font-weight:200;
transition:.3s;
   }

.btn-outline:hover{
color:#fff;
 }

/* END BTN OUTLİNE */

/* BTN */

.btn{
background:#4b145b;
padding:12px 20px;
color:#fff;
text-decoration:none;
border-radius:6px;
font-size:15px;
}

.btn:hover{
background:#4b145b;
}

/* END BTN */

/* END RIGHT SIDE */

/* AVATAR */

.avatar-box {
    position: relative;
    display: flex;
    align-items: center;
}

/* avatar + isim yan yana */
.avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* profil resmi */
.avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4b145b;
}

/* isim */
.avatar-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* dropdown */
.dropdown-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: #111;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    display: none;
    z-index: 999;
}

/* linkler */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #222;
}

/* aktif */
.dropdown-menu.active {
    display: block;
}

/* END AVATAR */

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
gap:4px;
cursor:pointer;
}

.hamburger span{
width:24px;
height:2px;
background:#cfcfcf;
display:block;
}

/* END HAMBURGER */

/* HERO SEARCH */

.hero-search{
display:flex;
justify-content:center;
margin-top:30px;
}

.hero-search form{
width:100%;
max-width:650px;
}

.hero-search input{
width:100%;
padding:18px 25px;
background:#0f0f10;
border:1px solid #222;
border-radius:40px;
color:#cfcfcf;
font-size:16px;
outline:none;
transition:.3s;
text-align:left; /* yazı SOLDA */
}

.hero-search input::placeholder{
color:#777;
}

.hero-search input:focus{
border-color:#4b145b;
box-shadow:0 0 15px rgba(255,255,255,0.05);
}


.hero-search form{
width:100%;
max-width:650px;
}

.hero-search textarea{
width:100%;
padding:18px 25px;
background:#0f0f10;
border:1px solid #222;
border-radius:40px;
color:#fff;
font-size:16px;
outline:none;
transition:.3s;
text-align:left; /* yazı SOLDA */
}

.hero-search textarea::placeholder{
color:#777;
}

.hero-search textarea:focus{
border-color:#444;
box-shadow:0 0 15px rgba(255,255,255,0.05);
}

/* HERO SEARCH TEXTAREA */


/* HERO VİDEO GRİD */

    .hero {
      text-align: center;
      padding: 100px 20px 80px;
    }

    .hero h2 {
      color: #cfcfcf;
      font-size: 44px;
      margin-bottom: 16px;
    }

    .hero p {
      color: #cfcfcf;
      max-width: 600px;
      margin: auto;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      padding: 40px;
    }

    .card {
      background: #111;
      color: #cfcfcf;
      border-radius: 14px;
      overflow: hidden;
      transition: transform 0.25s ease;
      position: relative;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .card:hover {
      transform: scale(1.05);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.25s;
    }

    .card:hover .overlay {
      opacity: 1;
    }

    .card-title {
      padding: 14px;
      font-size: 14px;
    }

/* END HERO VİDEO GRİD */

/* HERO VİDEO UTKUN */

.container{max-width:1300px;margin:40px auto}
.grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:25px;
}

.card{text-decoration:none;color:#fff}

.card-title h3{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.thumb{
position:relative;
overflow:hidden;
}

.thumb video{
width:100%;
transition:.3s;
}

.play{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:40px;
pointer-events:none;
}

/* END HERO VİDEO UTKUN */

/* PROFİLE PAGE */

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
}

.video-card{
    background:#1a1a1a;
    padding:15px;
    border-radius:10px;
}

/* END PROFİLE PAGE */


/* LOGİN VE REGİSTER PAGE */

.box{width:500px;margin:60px auto;padding:30px;border-radius:10px}
input,textarea{
width:100%;
padding:10px;
margin:10px 0;
background:#000;
color:#fff;
border:1px solid #333;
}

button{
width:100%;
padding:12px;
background:#4b145b;
color: #fff;
border:0;
font-weight:bold;
cursor:pointer;
border-radius:6px;
font-size:15px;
}

/* END LOGİN VE REGİSTER PAGE */















/* PROFİLE PAGE */

/* Kapak */
.cover{
    width:100%;
    height:300px;
    overflow:hidden;
    position:relative;
}

.cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Profil */
.profile {
    text-align:center;
    margin-top:-90px;
    position:relative;
    z-index:2;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #4b145b;
}

.profile h1 {
    margin: 10px 0 5px;
}

.profile p {
    color: #aaa;
}

.buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.buttons .btn{
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
}


/* Galeri */
.gallery {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.card{text-decoration:none;color:#fff}

.thumb{
position:relative;
overflow:hidden;
}

.thumb video{
width:100%;
transition:.3s;
}

/* END PROFİLE PAGE */


/* CONTACT PAGE */

/* container */
.wa-contact-container{
max-width:1100px;
margin:auto;
padding:0 20px;
}

/* hero */
.wa-contact-hero{
background: #fff;
padding:90px 0;
text-align:center;
}

.wa-contact-hero h1{
font-size:42px;
margin-bottom:10px;
}

.wa-contact-hero p{
color:#aaa;
}

/* layout */
.wa-contact-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
padding:70px 0;
}

/* form box */
.wa-contact-form-box{
padding:30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.wa-contact-form input,
.wa-contact-form select,
.wa-contact-form textarea{
width:100%;
background:#111111;
color:#aaa;
padding:14px;
margin-bottom:15px;
border:1px solid #111111;
border-radius:8px;
font-size:15px;
}

.wa-contact-form input:focus,
.wa-contact-form textarea:focus,
.wa-contact-form select:focus{
outline:none;
border-color:#5a1a6e;
}

/* button */
.wa-contact-form button{
background:#4b145b;
color:#fff;
border:none;
padding:14px;
border-radius:8px;
font-size:16px;
cursor:pointer;
transition:.3s;
width:100%;
}

.wa-contact-form button:hover{
background:#4b145b;
}

/* info */
.wa-contact-info{
background:#111111;
padding:25px;
border-radius:14px;
height:fit-content;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.wa-contact-info h3{
margin-bottom:15px;
color: #cfcfcf;
}

.wa-contact-info p{
margin-bottom:10px;
color:#cfcfcf;
}

/* social icons */
.wa-contact-social{
margin-top:20px;
display:flex;
gap:12px;
}

.wa-contact-social a{
background:#fff;
color:#cfcfcf;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
transition:.3s;
}

.wa-contact-social a:hover{
transform:scale(1.1);
}

/* END CONTACT PAGE */

/* PRİVACY PAGE */

.wa-privacy-container{
max-width:900px;
margin:auto;
padding:0 20px;
}

/* hero */
.wa-privacy-hero{
background:;
padding:90px 0;
text-align:center;
}

.wa-privacy-hero h1{
font-size:42px;
margin-bottom:10px;
}

.wa-privacy-hero p{
color:#aaa;
font-size:18px;
}

/* content */
.wa-privacy-content{
padding:70px 0;
}

.wa-privacy-content h2{
margin-top:30px;
margin-bottom:10px;
font-size:24px;
}

.wa-privacy-content p{
color:#aaa;
line-height:1.8;
}

.wa-privacy-content ul{
padding-left:20px;
margin:15px 0;
}

.wa-privacy-content li{
margin-bottom:8px;
}

.wa-privacy-content a{
color: #777777;
text-decoration:none;
font-weight:600;
}

.wa-privacy-content a:hover{
color: #5a1a6e;
opacity:.7;
}

/* END PRİVACY PAGE */

.footeryazi {
      color: #777777;
   }

   .footeryazi:hover {
     color: #5a1a6e;
   }

/* ABOUT PAGE */

.about-container{
max-width:1100px;
margin:auto;
padding:0 20px;
}

.about-hero{
background:;
padding:100px 0;
text-align:center;
}

.about-hero h1{
font-size:48px;
margin-bottom:20px;
}

.about-hero p{
max-width:600px;
margin:auto;
color:#555;
font-size:18px;
}

.about-section{
padding:90px 0;
}

.about-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
}

.about-section h2{
margin-bottom:10px;
}

.about-section p{
color:#aaa;
line-height:1.6;
}

.about-stats{
background:;
padding:80px 0;
text-align:center;
}

.about-stat h3{
font-size:42px;
color:#aaa;
margin:0;
}

.about-stat p{
margin-top:10px;
color:#aaa;
}

/* END ABOUT PAGE */

/* VİDEO PAGE */

.video-card{
position:relative;
border-radius:14px;
overflow:hidden;
background:#111;
cursor:pointer;
}

.video-card img,
.video-card video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* video başlangıçta gizli */
.preview-video{
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity .35s ease;
}

/* hover olunca video görünür */
.video-card:hover .preview-video{
opacity:1;
}

/* overlay */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(0,0,0,0.25);
opacity:0;
transition:.3s;
}

.video-card:hover .overlay{
opacity:1;
}

/* title */
.video-title{
position:absolute;
bottom:10px;
left:12px;
color:#fff;
font-size:14px;
z-index:3;
}

/* END VİDEO PAGE */

/* MODEL PAGE */

.models-page{
padding:60px 5%;
}

.page-title{
text-align:center;
font-size:40px;
margin-bottom:40px;
color:#fff;
}

.models-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:25px;
}

.model-card{
position:relative;
border-radius:14px;
overflow:hidden;
background:#111;
text-decoration:none;
}

.model-card img{
width:100%;
height:360px;
object-fit:cover;
transition:.4s;
}

.model-card:hover img{
transform:scale(1.05);
}

.model-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(0,0,0,.35);
opacity:0;
transition:.3s;
font-family: Arial;
font-weight:500;
}

.model-card:hover .model-overlay{
opacity:1;
}

.view-profile{
font-family: Arial;
background:#fff;
color:#000;
padding:10px 20px;
border-radius:30px;
font-weight:600;
}

.model-name{
position:absolute;
bottom:12px;
left:15px;
color:#fff;
font-size:18px;
font-weight:600;
}

/* END MODEL PAGE */

/* FOOTER */



.site-footer{
background:#050505;
border-top:1px solid #111;
margin-top:80px;
padding: 30px;
text-align: center;
}

/* END FOOTER */

/* TOP AREA */

.footer-top{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 40px;
flex-wrap:wrap;
}

/* TOP AREA */

/* LINKS */

.footer-links{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.footer-links a{
color:#cfcfcf;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.footer-links a:hover{
color:#fff;
}

/* END FOOTER LİNKS */

/* FOOTER SOCIAL */

.footer-social{
display:flex;

gap:18px;
flex-wrap:wrap;
}

.footer-social a{
color:#cfcfcf;
text-decoration:none;
font-size:25px;
transition:.3s;
}

.footer-social a:hover{
color:#fff;
transform:translateY(-2px);
}
  
/* END FOOTER SOCİAL */

/* FOOTER LANG */

.footer-lang {
  position: relative;
  display: inline-block;
}

/* buton */
.lang-btn {
  background: #4b145b;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 17px;
}

/* dropdown */
.lang-dropdown {
  display: none;
  position: absolute;
  bottom: 40px; /* yukarı açılması için */
  left: 0;
  background: #0f0f10;
  min-width: 180px;
  max-height: 250px;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 13px;
}

/* aktif olunca */
.lang-dropdown.active {
  display: block;
}

/* itemler */
.lang-dropdown a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #aaaaaa;
}

.lang-dropdown a:hover {
  background: #aaaaaa;
  color: #000;
}

/* END FOOTER LANG */

/* BOTTOM */

.footer-bottom{
text-align:center;
border-top:1px solid #111;
padding:18px;
font-size:13px;
color:#777;
}

/* END BOTTOM */

/* ALT FOOTER */   

.alt-footer {
      text-align: center;
      background: #050505;
      border-top:1px solid #111;
      border-bottom:1px solid #111;
      padding: 30px;
      color: #777;
      font-size: 13px;

  }

  .footeryazi {
      color: #777777;
   }

   .footeryazi:hover {
     color: #5a1a6e;
   }

/* END ALT FOOTER */

/* MOBİLE */

/* ================= GLOBAL MOBILE OPTIMIZATION ================= */

@media (max-width: 1000px) {
    /* Menü ve Hamburger Düzeni */
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        padding-top: 100px;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .main-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .main-menu a {
        font-size: 18px;
        padding: 10px 0;
    }
}

@media (max-width: 900px) {
    /* 1. Profil Sayfası Düzenlemeleri (YENİ) */
    .cover {
        height: 180px; /* Mobilde kapak küçülsün */
    }

    .profile {
        margin-top: -60px; /* Profil resmi yukarı çıksın */
    }

    .profile img {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }

    .buttons {
        padding: 0 15px;
        gap: 10px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        padding: 15px;
        gap: 10px;
    }

    /* 2. Top Bar & Header */
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

    .left-section, .right-section {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .header-wrap {
        padding: 15px 20px;
    }

    /* 3. Genel Kutular ve Formlar */
    .box {
        width: 92% !important;
        margin: 20px auto !important;
        padding: 20px !important;
    }

    .hero-search form {
        width: 95%;
    }

    /* 4. Tüm Grid Sistemleri (Tek Sütun) */
    .grid, 
    .models-grid, 
    .video-grid, 
    .about-grid, 
    .wa-contact-grid {
        grid-template-columns: 1fr !important;
        padding: 15px !important;
        gap: 20px !important;
    }

    /* 5. Hero & Yazı Boyutları */
    .hero {
        padding: 50px 15px 30px !important;
    }

    .hero h2, .about-hero h1, .wa-contact-hero h1 {
        font-size: 26px !important;
    }

    .model-card img {
        height: 300px !important;
    }

    /* 6. Footer */
    .footer-top {
        flex-direction: column !important;
        gap: 20px;
        text-align: center;
    }

    .footer-links, .footer-social {
        justify-content: center;
    }

    .lang-dropdown {
        left: 50%;
        transform: translateX(-50%);
        bottom: 50px;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 20px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .avatar-name {
        display: none; /* Çok küçük ekranda sadece profil resmi kalsın */
    }

    .avatar img {
        width: 35px;
        height: 35px;
    }
    
    .wa-contact-hero, .wa-privacy-hero {
        padding: 50px 15px;
    }
}

/* END MOBİLE */