/* =========================================
   (04) FOUNDING-CIRCLE.CSS - Sanctuary Style
   ========================================= */

/* --- VARIABLES --- */
:root {
    --page-bg: #2c1810;         /* Rich Dark Leather */
    --card-bg: #fdfbf7;         /* Warm Antique Paper */
    --text-on-dark: #f4f1ea;    /* Cream text for headers */
    --text-on-light: #3e2723;   /* Coffee text for inside cards */
    --accent-gold: #d88d2a;     /* Brand Gold */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Merriweather', serif;
    --font-ui: 'DM Sans', sans-serif;
}

body {
    background-color: var(--page-bg);
    color: var(--text-on-dark);
    font-family: var(--font-body);
}

/* --- HEADER --- */
.circle-header {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 3rem;
    padding: 0 1rem;
}

.circle-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.circle-header .subtitle {
    font-family: var(--font-ui);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.circle-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

/* --- THE SEATS GRID --- */
.seats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsive columns */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    padding: 0 1rem;
}

/* --- SEAT CARD (Base Style) --- */
.seat-card {
    background-color: var(--card-bg);
    color: var(--text-on-light);
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* Slightly sharper corners for elegance */
    padding: 2.5rem 2rem;
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Deep shadow on dark bg */
}

.seat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: var(--accent-gold);
}

/* The "Seat 01" Badge */
.seat-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8d6e63;
    border: 1px solid #d7ccc8;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background-color: #fff;
}

/* Icons */
.seat-icon {
    font-size: 3.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Typography inside Card */
.seat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-on-light);
    font-weight: 700;
}

.seat-role {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold); /* Gold Text */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.seat-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #5d4037;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; 
}

/* --- STATUS INDICATORS --- */
.seat-status {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Status Colors - Refined for Sanctuary Theme */
.open { 
    background-color: #f5f5f5; 
    color: #9e9e9e; 
    border: 1px solid #eeeeee;
}
.open .status-dot { background-color: #bdbdbd; }

.pending { 
    background-color: #fff8e1; /* Light Gold BG */
    color: #f57f17; 
    border: 1px solid #ffe0b2;
}
.pending .status-dot { background-color: #ffb300; }

.active { 
    background-color: #e8f5e9; /* Light Green BG */
    color: #2e7d32; 
    border: 1px solid #c8e6c9;
}
.active .status-dot { background-color: #43a047; }


/* --- JOIN SECTION (Bottom) --- */
.join-table {
    text-align: center;
    background-color: #1e100a; /* Even darker brown for contrast */
    color: var(--text-on-dark);
    padding: 6rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.join-table h2 { 
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
} 

.join-table p { 
    font-family: var(--font-body);
    font-size: 1.1rem;
    max-width: 600px; 
    margin: 0 auto 2.5rem auto; 
    opacity: 0.8; 
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #2c1810; /* Dark Text on Gold Button */
    padding: 1rem 3rem;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #ffb74d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 141, 42, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .circle-header h1 { font-size: 2.5rem; }
    .seats-grid { padding: 0 1rem; }
}

