/* templates/template-elegan-gold.css */
:root {
    --primary-color: #C8A96E;
    --primary-dark: #A8884A;
    --primary-light: #E8D5A3;
    --secondary-color: #2C2C2C;
    --bg-color: #FAF6F0;
    --text-color: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --gold-gradient: linear-gradient(135deg, #C8A96E 0%, #E8D5A3 50%, #C8A96E 100%);
    --shadow: 0 4px 25px rgba(200, 169, 110, 0.15);
    --shadow-hover: 0 8px 35px rgba(200, 169, 110, 0.25);
    --border-radius: 12px;
    --font-family: 'Georgia', serif;
}

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

.hero-section::before {
    content: '✦';
    position: absolute;
    font-size: 8rem;
    color: rgba(200, 169, 110, 0.05);
    top: 20%;
    right: 10%;
}

.hero-section::after {
    content: '✦';
    position: absolute;
    font-size: 6rem;
    color: rgba(200, 169, 110, 0.05);
    bottom: 20%;
    left: 10%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    max-width: 650px;
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.hero-content .gold-border {
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.hero-content .subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.hero-content .main-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.section-title .gold-ornament {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
}

/* Story Cards */
.story-timeline {
    position: relative;
    padding: 20px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-gradient);
}

.story-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.story-card .story-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    text-align: center;
}

/* Venue */
.venue-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(200, 169, 110, 0.2);
}

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

.venue-card .btn-gold {
    background: var(--gold-gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* RSVP */
.rsvp-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.rsvp-card .form-control {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.rsvp-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(200, 169, 110, 0.25);
}

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

.footer a {
    color: var(--primary-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .hero-content .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}