/* Mobile (max 768px) */
@media (max-width: 768px) {
    .logo-container {
        top: 15px;
        left: 15px;
    }
    
    .site-logo {
        width: 80px;
    }
    
    .music-toggle {
        width: 42px;
        height: 42px;
        font-size: 14px;
        top: 15px;
        right: 15px;
    }
    
    /* Gallery Responsive */
    .photo-gallery {
        display: none;
    }
    
    .hero {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .couple-photo-frame {
        width: 160px;
        height: 160px;
        margin-bottom: var(--spacing-md);
    }
    
    .couple-names {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .verse {
        font-size: 14px;
    }
    
    .wedding-date {
        font-size: 48px;
    }
    
    .wedding-time {
        font-size: 16px;
    }
    
    .venue {
        font-size: 20px;
    }
    
    .countdown-display {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .section-heading,
    .section-heading-light {
        font-size: 28px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .padrinhos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .details-section,
    .padrinhos-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .map-link {
        width: 100%;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Gallery Tablet */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .gallery-item {
        border-radius: 0;
    }
    
    .couple-photo-frame {
        width: 180px;
        height: 180px;
    }
    
    .couple-names {
        font-size: 48px;
    }
    
    .wedding-date {
        font-size: 56px;
    }
    
    .countdown-number {
        font-size: 36px;
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    .site-logo {
        width: 140px;
    }
    
    .couple-photo-frame {
        width: 220px;
        height: 220px;
    }
    
    .couple-names {
        font-size: 64px;
    }
    
    .wedding-date {
        font-size: 72px;
    }
    
    .countdown-number {
        font-size: 48px;
    }
    
    .section-heading,
    .section-heading-light {
        font-size: 40px;
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .couple-photo-frame {
        width: 240px;
        height: 240px;
    }
}

/* Print */
@media print {
    .logo-container,
    .music-toggle,
    .countdown-display,
    .map-link {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-md);
    }
}
