/* templates/template-aesthetic-romance.css */
:root {
    --primary-color: #F8A5B5;
    --primary-dark: #E87A90;
    --primary-light: #FCCCD6;
    --secondary-color: #6C5B7B;
    --accent-color: #F8B4C8;
    --bg-color: #FFF5F7;
    --text-color: #4A3F47;
    --text-light: #7A6B74;
    --white: #FFFFFF;
    --shadow: 0 4px 25px rgba(248, 165, 181, 0.2);
    --shadow-hover: 0 8px 35px rgba(248, 165, 181, 0.3);
    --border-radius: 20px;
    --font-family: 'Great Vibes', cursive;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFF5F7 0%, #FCCCD6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section .floating-hearts {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.hero-section .floating-hearts:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.hero-section .floating-hearts:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; }
.hero-section .floating-hearts:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 2s; }
.hero-section .floating-hearts:nth-child(4) { bottom: 30%; right: 5%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(248, 165, 181, 0.3);
}

.hero-content .heart-divider {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 10px 0;
}

.hero-content .subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary-dark);
    font-weight: 300;
}

.hero-content .main-title {
    font-size: 4rem;
    font-family: var(--font-family);
    color: var(--secondary-color);
    margin: 15px 0;
}

.hero-content .event-date {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-family);
    color: var(--secondary-color);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
}

.section-title .heart-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 10px;
}

/* Story Cards */
.story-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(248, 165, 181, 0.2);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '♥';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    color: rgba(248, 165, 181, 0.1);
}

.story-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.story-card .story-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.story-card h4 {
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-size: 1.5rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03) rotate(-2deg);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 91, 123, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Venue */
.venue-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid rgba(248, 165, 181, 0.2);
}

.venue-card .venue-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* RSVP */
.rsvp-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(248, 165, 181, 0.2);
}

.rsvp-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rsvp-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer .heart {
    color: var(--primary-light);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .hero-content .main-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}