* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    
}
.container {position: relative; max-width: 1300px; margin: 0 auto; padding: 0 20px; height: -58px;}

/* Header */

.header {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0px 0;
    border-bottom: 5px solid #FF4500;
    height: 12%;
}
.logo h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    color: #FF4500;
    letter-spacing: 3px;
}
.nav a {
    color: #ccc;                      
    text-decoration: none;
    margin-left: 40px;
    font-weight: 600;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
}
.nav a:hover { color: #FF4500; }
.menu-toggle { display: none; cursor: pointer; color: #FF4500; font-weight: bold; }
#navAdmin{ color: #ccc;                      
    text-decoration: none;
    margin-left: 40px;
    font-weight: 600;
    transition: 0.3s;
    justify-content: center;
    align-items: center;}
/* Hero – Yumuşak Gradient Overlay */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}
.hero-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,69,0,0.4) 0%, 
        rgba(0,0,0,0.7) 50%, 
        rgba(0,0,0,0.9) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 8rem;
    color: #FF4500;
    letter-spacing: 8px;
    margin-bottom: 10px;
}
.box-wrapper {
    position: absolute;
    width: 65px;
    height: 35px;
    left: 50%;
    bottom: 75px;
    transform-origin: center 120px;
    transform: translateX(-50%) rotate(calc(var(--i) * 45deg - 135deg));
    transition: 0.4s all ease;
}

.box-inner {
    width: 100%;
    height: 100%;
    background: #222;
    border: 2px solid #FF4500;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.progress-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FF4500;
    transition: height 0.4s ease;
    z-index: 1;
}

.box-inner span {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: bold;
}

.box-wrapper.active .box-inner {
    background: #FF4500;
    box-shadow: 0 0 15px #FF4500;
    transform: scale(1.1);
}
.subtitle {
    font-size: 3rem;
    color: #fff;
    letter-spacing: 10px;
    margin-bottom: 20px;
}
.tagline {
    font-size: 1.4rem;
    color: #ccc;
    margin: 30px 0;
}
.btn-reserve {
    background: #FF4500;
    color: #fff;
    padding: 18px 60px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.4s;
}
.btn-reserve:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

section { padding: 120px 0; }
.section-title {
    text-align: center;
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    color: #FF4500;
    margin-bottom: 80px;
    letter-spacing: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: linear-gradient(135deg, #1a1a1a, #000);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.9rem;
    transition: 0.4s;
    border: 1px solid rgba(255,69,0,0.1);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,69,0,0.2);
    border-color: #FF4500;
}
.service-card span:last-child {
    color: #FF4500;
    font-weight: bold;
}

