/* =====================================================
   BOGATY FOTOGRAF - ULTRA LUXURY DESIGN
   Inspired by: Apple, Hermès, Rolex
   ===================================================== */

/* Import Elegant Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --gold: #c9a961;
    --gray: #6b6b6b;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

::selection {
    background: var(--gold);
    color: white;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1001;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1714 0%, #0a0a0a 50%, #1a1714 100%);
    color: white;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(201, 169, 97, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
    animation: breathe 15s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 4rem;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.scroll-hint {
    font-size: 2rem;
    opacity: 0.5;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* SECTIONS */
.section-dark {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1714 100%);
    color: white;
    padding: 10rem 3rem;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,169,97,0.3) 50%, transparent 100%);
}

.section-light {
    background: var(--white);
    padding: 10rem 3rem;
}

.section-cta {
    background: linear-gradient(135deg, #c9a961 0%, #b89751 100%);
    color: white;
    padding: 10rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* TEXT STYLES */
.text-large {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
}

.spacing-top {
    margin-top: 6rem;
}

.text-medium {
    font-size: 1.125rem;
    line-height: 1.9;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 3rem;
    font-weight: 300;
}

.section-title-center {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
    padding-bottom: 2rem;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.subtitle-center {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* TWO COLUMN */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.column {
    padding: 1rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 0.9rem;
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* BELIEFS */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.belief-card {
    padding: 3rem 2.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.belief-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: 0.7s;
}

.belief-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-8px);
}

.belief-card:hover::before {
    transform: translateX(0);
}

.belief-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.belief-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    opacity: 0.85;
    font-weight: 300;
}

/* LEVEL CARDS */
.levels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.level-card {
    background: white;
    padding: 4rem 3rem;
    border: 1px solid #e5e5e5;
    position: relative;
    transition: 0.5s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.level-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.level-featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(201,169,97,0.25);
}

.level-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 0.6rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(201,169,97,0.4);
}

.level-badge-exclusive {
    background: linear-gradient(135deg, #0a0a0a 0%, #2a2520 100%);
}

.level-number {
    font-size: 5rem;
    font-weight: 200;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.level-title {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: var(--black);
}

.level-subtitle {
    font-size: 1.0625rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.level-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray);
    font-weight: 300;
}

.level-features {
    list-style: none;
    margin-bottom: 2.5rem;
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
}

.level-features li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray);
    font-weight: 300;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.level-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.level-outcome {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
    font-style: italic;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* RESULTS */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.result-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    transition: 0.4s;
}

.result-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-8px);
}

.result-image-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.8125rem;
    border: 4px solid rgba(201,169,97,0.3);
}

.result-quote {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.92;
    font-weight: 300;
}

.result-author {
    font-size: 0.9375rem;
    opacity: 0.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* PROCESS */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 4rem 0;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #c9a961 0%, #b89751 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: white;
    box-shadow: 0 6px 25px rgba(201,169,97,0.35);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

.process-arrow {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.4;
}

/* STATS */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 5rem 0;
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.75rem;
}

.text-center-small {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 2.5rem;
    font-weight: 300;
}

/* BUTTONS */
.btn-primary, 
.btn-secondary {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

.btn-primary {
    background: linear-gradient(135deg, #0a0a0a 0%, #2a2520 100%);
    color: white;
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: white;
    transform: translateY(-3px);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.75rem 4.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0a0a0a 0%, #2a2520 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
    transition: 0.5s;
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.35);
}

.link-subtle {
    color: var(--gold);
    font-size: 1.0625rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    display: inline-block;
}

.link-subtle:hover {
    border-bottom-color: var(--gold);
    transform: translateX(8px);
}

.link-subtle-white {
    color: white;
    font-size: 1.0625rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.link-inline {
    color: var(--black);
    border-bottom: 1px solid var(--black);
}

.link-inline:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
}

/* CTA */
.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.375rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-small {
    margin-top: 2.5rem;
    font-size: 1.0625rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: white;
    padding: 7rem 3rem 3rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.footer-tagline {
    font-size: 0.9375rem;
    opacity: 0.6;
    line-height: 1.7;
    font-weight: 300;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.9375rem;
    opacity: 0.6;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1280px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8125rem;
    opacity: 0.4;
}

.footer-login-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.footer-login-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--black);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .levels-container {
        grid-template-columns: 1fr;
    }
    
    .level-featured {
        transform: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .stats-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .section-light,
    .section-dark {
        padding: 6rem 1.5rem;
    }
}
