/* SMASHD Franchise Page Styles */

/* Navigation Bar Overrides for Franchise Page */
.nav-bar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Rubik Mono One', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 44, 1, 0.2);
    border: 1px solid rgba(255, 44, 1, 0.3);
    color: #FF2C01;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 44, 1, 0.1) 50%, rgba(0, 61, 255, 0.1) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('SMASHD LOGO 800.png') center/contain no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background-image: url('SMASHD LOGO 800.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 0px #000;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.investment-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 44, 1, 0.9);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 44, 1, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.investment-amount {
    font-family: 'Rubik Mono One', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 0px #000;
    line-height: 1;
}

.investment-label {
    font-family: 'Rubik Mono One', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Section Titles */
.section-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 0.05em;
}

/* Why SMASH'D Section */
.why-smashd-container {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 44, 1, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: #FF2C01;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.benefit-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Investment Breakdown */
.investment-container {
    padding: 6rem 2rem;
    background: rgba(0, 61, 255, 0.05);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.investment-item {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 61, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.investment-item:hover {
    border-color: rgba(0, 61, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 61, 255, 0.2);
}

.investment-item-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.3rem;
    font-weight: 900;
    color: #003DFF;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.investment-item-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Franchise Form */
.franchise-form-container {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
}

.franchise-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-section-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff8c5a;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-align: center;
}

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

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

.form-group label {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c5a;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 140, 90, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #000;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #ff8c5a;
    border-color: #ff8c5a;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.franchise-submit-button {
    background: linear-gradient(135deg, #ff8c5a 0%, #FF2C01 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 auto;
    display: block;
    box-shadow: 0 6px 20px rgba(255, 44, 1, 0.3);
}

.franchise-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 44, 1, 0.4);
}

.franchise-submit-button:active {
    transform: translateY(-1px);
}

.franchise-message {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: bold;
    min-height: 20px;
    font-family: 'Lato', sans-serif;
}

.franchise-message.loading {
    background: rgba(255, 140, 90, 0.2);
    color: #ff8c5a;
    border: 1px solid rgba(255, 140, 90, 0.3);
}

.franchise-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.franchise-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Compliance Footer */
.compliance-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 44, 1, 0.1);
    border: 2px solid rgba(255, 44, 1, 0.2);
    border-radius: 15px;
    text-align: center;
}

.compliance-footer p {
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.compliance-footer p:last-child {
    margin-bottom: 0;
}

.compliance-footer strong {
    color: #FF2C01;
    font-weight: 700;
}

/* FAQ Section */
.faq-container {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    color: #ff8c5a;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.faq-answer {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* CTA Section */
.cta-container {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 44, 1, 0.1) 0%, rgba(0, 61, 255, 0.1) 100%);
    text-align: center;
}

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

.cta-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF2C01 0%, #ff8c5a 100%);
    color: white;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 44, 1, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 44, 1, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-section {
        padding: 100px 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .investment-badge {
        padding: 1.5rem 2rem;
    }
    
    .investment-amount {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .why-smashd-container,
    .investment-container,
    .franchise-form-container,
    .faq-container,
    .cta-container {
        padding: 4rem 1rem;
    }
    
    .benefits-grid,
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .investment-badge {
        padding: 1rem 1.5rem;
    }
    
    .investment-amount {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .why-smashd-container,
    .investment-container,
    .franchise-form-container,
    .faq-container,
    .cta-container {
        padding: 3rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .franchise-submit-button,
    .cta-button {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}
