:root {
    --primary: #5d4037;
    --accent: #d32f2f;
    --paper: #fff8e1;
    --text: #212121;
    --gold: #fbc02d;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--paper);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.8;
}

.big-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    border: 4px double var(--primary);
    margin: 2rem auto;
    max-width: 400px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo-icon {
    font-size: 3rem;
    color: var(--accent);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 5rem 10%;
}

.book-card {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    border-left: 10px solid var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.membership-tiers {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    background: #efebe9;
}

.tier-card {
    background: white;
    padding: 3rem;
    border-top: 8px solid var(--accent);
    text-align: center;
    transition: 0.3s;
}

.tier-card:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.tier-card h2 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--primary); }
.tier-card .price { font-size: 2.5rem; font-weight: 900; margin-bottom: 2rem; }

.event-section {
    padding: 8rem 10%;
    background: white;
}

.event-h { text-align: center; font-family: var(--font-serif); font-size: 3rem; margin-bottom: 4rem; }

.event-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.event-date {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-weight: 700;
}

.reading-spaces {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.space-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.cta-box {
    padding: 8rem 5%;
    background: var(--primary);
    color: var(--paper);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sim-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 650px;
    width: 100%;
}

.sim-form input {
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
}

.styled-btn {
    color: white;
    background: var(--accent);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 900;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.styled-btn:hover { background: #b71c1c; }

.footer {
    background: var(--primary);
    color: white;
    padding: 6rem 10%;
    text-align: center;
}

.footer a { color: var(--gold); text-decoration: none; margin: 0 1rem; }

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Premium Footer Overrides --- */
.footer {
    padding: 8rem 8% !important;
    text-align: left !important;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
}

.footer h3, .footer h4 {
    font-size: 1.6rem !important;
    margin-bottom: 2rem !important;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block !important;
    padding: 0.5rem 0;
    opacity: 0.85;
}

.footer a:hover {
    opacity: 1;
    transform: translateX(8px);
}

.footer p {
    opacity: 0.85;
    margin-bottom: 0.8rem;
}
