/* ============================================================
   Demo Content CSS - Sadece içerik bölümleri
   Header, footer, mobile menu YOK - Imroz teması onları yönetir
   ============================================================ */

:root {
    --color-primary: #b8860b;
    --color-primary-light: #d4a843;
    --color-secondary: #1a1a2e;
    --color-text: #555;
    --color-dark: #1f1f25;
    --color-light: #f8f9fc;
    --color-accent: #c9a14a;
    --color-gold: #b8860b;
    --color-gold-light: #d4a843;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* --- Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeInDown {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.2s;
}
.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* --- Scoped container (demo sections only) --- */
.demo-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Homepage: breadcrumb/title gizle, page-wrapper sıfırla --- */
body.home .breadcrumb-area,
body.home .rn-page-title-area,
body.home .title-layout-1 {
    display: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 160px 0 100px;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Full-width inside page-wrapper */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(184,134,11,0.3);
    border: 1px solid rgba(184,134,11,0.5);
    color: var(--color-gold-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 0 40px 40px 40px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gold-light);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-quote {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184,134,11,0.3);
    color: #fff;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    object-fit: cover;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 80px 0 60px;
}

.about-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(120deg, var(--color-gold) 20%, var(--color-gold-light) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.about-desc {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.7;
}

.btn-story {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 10px;
    position: relative;
    text-decoration: none;
}

.btn-story::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.4s ease;
}

.btn-story:hover::after {
    width: 100%;
}

.btn-story:hover {
    color: var(--color-gold-light);
}

/* About Centered (no image) */
.about-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-heading {
    padding: 40px 0 20px;
}

.section-title-center {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.section-subtitle-center {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    margin-top: 8px;
}

.services-section {
    padding: 20px 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Flip Cards */
.flip-card {
    perspective: 1000px;
    height: 380px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.flip-card-icon {
    font-size: 40px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.flip-card-front h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.flip-card-front p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.flip-card-back {
    transform: rotateY(180deg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.flip-card-back-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
}

.flip-card-back-content {
    position: relative;
    z-index: 2;
}

.flip-card-back-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.flip-card-back-content p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-more {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-gold);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-more:hover {
    background: var(--color-secondary);
    box-shadow: 0 10px 15px rgba(184,134,11,0.15);
    color: #fff;
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */
.approach-section {
    padding: 60px 0 80px;
    background: #f9f8f5;
    text-align: center;
    /* Full-width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.approach-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.approach-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.approach-subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 50px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184,134,11,0.1);
}

.approach-icon {
    font-size: 36px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.approach-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.approach-card p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    text-align: left;
}

/* ============================================================
   CONSULTING SECTION
   ============================================================ */
.consulting-section {
    padding: 80px 0;
    background: #f9f8f5;
    /* Full-width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.consulting-section .section-label,
.coaching-section .section-label {
    display: block;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.consulting-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.consulting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184,134,11,0.1);
}

.consulting-icon {
    font-size: 36px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.consulting-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.consulting-card p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

/* ============================================================
   COACHING SECTION
   ============================================================ */
.coaching-section {
    padding: 80px 0;
    background: #fff;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.coaching-card {
    background: #f9f8f5;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.coaching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184,134,11,0.1);
}

.coaching-icon {
    font-size: 36px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.coaching-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.coaching-card p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

.coaching-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coaching-list li {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.coaching-list li:last-child {
    border-bottom: none;
}

.coaching-list li strong {
    color: #1a1a2e;
}

/* ============================================================
   DARK MODE (Imroz: body.active-dark-mode)
   ============================================================ */
body.active-dark-mode .about-section,
body.active-dark-mode .services-heading,
body.active-dark-mode .services-section,
body.active-dark-mode .coaching-section {
    background: #101010;
}

body.active-dark-mode .approach-section,
body.active-dark-mode .consulting-section {
    background: #191919;
}

body.active-dark-mode .approach-card,
body.active-dark-mode .consulting-card {
    background: #0c0c0c;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

body.active-dark-mode .coaching-card {
    background: #1a1a1a;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

body.active-dark-mode .approach-card:hover,
body.active-dark-mode .consulting-card:hover,
body.active-dark-mode .coaching-card:hover {
    box-shadow: 0 15px 40px rgba(184,134,11,0.15);
}

/* Titles & headings */
body.active-dark-mode .about-title,
body.active-dark-mode .section-title-center,
body.active-dark-mode .approach-title {
    color: #fff;
}

/* Subtitles & descriptions */
body.active-dark-mode .about-desc,
body.active-dark-mode .section-subtitle-center,
body.active-dark-mode .approach-subtitle {
    color: #acacac;
}

/* Body text */
body.active-dark-mode .about-text p,
body.active-dark-mode .approach-card p,
body.active-dark-mode .consulting-card p,
body.active-dark-mode .coaching-card p,
body.active-dark-mode .coaching-list li {
    color: #acacac;
}

/* Card headings */
body.active-dark-mode .approach-card h4,
body.active-dark-mode .consulting-card h3,
body.active-dark-mode .coaching-card h3,
body.active-dark-mode .coaching-list li strong {
    color: #fff;
}

/* Coaching list borders */
body.active-dark-mode .coaching-list li {
    border-bottom-color: #2a2a2a;
}

/* Flip card fronts - override inline styles */
body.active-dark-mode .flip-card-front {
    background-color: #0c0c0c !important;
}

body.active-dark-mode .flip-card-front h3 {
    color: #fff;
}

body.active-dark-mode .flip-card-front p {
    color: #acacac;
}

/* Flip card backs */
body.active-dark-mode .flip-card-back-overlay {
    background: rgba(16,16,16,0.92);
}

body.active-dark-mode .flip-card-back-content h3 {
    color: #fff;
}

body.active-dark-mode .flip-card-back-content p {
    color: #acacac;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-row {
        gap: 30px;
    }

    .hero-image img {
        max-height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title-center {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }

    .hero-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-section {
        padding: 130px 0 80px;
        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    .about-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .consulting-grid {
        grid-template-columns: 1fr;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
    }

    .consulting-section,
    .coaching-section {
        padding: 50px 0;
    }

    .section-title-center {
        font-size: 24px;
    }

    .section-subtitle-center {
        font-size: 15px;
    }

    .approach-title {
        font-size: 28px;
    }
}
