/* =========================================================
   Story Box
   ========================================================= */

.story-box {
    background: rgba(242, 230, 216, 0.96);
    color: var(--brown);
    border: 2px solid var(--brown);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
    padding: 70px 60px;
    max-width: 620px;
    border-radius: 18px;
    backdrop-filter: blur(2px);
}

.story-box h2 {
    margin-top: 0;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.story-box p {
    font-size: 18px;
    line-height: 1.9;
}


/* =========================================================
   Full Image Section
   ========================================================= */

.full-image {
    height: 100vh;
    background-size: cover;
    background-position: center;
}


/* =========================================================
   Event Card
   ========================================================= */

.event-card {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.event-image img {
    width: 260px;
    height: auto;
    display: block;
    border-radius: 6px;
}

.event-info h2 {
    margin: 0 0 10px 0;
}

.event-info a {
    text-decoration: none;
    color: var(--brown);
}

.event-date,
.event-time,
.event-location {
    margin: 6px 0;
}


/* =========================================================
   Form Base Styling
   ========================================================= */

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

input[type="email"] {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--brown);
    font-size: 16px;
    background: white;
}

button {
    padding: 14px 18px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    background: var(--brown);
    color: var(--cream);
}

button:hover {
    opacity: 0.9;
}

.fanclub-microcopy {
    font-size: 14px;
    opacity: 0.7;
}