/* CONVERSATION CORNER - SOFT & AMBIENT THEME */
/* Inherits base style from homepage, adds CC-specific atmosphere */

/* --------------------------------------------------
    ROOT VARIABLES (MATCHING HOMEPAGE)
-------------------------------------------------- */
:root {
    --color-bg: #FAF9F7;          
    --color-text: #1A1A1A;        
    --color-accent: #DFAA25;      
    --color-card-bg: #ffffff;     
    --color-border: #1A1A1A;
    
    /* CC-specific softer tones */
    --color-soft-bg: #F5F4F2;
    --color-soft-accent: #E8C77D;
    
    --font-heading: 'Crimson Pro', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

/* --------------------------------------------------
    GLOBAL BASE
-------------------------------------------------- */
html, body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --------------------------------------------------
    NAVBAR (FROM HOMEPAGE)
-------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: var(--color-bg);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .navbar {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}

.language-switcher-inline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 15px;
}

.lang-link {
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.2s ease, color 0.2s ease;
    padding: 5px 8px;
}

.lang-link:hover {
    opacity: 1;
    color: var(--color-accent);
}

.lang-link.lang-active {
    opacity: 1;
    color: var(--color-accent);
    font-weight: 700;
}

.lang-separator {
    color: var(--color-text);
    opacity: 0.3;
    margin: 0 4px;
}

.btn-invite {
    background-color: var(--color-text);
    border: 2px solid var(--color-text);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-invite:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 170, 37, 0.3);
}

/* --------------------------------------------------
    HERO - SOFT & CENTERED
-------------------------------------------------- */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: var(--color-bg);
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    font-style: normal;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    opacity: 0.75;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 60px 20px;
    }
}

/* --------------------------------------------------
    CONTENT SECTIONS - GENTLE RHYTHM
-------------------------------------------------- */
.content-section {
    padding: 100px 0;
    position: relative;
}

.content-section.bg-light {
    background-color: var(--color-soft-bg);
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
}

/* --------------------------------------------------
    CONTENT CARDS - CLEAN & SPACIOUS
-------------------------------------------------- */
.content-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 600;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 50px;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.section-text {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.85;
    margin-bottom: 30px;
}

/* --------------------------------------------------
    ILLUSTRATION - CENTERED & SUBTLE
-------------------------------------------------- */
.illustration-wrapper {
    max-width: 400px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.format-illustration {
    width: 100%;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.format-illustration:hover {
    opacity: 1;
}

/* --------------------------------------------------
    FLOW MOMENTS - GENTLE CASCADE
-------------------------------------------------- */
.flow-moments {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 50px;
}

.moment-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.moment-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.moment-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(223, 170, 37, 0.15);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.moment-item p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
    color: var(--color-text);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .flow-moments {
        gap: 25px;
    }
    
    .moment-item {
        gap: 20px;
    }
    
    .moment-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .moment-item p {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------
    LOCATION GRID - SOFT TAGS
-------------------------------------------------- */
.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.location-tag {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px;
    background-color: var(--color-bg);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 25px;
    color: var(--color-text);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.location-tag:hover {
    opacity: 1;
    border-color: var(--color-accent);
    background-color: rgba(223, 170, 37, 0.05);
}

/* --------------------------------------------------
    DETAILS GRID - ORGANIZED INFO
-------------------------------------------------- */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--color-text);
}

.detail-item p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    color: var(--color-text);
    opacity: 0.75;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --------------------------------------------------
    CTA BUTTONS
-------------------------------------------------- */
.btn-cta-primary {
    background-color: var(--color-text);
    border: 2px solid var(--color-text);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 170, 37, 0.3);
}

.btn-cta-secondary {
    background-color: transparent;
    border: 2px solid var(--color-text);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
}

/* --------------------------------------------------
    FOOTER
-------------------------------------------------- */
.minimal-footer {
    background-color: var(--color-soft-bg);
    padding: 50px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.minimal-footer p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.75;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.minimal-footer a {
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.minimal-footer a:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* --------------------------------------------------
    UTILITIES
-------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}