/* Member Page Specific Styles */
main {
    background: radial-gradient(circle at 50% 50%, #111e38 0%, #080f1b 100%);
    min-height: 100vh;
    color: white;
}

.member-hero {
    background: transparent;
    color: white;
    padding: 10rem 8% 4rem;
    text-align: center;
    margin-bottom: 2rem;
}

.member-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 40%, #ae8a36 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.member-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.6;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 8% 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Split Layout */
@media (min-width: 900px) {
    .content-container {
        flex-direction: row;
        align-items: stretch;
    }

    .form-section, .map-section {
        flex: 1;
    }
}

/* Form Styles */
.form-section {
    background: rgba(17, 26, 46, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3.5rem 3rem;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.form-header p {
    color: #cbd5e1;
    font-size: 1.05rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    color: white;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--club-secondary-color);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(174, 138, 54, 0.2);
}

.form-group select option {
    background-color: #111e38;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--club-secondary-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(174, 138, 54, 0.35);
    filter: brightness(1.1);
}

/* Map Section */
.map-section {
    background: rgba(17, 26, 46, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.map-info h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.map-info p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd479;
    font-weight: 600;
    font-size: 1.02rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .member-hero {
        padding: 8rem 6% 4rem;
        margin-bottom: 2rem;
        border-radius: 0 0 24px 24px;
    }
    
    .member-hero h1 {
        font-size: 2.2rem;
    }
    
    .member-hero p {
        font-size: 1.05rem;
    }
    
    .content-container {
        padding: 0 6% 6rem;
        gap: 2rem;
    }
    
    .form-section {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .map-section {
        padding: 1rem;
        border-radius: 24px;
    }
    
    .map-wrapper {
        min-height: 300px;
    }
    
    .map-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}
