/* =========================================================
   Fanclub Section
   ========================================================= */

.fanclub-section {
    position: relative;
    min-height: 120vh;
    overflow: hidden;
}

.fanclub-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    will-change: transform;
    z-index: 0;
}

.fanclub-content {
    position: relative;
    z-index: 2;
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 120px 8%;
}

/* =========================================================
   Fanclub Box
   ========================================================= */

.fanclub-box {
    background: rgba(242, 230, 216, 0.95);
    padding: 40px;
    border-radius: 12px; /* match bio */
    max-width: 420px;
    border: 2px solid var(--brown); /* exact match */
}

.fanclub-box h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.fanclub-box p {
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.fanclub-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fanclub-box input[type="email"],
.fanclub-box button {
    width: 100%;
}

.fanclub-box input[type="email"] {
    padding: 14px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #ffffff;
}

.fanclub-box button {
    padding: 14px;
    font-size: 16px;
    background: var(--brown);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fanclub-box button:hover {
    opacity: 0.9;
}

.fanclub-microcopy {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.7;
}
/* =========================================================
   Fanclub Page
   ========================================================= */

.fanclub-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.fanclub-page h2 {
    margin-bottom: 10px;
}

.fanclub-page p {
    margin-bottom: 30px;
}


/* =========================================================
   Fanclub Form
   ========================================================= */

.fanclub-page form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fanclub-page label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.fanclub-page input[type="text"] {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #b9a999;
    border-radius: 4px;
    background: #fff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.fanclub-page input[type="text"]:focus {
    outline: none;
    border-color: #4A3A2E;
    box-shadow: 0 0 0 2px rgba(74, 58, 46, 0.15);
}

.fanclub-page button {
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    background: #4A3A2E;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.fanclub-page button:hover {
    background: #3a2d23;
}

.fanclub-page button:active {
    transform: translateY(1px);
}
.unsubscribe-link {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
    text-decoration: underline;
}