/* ============================================
   Soul Alignment Mentor - Stylesheet
   Renk Paleti: Champagne, Rich Gold, Warm Cream
   Font: Playfair Display (serif) + Inter (sans)
   ============================================ */

:root {
    --cream: #FBF7F0;
    --cream-dark: #F3EBD9;
    --gold: #BF9B30;
    --gold-light: #D4B85A;
    --gold-dark: #9A7B1E;
    --gold-glow: rgba(191, 155, 48, 0.15);
    --champagne: #F5E6C8;
    --champagne-light: #FAF0E0;
    --text: #3A3225;
    --text-light: #6B5E4E;
    --white: #FFFFFF;
    --shadow: rgba(150, 120, 50, 0.06);
    --shadow-md: rgba(150, 120, 50, 0.12);
    --shadow-gold: rgba(191, 155, 48, 0.2);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --header-height: 80px;
    --container-width: 1140px;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(251, 247, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(191, 155, 48, 0.1);
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(251, 247, 240, 0.97);
    box-shadow: 0 2px 24px var(--shadow-gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

/* Vav karakter logoları */
.logo-vav {
    font-family: 'Amiri', serif;
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
    display: inline-block;
}

.hero-vav {
    font-family: 'Amiri', serif;
    font-size: 160px;
    line-height: 0.8;
    color: var(--gold);
    display: block;
    margin: 0 auto 16px;
}

.footer-vav {
    font-family: 'Amiri', serif;
    font-size: 36px;
    line-height: 1;
    color: var(--gold-light);
    display: inline-block;
}

.logo-svg {
    width: 36px;
    height: 42px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
}

.logo-name {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--gold);
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all var(--transition);
}

.lang-btn.active {
    color: var(--gold);
    background: rgba(191, 155, 48, 0.1);
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-divider {
    color: var(--gold-light);
    font-size: 13px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--cream) 0%, var(--champagne-light) 30%, var(--champagne) 60%, var(--cream) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 155, 48, 0.1) 0%, rgba(212, 184, 90, 0.04) 40%, transparent 70%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 155, 48, 0.07) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-logo {
    margin-bottom: 32px;
}

.hero-logo-img {
    margin-bottom: 24px;
}

.hero-brand-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-logo-svg {
    width: 100px;
    height: 120px;
    margin: 0 auto 16px;
}

.hero-logo .hero-vav {
    margin-bottom: 0;
}

.hero-brand {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 28px auto;
    opacity: 0.6;
}

.hero-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition);
}

.hero-btn:hover {
    background: var(--gold);
    color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ============ SECTION COMMON ============ */
.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 48px;
    border-radius: 2px;
}

.section-subtitle-line.left {
    margin-left: 0;
}

/* ============ SERVICES ============ */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(191, 155, 48, 0.1);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
    border-color: rgba(191, 155, 48, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text);
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
}

.service-price {
    font-size: 13px;
    color: var(--gold-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.service-btn {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all var(--transition);
}

.service-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* ============ ABOUT ============ */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--champagne-light) 100%);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid var(--gold-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    background: rgba(191, 155, 48, 0.04);
}

.about-image-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

.about-image-placeholder span {
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.6;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-text.about-intro {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text.about-highlight {
    font-style: italic;
    color: var(--gold-dark);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin: 24px 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid rgba(191, 155, 48, 0.08);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* ============ CONTACT ============ */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(191, 155, 48, 0.05) 100%);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-light);
    transition: color var(--transition);
}

.contact-item:hover {
    color: var(--gold);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(191, 155, 48, 0.08);
    color: var(--gold);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(191, 155, 48, 0.2);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: #B0A898;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(191, 155, 48, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    align-self: flex-start;
}

.form-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(191, 155, 48, 0.3);
}

/* ============ FOOTER ============ */
.footer {
    padding: 40px 0;
    background: var(--text);
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-logo-svg {
    width: 24px;
    height: 32px;
}

.footer-logo span.footer-name {
    font-family: var(--font-script);
    font-size: 24px;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: 0;
}

.footer-logo span.footer-subtitle {
    font-family: var(--font-serif);
    font-size: 11px;
    color: rgba(250, 246, 240, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(191, 155, 48, 0.3);
    color: var(--gold-light);
    transition: all var(--transition);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-copy {
    font-size: 12px;
    color: rgba(250, 246, 240, 0.4);
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ MOBILE NAV OVERLAY ============ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 240, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.nav-overlay.active {
    display: flex;
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .about-inner,
    .contact-inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    /* Mobile Nav */
    .nav {
        position: fixed;
        inset: 0;
        left: 0;
        transform: none;
        background: rgba(250, 246, 240, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 20px;
        font-family: var(--font-serif);
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-logo-svg {
        width: 80px;
        height: 96px;
    }

    .hero-brand {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* About */
    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .section-subtitle-line.left {
        margin: 0 auto 48px;
    }

    .about-image-placeholder {
        width: 220px;
        height: 220px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Contact */
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-info .section-subtitle-line.left {
        margin: 0 auto 48px;
    }

    .contact-items {
        align-items: center;
        margin-bottom: 20px;
    }

    .form-btn {
        align-self: center;
        width: 100%;
    }

    /* Spacing */
    .services,
    .about,
    .testimonials,
    .contact {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .hero-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .logo-text {
        font-size: 13px;
    }
}
