/* Global Styles */
:root {
    --primary-color: #2a1a12;
    --secondary-color: #503d33;
    --background-color: #f5f1dd; /* Changed to match the logo's background color */
    --accent-color: #917c6f;
    --light-color: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Header Styles */
.logo {
    max-width: 120px;
    margin-bottom: 1rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
    padding: 20px 0;
}

.logo-full {
    width: 200px !important;
    height: auto !important;
    margin-bottom: 2rem;
    background-color: transparent;
    display: inline-block;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.subheading {
    font-size: 1.25rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Form Styles */
.subscription-card {
    border: none;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background-color: var(--light-color);
}

.form-control {
    height: 54px;
    border: 1px solid rgba(42, 26, 18, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(42, 26, 18, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.section-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.feature-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(42, 26, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer Styles */
.footer {
    background-color: #2a1a12;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Video Section Styles */
.video-section {
    background-color: var(--background-color); /* Use the same background color as the site */
    border-top: 1px solid rgba(42, 26, 18, 0.1);
    border-bottom: 1px solid rgba(42, 26, 18, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Early Access Button Styles */
.early-access-btn {
    background-color: #5D1725;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 32px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.early-access-btn:hover {
    background-color: #7A1F2F;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.early-access-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .main-heading {
        font-size: 1.8rem;
    }
    
    .subheading {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* New responsive classes for mobile optimization */
    .responsive-logo {
        max-width: 180px !important;
    }
    
    .responsive-heading {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }
    
    .responsive-subheading {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .cta-section {
        padding-top: 10px !important;
    }
    
    .responsive-cta-heading {
        font-size: 24px !important;
    }
}

@media (max-width: 575.98px) {
    .main-heading {
        font-size: 1.5rem;
    }
    
    .subheading {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    /* Even smaller screens */
    .responsive-logo {
        max-width: 150px !important;
        margin-bottom: 10px !important;
    }
    
    .responsive-heading {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .responsive-subheading {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
}

/* Hidden content for SEO - visible to crawlers but hidden from users */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.seo-content {
    color: transparent;
    font-size: 0;
}
