/* Fulham Page Styles - Classy Black & White Design */

/* Color Variables */
:root {
    --light-bg: #FFFFFF;
    --dark-bg: #000000;
}

/* Global Container */
.fulham-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HERO SECTION - Sparkling & Bold like Homepage */
.fulham-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #FFFFFF;
    padding: 0;
    max-width: 800px;
    margin-left: calc(2rem + 100px);
    margin-top: 2.5rem;
}

.coming-soon-badge {
    display: inline-block;
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 2s ease;
}

.coming-soon-badge:hover::before {
    left: 100%;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* BUTTON STYLES - Matching Homepage */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    min-width: 220px;
    text-align: center;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-primary:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 120px 0;
    background: #FFFFFF;
    color: #000000;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #000000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    background: #FFFFFF;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.benefit-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #000000;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-top: 1rem;
}

/* FOUNDING MEMBERS SECTION */
.founding-section {
    position: relative;
    color: #FFFFFF;
    padding: 120px 0;
    background: #000000;
    text-align: center;
}

.founding-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.founding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.founding-content {
    position: relative;
    z-index: 3;
}

.exclusive-badge {
    display: inline-block;
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.founding-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.founding-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founding-benefits {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.founding-benefit {
    text-align: center;
}

.benefit-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.founding-benefit p {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.urgency-container {
    margin-top: 3rem;
}

.urgency-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.9;
}

.urgency-line {
    width: 200px;
    height: 1px;
    background: #FFFFFF;
    margin: 0 auto;
    opacity: 0.5;
}

/* WAITLIST SECTION */
.waitlist-section {
    padding: 120px 0;
    background: #FFFFFF;
    color: #000000;
}

.waitlist-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    background: #FFFFFF;
    padding: 3rem;
    border: 2px solid #000000;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.waitlist-form:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    background: #FFFFFF;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: #000000;
}

.form-group input:focus {
    outline: none;
    border-color: #000000;
    background: #f8f9fa;
}

.form-group input::placeholder {
    color: #999;
    font-weight: 400;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin: 0;
}

.custom-checkbox {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid #000000;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.checkbox-label input:checked ~ .custom-checkbox {
    background-color: #000000;
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .custom-checkbox:after {
    display: block;
}

.checkbox-label .custom-checkbox:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WAITLIST PERKS */
.waitlist-perks {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.perk-item {
    text-align: center;
    max-width: 150px;
}

.perk-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #000000;
}

.perk-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* MESSAGES */
.messages {
    margin-bottom: 2rem;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.alert-error {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.alert-warning {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .fulham-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-large {
        width: 100%;
        padding: 0.625rem 1rem;
        min-width: unset;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .founding-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .founding-benefits {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .waitlist-perks {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .waitlist-form {
        padding: 2rem 1.5rem;
    }
    
    .benefits-section,
    .founding-section,
    .waitlist-section {
        padding: 80px 0;
    }
    
    .fulham-hero {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .founding-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
}