/* ============================================
   Vasilisa Beauty - CSS Değişkenleri ile
   Admin Panelden Renk Yönetimi
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fef9f4;
    color: var(--yazi);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ana); }

/* ========== ÜST BAR ========== */
.top-bar {
    background: var(--ikincil);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-left span { display: flex; align-items: center; gap: 6px; }
.top-left i { color: var(--ana); }
.top-right { display: flex; align-items: center; gap: 15px; }
.lang-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
}
.lang-btn:hover { background: var(--ana); }
.top-right a {
    color: white;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: 0.3s;
}
.top-right a:hover {
    background: var(--ana);
    transform: translateY(-3px);
}

/* ========== HEADER ========== */
header {
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--link);
}
.logo h1 span {
    font-weight: 700;
    color: var(--ikincil);
}
.logo img { max-height: 55px; width: auto; display: block; }

/* ========== MENÜ ========== */
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a {
    color: var(--yazi);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
nav a:hover {
    color: var(--ana);
    border-bottom-color: var(--ana);
}

/* ========== BUTON ========== */
.btn-randevu {
    background: var(--buton);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-randevu:hover {
    background: var(--hover);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 80vh;
    max-height: 700px;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
    margin-bottom: 60px;
}
.slider-container { position: relative; height: 100%; }
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.overlay h2 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.overlay p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; }
.btn-slider {
    background: var(--ana);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-slider:hover {
    background: var(--hover);
    transform: translateY(-3px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 55px; height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn.prev { left: 25px; }
.slider-btn.next { right: 25px; }

/* Hero Default */
.hero-default {
    background: linear-gradient(135deg, var(--ana), var(--hover));
    padding: 120px 0 100px;
    text-align: center;
    color: white;
    border-radius: 0 0 60px 60px;
    margin-bottom: 60px;
}
.hero-default h1 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; }
.hero-default h1 strong { font-weight: 700; }
.hero-default p { font-size: 1.2rem; margin: 25px 0 35px; }

/* ========== BÖLÜM BAŞLIKLARI ========== */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ikincil);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--ana);
    border-radius: 3px;
}
.section-title p {
    color: var(--link);
    font-style: italic;
    font-size: 1.1rem;
}

/* ========== HİZMETLER ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--ana);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--ana);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    font-size: 3rem;
    color: var(--ana);
    margin-bottom: 20px;
    transition: 0.3s;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--ikincil);
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--ikincil);
}
.service-card p { color: #666; line-height: 1.6; }

/* ========== HAKKIMIZDA ========== */
.about-section { background: white; padding: 80px 0; margin: 70px 0; }
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ikincil);
    margin-bottom: 25px;
}
.about-text > p { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--ikincil);
}
.feature-item i { color: var(--ana); font-size: 1.3rem; }
.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.about-image img { width: 100%; height: 450px; object-fit: cover; display: block; }
.about-placeholder {
    background: linear-gradient(135deg, var(--ana), var(--hover));
    width: 100%; height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

/* ========== GALERİ ========== */
.gallery-section { padding: 70px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.gallery-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.gallery-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.gallery-img { width: 100%; height: 100%; overflow: hidden; }
.gallery-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-box:hover .gallery-img img { transform: scale(1.1); }
.gallery-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    font-weight: 500;
}

/* ========== VİDEO GALERİ ========== */
.video-section { padding: 70px 0; background: white; margin: 40px 0; }
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.video-card h4 {
    padding: 20px;
    text-align: center;
    font-weight: 500;
    color: var(--ikincil);
}

/* ========== İLETİŞİM ========== */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 2px solid transparent;
}
.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--ana);
}
.contact-card i { font-size: 2.5rem; color: var(--ana); margin-bottom: 20px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--ikincil); }
.contact-card a { color: var(--link); font-weight: 500; }

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}
.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--ana);
    box-shadow: 0 0 0 3px rgba(212,168,140,0.1);
}
.form-row { display: flex; gap: 20px; }
.form-row input { flex: 1; }
.alert { padding: 15px; border-radius: 12px; margin-bottom: 20px; text-align: center; }
.alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ========== FOOTER ========== */
footer {
    background: var(--ikincil);
    color: white;
    padding: 60px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
}
.footer-col h3 span {
    font-weight: 700;
    color: var(--ana);
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--ana);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: 0.3s;
}
.footer-col ul li a:hover {
    color: var(--ana);
    padding-left: 5px;
}
.social-icons { display: flex; gap: 15px; flex-wrap: wrap; }
.social-icons a {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}
.social-icons a:hover {
    background: var(--ana);
    transform: translateY(-5px);
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ========== SABİT WHATSAPP / TELEFON ========== */
.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.quick-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.3s;
    text-decoration: none;
}
.quick-contact .whatsapp {
    background: #25D366;
    animation: pulse 2s infinite;
}
.quick-contact .phone {
    background: var(--ana);
}
.quick-contact a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-content { flex-direction: column; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero-slider { height: 60vh; border-radius: 0 0 40px 40px; }
    .overlay h2 { font-size: 2rem; }
    .form-row { flex-direction: column; }
    .quick-contact { bottom: 20px; right: 20px; }
    .quick-contact a { width: 50px; height: 50px; font-size: 1.2rem; }
}