.vip-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.vip-card {
    position: relative;
    width: 360px;
    background: #111;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    padding: 40px 30px;
    cursor: pointer;
    transition: 0.5s;
}
.vip-card:hover { transform: translateY(-20px); }
.card-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.8;
    transition: 0.5s;
}
.card-gradient.normal { background: linear-gradient(135deg, #333, #000); }
.card-gradient.featured { background: linear-gradient(135deg, #af9e06, #000); }
.card-gradient.plus { background: linear-gradient(135deg, #027474, #000); }
.vip-card:hover .card-gradient { opacity: 1; }
.badge {
    position: absolute;
    top: 20px; right: 20px;
    background: #FF4500;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
}
.vip-card h3 { font-family: 'Exo 2'; color: #fff; font-size: 2rem; margin-bottom: 15px; position: relative; z-index: 2; }
.price { font-size: 3rem; font-weight: 900; color: #FF4500; margin: 20px 0; position: relative; z-index: 2; }
.vip-card ul { list-style: none; margin: 30px 0; position: relative; z-index: 2; }
.vip-card li { padding: 10px 0; color: #aaa; }
.detail { color: #FF4500; font-weight: bold; position: relative; z-index: 2; }

/* İletişim */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}
.contact-info .info {
    margin: 20px 0;
    font-size: 1.2rem;
}
.contact-info i { color: #FF4500; margin-right: 15px; }
.contact-info a { color: #FF4500; text-decoration: none; }
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { transform: scale(1.05); }

/* Sabit WhatsApp */
.fixed-wa {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #FF4500;
    color: white;
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255,69,0,0.5);
    z-index: 999;
}
.randevu-wrap{
    margin:0 auto;
    margin-top:150px;
    max-width:900px;
    padding:20px;
    border-radius:14px;
    background: #101010;
    box-shadow:0 0 25px rgba(0,0,0,0.5);
}

.r-baslik{
    font-size:22px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
}

.form-field{
    display:flex;
    flex-direction:column;
    margin-top:12px;
    color:#ddd;
    font-size:14px;
}

.form-field input, 
.form-field select, 
.form-field textarea{
    margin-top:5px;
    padding:10px;
    border-radius:8px;
    background:#0c0c0c;
    border:1px solid #333;
    color:#fff;
}

.r-btn{
    margin-top:15px;
    padding:12px 18px;
    background-color: darkorange;
    color:white;
    font-weight:700;
    border-radius:10px;
    display:inline-block;
    cursor:pointer;
    text-align:center;
    z-index: 10;
}
.r-btn:hover{
    scale: 0.95;
}

.r-list{
    margin-top:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.r-item{
    padding:12px;
    border-radius:10px;
    background:#181818;
    border:1px solid #333;
    display:flex;
    justify-content:space-between;
    color:#fff;
}
.profil{margin-left: 1054px;}
.sil-btn{
    padding:6px 10px;
    border-radius:8px;
    background:#222;
    border:1px solid #444;
    color:#ccc;
    cursor:pointer;
}
.user-top { top: 0px; }
.admin-top { top: -43px; }
.music-player-fixed {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 280px;
    background: #4a3728; /* Görseldeki o özel kahverengi */
    border-radius: 15px;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    color: #fff;
    font-family: sans-serif;
}


.song-info { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.album-art { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }

.text-details .song-name { font-size: 14px; font-weight: bold; display: block; }
.text-details .artist-name { font-size: 12px; color: #b0a090; }

.controls { display: flex; justify-content: center; align-items: center; gap: 20px; margin: 15px 0; }
.controls i { cursor: pointer; font-size: 18px; transition: 0.3s; }
.controls i:hover { color: #FF4500; }

.volume-bar-container { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.volume-slider { flex: 1; height: 4px; background: #6b5340; border-radius: 2px; }
.volume-progress { width: 40%; height: 100%; background: #fff; border-radius: 2px; }

.mini-card { background: rgba(0,0,0,0.2); border-radius: 10px; padding: 8px; display: flex; align-items: center; gap: 10px; }
.mini-art { width: 35px; height: 35px; border-radius: 5px; }
.mini-song { font-size: 11px; font-weight: bold; display: block; }
.mini-artist { font-size: 10px; color: #b0a090; }
/* Responsive */
@media (max-width: 600px) {
    .randevu-wrap { width: 95%; padding: 15px; }
    .r-baslik { font-size: 20px; }
    .form-field input, .form-field select, .form-field textarea { padding: 10px; }
    .r-btn { width: 100%; padding: 12px; }
    .nav { display: flex !important;justify-content: center;width: 100%;position: relative;left: 0;margin: 10px 0;}
    #navAnaSayfa, #navVip, #navİletisim, #navHakkimizda, #navHizmet { display: none !important; }
    #navLogout {margin-left: -290px; display: flex;opacity: 1 ;background: #FF4500;padding: 10px 20px;border-radius: 5px;color: white;text-decoration: none;font-weight: bold;}
    .menu-toggle { display: none; }
    .hero-content h2 { font-size: 5rem; }
    .contact-content { flex-direction: column; text-align: center; }
    .profil {margin-left: 405px ;text-align: center;width: 100%;display: block;margin-bottom: 15px;}
}
