@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* =========================================================
       COLORS
    ========================================================= */

    --bg-primary: #090c14;
    --bg-secondary: #0f1729;
    --bg-card: rgba(255,255,255,0.05);
    --bg-glass: rgba(255,255,255,0.06);
    --gold: #d4af37;
    --gold-light: #f1d77a;
    --gold-dark: #9d7a16;
    --white: #ffffff;
    --text-primary: rgba(255,255,255,0.95);
    --text-secondary: rgba(255,255,255,0.70);
    --text-muted: rgba(255,255,255,0.50);
    --border: rgba(255,255,255,0.08);
    /* =========================================================
       GRADIENTS
    ========================================================= */

    --gradient-gold: linear-gradient( 135deg, #f8e39c 0%, #d4af37 50%, #b88914 100% );
    --gradient-dark: linear-gradient( 180deg, #0b1020 0%, #090c14 100% );
    --gradient-hero: radial-gradient( circle at top, rgba(212,175,55,0.12), transparent 40% ), linear-gradient( 180deg, #0d1220 0%, #090c14 100% );
    /* =========================================================
       SHADOWS
    ========================================================= */

    --shadow-gold: 0 20px 60px rgba(212,175,55,0.18);
    --shadow-dark: 0 20px 60px rgba(0,0,0,0.45);
    /* =========================================================
       RADIUS
    ========================================================= */

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 40px;
    /* =========================================================
       TRANSITIONS
    ========================================================= */

    --transition: all .35s ease;
}

/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient( circle at top left, rgba(212,175,55,0.08), transparent 30% ), radial-gradient( circle at bottom right, rgba(32,55,120,0.25), transparent 35% ), var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

p {
    line-height: 1.8;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #080b12;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 50px;
}

/* =========================================================
   LAYOUT
========================================================= */

.container-custom {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(8,10,18,0.55);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .navbar-custom.scrolled {
        background: rgba(6,8,15,0.92);
        box-shadow: var(--shadow-dark);
    }

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

    .navbar-brand span {
        color: var(--gold);
    }

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin-left: 1rem;
    position: relative;
    transition: var(--transition);
}

    .nav-link:hover {
        color: var(--gold) !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: var(--transition);
    }

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

/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(212,175,55,0.10);
    border-radius: 50%;
    filter: blur(100px);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

    .hero-title .gold {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-description {
    max-width: 720px;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    background: var(--gradient-gold);
    color: #111 !important;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

    .btn-gold:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 70px rgba(212,175,55,0.30);
    }

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.40);
    color: var(--gold);
    background: rgba(255,255,255,0.02);
    transition: var(--transition);
}

    .btn-outline-gold:hover {
        background: rgba(212,175,55,0.10);
        transform: translateY(-4px);
    }

/* =========================================================
   GLASS CARD
========================================================= */

.glass-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(24px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

    .glass-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212,175,55,0.20);
        box-shadow: var(--shadow-dark);
    }

.glass-card-body {
    padding: 2rem;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .85rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    max-width: 700px;
    margin: auto;
    color: var(--text-secondary);
}

/* =========================================================
   EVENTS
========================================================= */

.event-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: .95rem;
}

/* =========================================================
   PARTNERS
========================================================= */

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: .7;
    transition: var(--transition);
}

    .partner-logo:hover {
        opacity: 1;
        transform: scale(1.05);
    }

/* =========================================================
   FORMS
========================================================= */

.form-control,
.form-select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    min-height: 58px;
    border-radius: 18px;
    padding-left: 1rem;
}

    .form-control:focus,
    .form-select:focus {
        background: rgba(255,255,255,0.06);
        color: white;
        border-color: rgba(212,175,55,0.45);
        box-shadow: 0 0 0 .2rem rgba(212,175,55,0.12);
    }

    .form-control::placeholder {
        color: rgba(255,255,255,0.40);
    }

/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;
    background: linear-gradient( 180deg, rgba(10,12,20,0), rgba(6,8,14,1) );
    padding-top: 120px;
    padding-bottom: 40px;
    overflow: hidden;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
}

    .footer-logo span {
        color: var(--gold);
    }

.footer-links a {
    display: inline-block;
    margin-bottom: .85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--gold);
        transform: translateX(6px);
    }

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(212,175,55,0.35), transparent );
    margin: 3rem 0;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(37,211,102,0.35);
    animation: pulse 2s infinite;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes float {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 991px) {

    .section-padding {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .hero-section {
        text-align: center;
        padding-top: 120px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(12,14,24,0.95);
    }

    .nav-link {
        margin-left: 0;
        margin-bottom: 1rem;
    }
}

@media(max-width: 768px) {

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .glass-card-body {
        padding: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-gold,
    .btn-outline-gold {
        width: 100%;
    }
}

@media(max-width: 576px) {

    .container-custom {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 100px;
    }

    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(22px);
}

.glass-gold {
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.03));
    border: 1px solid rgba(212,175,55,0.25);
    backdrop-filter: blur(22px);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.italic {
    font-style: italic;
}

.hero-home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 120px;
    background: var(--gradient-hero);
}

.hero-main-title {
    font-size: clamp(4rem, 9vw, 8rem);
}

.hero-main-description {
    max-width: 650px;
    font-size: 1.15rem;
    margin-top: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .75rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 460px;
    gap: 2rem;
    margin-top: 3.5rem;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 2rem;
}

.hero-stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .75rem;
}

.hero-image-card {
    position: relative;
    padding: .5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-dark);
}

.hero-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 1.6rem;
}

.hero-quote {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 1rem;
    border-radius: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .hero-quote i {
        color: var(--gold);
    }

    .hero-quote p {
        margin: 0;
        font-style: italic;
        color: white;
    }

.bio-image-wrapper {
    position: relative;
}

.bio-image {
    aspect-ratio: 4 / 5;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    color: var(--gold);
    opacity: .7;
}

.bio-book-card {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    padding: 1.5rem;
    border-radius: 1.4rem;
}

.bio-book-label {
    color: var(--gold);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.bio-book-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 1.5rem;
}

.event-preview-card,
.partner-card {
    height: 100%;
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: var(--transition);
}

    .event-preview-card:hover,
    .partner-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-gold);
    }

.event-preview-image {
    aspect-ratio: 16 / 10;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212,175,55,.35);
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.event-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    color: var(--text-muted);
    font-size: .78rem;
    margin-bottom: 1rem;
}

    .event-preview-meta i {
        color: var(--gold);
    }

.partners-section {
    padding: 80px 0;
}

.partners-heading {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--text-muted);
    font-size: .78rem;
    margin-bottom: 2.5rem;
}

.partner-card {
    text-align: center;
    padding: 2rem 1rem;
}

.partner-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.book-preview-image {
    width: 100%;
    max-width: 430px;
    border-radius: 2rem;
    box-shadow: var(--shadow-dark);
    margin: auto;
}

.contact-cta {
    position: relative;
    border-radius: 2rem;
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
}

    .contact-cta h2 {
        font-size: clamp(2.5rem, 6vw, 5.5rem);
    }

    .contact-cta p {
        max-width: 700px;
        margin: 1.5rem auto 0;
    }

.contact-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

@media(max-width: 991px) {
    .hero-home {
        text-align: center;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        height: 460px;
    }
}

@media(max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-image {
        height: 390px;
    }
}
