/* ============================================
   ROMANTIC CLASSIC THEME
   Klasik romantik tasarım - kalpler, pembe tonlar
   ============================================ */

/* Tema Renkleri */
:root {
    --romantic-primary: #ff6b9d;
    --romantic-secondary: #c44569;
    --romantic-accent: #ffa502;
    --romantic-light: #ffe5ec;
    --romantic-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --romantic-gradient-alt: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Body Background */
body.romantic-theme {
    background: linear-gradient(to bottom, #ffe5ec 0%, #ffffff 100%);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
    background: var(--romantic-gradient);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Floating Hearts Background */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatHeart 10s infinite ease-in-out;
}

.floating-heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.floating-heart:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
}

.floating-heart:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
}

.floating-heart:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
}

.floating-heart:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
}

.floating-heart:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
}

.floating-heart:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
}

.floating-heart:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
}

.floating-heart:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
}

@keyframes floatHeart {
    0% {
        bottom: -10%;
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(100px) rotate(180deg);
    }

    100% {
        bottom: 110%;
        transform: translateX(-100px) rotate(360deg);
    }
}

/* Message Section */
.message-section {
    padding: 5rem 0;
    background: white;
}

.message-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(196, 69, 105, 0.1) 100%);
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.message-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--romantic-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.message-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-color);
    text-align: center;
    font-style: italic;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white 0%, var(--romantic-light) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: white;
}

.video-container {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Memories Section */
.memories-section {
    padding: 5rem 0;
    background: var(--romantic-light);
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.memory-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.memory-card::before {
    content: '❤️';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4rem;
    opacity: 0.1;
}

.memory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.memory-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.memory-title {
    font-size: 1.5rem;
    color: var(--romantic-primary);
    margin-bottom: 1rem;
}

.memory-text {
    color: var(--dark-color);
    line-height: 1.6;
}

.memory-date {
    font-size: 0.875rem;
    color: var(--romantic-secondary);
    margin-top: 1rem;
    font-weight: 600;
}

/* Countdown Section */
.countdown-section {
    padding: 5rem 0;
    background: var(--romantic-gradient);
    color: white;
    text-align: center;
}

.countdown-section .section-title h2,
.countdown-section .section-title p {
    color: white;
}

#countdown {
    margin-top: 3rem;
}

#countdown .countdown-value {
    color: white;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer-heart {
    font-size: 2rem;
    color: var(--romantic-primary);
    margin-bottom: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .message-box {
        padding: 2rem;
    }

    .message-text {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .memories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .message-box {
        padding: 1.5rem;
    }

    .gallery-item img {
        height: 250px;
    }
}