/* Responsive styles for RÉMANENCE website */

/* Tablets and smaller desktops */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 0 2rem;
    }
    
    .cover-image {
        max-height: 60vh;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .platforms {
        gap: 1.5rem;
    }
}

/* Tablets and large phones */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-bg-secondary);
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 1rem 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .btn-nav {
        display: inline-block;
        margin-top: 1rem;
    }
    
    .cover-image {
        max-height: 50vh;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: 3px 3px 0 0;
    }
    
    .form-group button {
        border-radius: 0 0 3px 3px;
    }
}

/* Small phones */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 3rem;
    }
    
    .cover-image {
        max-height: 40vh;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .platform {
        width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .dialogue {
        padding: 1.5rem;
    }
}
