/* Layout Clássico - Time Love */

/* Variáveis específicas do layout */
:root {
    --classic-primary: #8B4513;
    --classic-secondary: #D2691E;
    --classic-accent: #FFD700;
    --classic-text: #2F2F2F;
    --classic-light: #F5F5DC;
    --classic-border: #DEB887;
    --classic-shadow: rgba(139, 69, 19, 0.15);
    --classic-gradient: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    --classic-soft-shadow: 0 8px 32px rgba(139, 69, 19, 0.12);
}

/* Layout Base */
.classic-layout {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 50%, #FFFAF0 100%);
    color: var(--classic-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Clássico */
.classic-header {
    background: var(--classic-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
    box-shadow: var(--classic-soft-shadow);
    position: relative;
    overflow: hidden;
}

.classic-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.couple-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.couple-names h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #FFFFFF, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.heart-divider {
    font-size: 2rem;
    color: var(--classic-accent);
    animation: heartbeat 2s infinite;
}

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

.relationship-date {
    font-size: 1.2rem;
    opacity: 0.9;
}

.relationship-date span {
    font-weight: 500;
    color: var(--classic-accent);
}

/* Main Content */
.classic-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--classic-primary);
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--classic-text);
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--classic-shadow);
    border: 5px solid white;
}

/* Time Counter */
.time-counter {
    padding: 4rem 0;
    background: linear-gradient(135deg, white 0%, #FFFEF7 100%);
    border-radius: 25px;
    margin: 3rem 0;
    box-shadow: var(--classic-soft-shadow);
    border: 1px solid rgba(222, 184, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.time-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.counter-content {
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.counter-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--classic-primary);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.counter-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--classic-light) 0%, white 50%, #FFFEF7 100%);
    border-radius: 20px;
    border: 2px solid rgba(222, 184, 135, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.counter-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.15);
    border-color: var(--classic-accent);
}

.counter-item:hover::before {
    left: 100%;
}

.counter-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--classic-primary);
    line-height: 1;
}

.counter-label {
    font-size: 1rem;
    color: var(--classic-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Photo Gallery */
.photo-gallery {
    padding: 4rem 0;
}

.gallery-content {
    text-align: center;
}

.gallery-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--classic-primary);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--classic-shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

/* Love Message */
.love-message {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--classic-primary) 0%, var(--classic-secondary) 100%);
    color: white;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.message-icon {
    font-size: 3rem;
    color: var(--classic-accent);
    margin-bottom: 1rem;
}

.message-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.message-author {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--classic-accent);
}

/* Footer */
.classic-footer {
    background: var(--classic-primary);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-heart {
    font-size: 2rem;
    color: var(--classic-accent);
    margin-bottom: 1rem;
    animation: heartbeat 2s infinite;
}

.footer-content p {
    margin: 0;
    opacity: 0.8;
}

/* Music Player - usando estilos do music-player.css */
.classic-layout .music-player {
    background: rgba(139, 69, 19, 0.9);
    border: 1px solid rgba(205, 133, 63, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .couple-names {
        flex-direction: column;
        gap: 1rem;
    }
    
    .couple-names h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content,
    .counter-content,
    .message-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .classic-header {
        padding: 2rem 0;
    }
    
    .couple-names h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-item {
        padding: 1rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}
