/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    margin-top: 80px;
    min-height: 40vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.about-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* About Content Section */
.about-content {
    padding: 80px 20px;
    background-color: #000;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-main {
    color: #fff;
}

.about-description {
    line-height: 1.6;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.story-text {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #fff;
    line-height: 1.6;
}

.contact-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #111;
    border-radius: 12px;
    border-left: 4px solid #00ff88;
}

.section-title {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-text {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.contact-link {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
}

.content-creators-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #111;
    border-radius: 12px;
    border-left: 4px solid #00ff88;
}

.creator-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.creator-form-btn {
    background-color: #00ff88;
    border: none;
    color: #000;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.creator-form-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    color: #333;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    z-index: 1001;
}

.close:hover {
    color: #000;
}

.form-container {
    padding: 40px;
}

.form-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.form-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.form-note {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #666;
}

.creator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff88;
}

.marketing-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.marketing-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.marketing-text {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #666;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.privacy-section {
    margin: 30px 0;
}

.privacy-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #666;
}

.mailchimp-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 6px;
}

.shield-icon {
    font-size: 20px;
    margin-top: 2px;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

.disclaimer-link {
    color: #00ff88;
    text-decoration: none;
}

.disclaimer-link:hover {
    text-decoration: underline;
}

.privacy-link {
    color: #00ff88;
    text-decoration: none;
}

.privacy-link:hover {
    color: #fff;
    text-decoration: underline;
}

.submit-btn {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* About Footer */
.about-footer {
    background-color: #111;
    padding: 40px 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 60px 20px;
    }
    
    .contact-section,
    .content-creators-section {
        padding: 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 40px 15px;
    }
    
    .contact-section,
    .content-creators-section {
        padding: 15px;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 98%;
    }
    
    .form-container {
        padding: 15px;
    }
}
