/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Tablet Layout (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile & Tablet Navigation (max-width: 900px) */
@media (max-width: 900px) {
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: rgba(7, 19, 15, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-cta {
        display: inline-block;
        margin-top: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (max-width: 600px) */
@media (max-width: 600px) {
    :root {
        --space-xl: 3.75rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title, .page-title {
        font-size: 2rem;
    }

    .altar-frame {
        padding: 5px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }
    
    .footer-desc {
        margin: 1rem auto 0;
    }

    .social-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .social-disclaimer p {
        text-align: center;
    }
    
    .glass-container {
        padding: 1.5rem;
    }
    
    .quote-block {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
}