/* 
* Domain - Audit Financiar
* Responsive Stylesheet
*/

/* --- TABLETS --- */
@media screen and (max-width: 1023px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Header */
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    /* Despre */
    .despre-content {
        grid-template-columns: 1fr;
    }
    
    .text-column {
        padding-right: 0;
        margin-bottom: var(--spacing-md);
    }
    
    /* Timeline */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        left: 30px;
    }
    
    /* Cookie Popup */
    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup p {
        max-width: 100%;
        margin-bottom: var(--spacing-sm);
    }
}

/* --- MOBILE PHONES --- */
@media screen and (max-width: 767px) {
    html {
        font-size: 12px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        width: 95%;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 80vh;
    }
    
    /* Servicii */
    .servicii-grid {
        grid-template-columns: 1fr;
    }
    
    .serviciu-card {
        margin-bottom: var(--spacing-md);
    }
    
    /* Avantaje */
    .avantaje-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline */
    .timeline-content {
        padding: var(--spacing-sm);
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        margin-bottom: var(--spacing-md);
    }
    
    /* Contact Form */
    .form-container {
        padding: 0;
    }
}

/* --- SMALL MOBILE PHONES --- */
@media screen and (max-width: 480px) {
    html {
        font-size: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        left: 20px;
    }
}
