/* =============================================
   WEDDING INVITATION - PREMIUM TEMPLATE
   ============================================= */

/* CSS Variables */
:root {
    --primary: #D4AF37;
    --primary-dark: #B8972E;
    --primary-light: #F0E4C3;
    --secondary: #0a1628;
    --accent: #722F37;
    --text: #2D2D2D;
    --text-light: #666666;
    --white: #FFFFFF;
    --cream: #FDF8F2;
    --gold-gradient: linear-gradient(135deg, #D4AF37, #F5E7C6, #D4AF37);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   LOADER
   ============================================= */
.loader {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.hearts {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.hearts i {
    font-size: 2rem;
    color: var(--primary);
    animation: heartbeat 1.2s infinite;
}

.heart2 {
    animation-delay: 0.3s;
}

.loader-text {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--primary);
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav-logo {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav.scrolled .nav-menu a {
    color: var(--text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 30px;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--text);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 40px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--text) !important;
        font-size: 1.1rem;
    }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('img/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.85));
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 30px;
}

.bride-name,
.groom-name {
    font-family: var(--font-script);
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--white);
    display: block;
}

.ampersand {
    font-family: var(--font-script);
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--primary);
    display: block;
    margin: 10px 0;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-date p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 2px;
}

.date-ornament {
    width: 60px;
    height: 1px;
    background: var(--primary);
}

.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: float 2s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =============================================
   SECTION STYLES
   ============================================= */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--secondary);
}

/* =============================================
   COUNTDOWN SECTION
   ============================================= */
.countdown-section {
    background: var(--secondary);
    text-align: center;
}

.countdown-section .section-subtitle {
    color: var(--primary-light);
    opacity: 0.8;
}

.countdown-section .section-title {
    color: var(--white);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 100px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
}

.countdown-separator {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.countdown-message {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-message i {
    color: var(--primary);
    animation: heartbeat 1.2s infinite;
}

/* =============================================
   STORY / TIMELINE SECTION
   ============================================= */
.story-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: var(--shadow);
}

.timeline-content {
    width: 45%;
    background: var(--cream);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.timeline-date {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 80px;
    }

    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
    }
}

/* =============================================
   COUPLE SECTION
   ============================================= */
.couple-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f2744 100%);
    padding: 100px 0;
}

.couple-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.couple-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.couple-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.couple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.couple-name {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.couple-role {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.couple-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.couple-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.couple-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.couple-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.couple-center {
    text-align: center;
}

.couple-heart {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    animation: heartbeat 1.5s infinite;
}

.couple-quote {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-light);
    max-width: 200px;
}

@media (max-width: 900px) {
    .couple-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .couple-center {
        order: -1;
    }
}

/* =============================================
   CEREMONY SECTION
   ============================================= */
.ceremony-section {
    background: var(--cream);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.event-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.event-details {
    margin-bottom: 25px;
}

.event-details p {
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.event-details i {
    color: var(--primary);
}

.event-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.event-map-btn:hover {
    background: var(--primary);
}

/* Map */
.map-container {
    margin-top: 50px;
}

.map-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-title i {
    color: var(--primary);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    min-height: 400px;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary), #0f2744);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 15px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
}

.map-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.load-map-btn {
    padding: 15px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.load-map-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.map-iframe {
    width: 100%;
    height: 450px;
}

.map-iframe.hidden {
    display: none;
}

/* =============================================
   DRESS CODE SECTION
   ============================================= */
.dresscode-section {
    background: var(--white);
    text-align: center;
}

.dresscode-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.color-palette {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.color-item {
    text-align: center;
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color);
    display: block;
    margin: 0 auto 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.color-item:hover .color-swatch {
    transform: scale(1.1);
}

.color-name {
    font-size: 0.9rem;
    color: var(--text-light);
}

.dresscode-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--cream);
    border-radius: 30px;
}

.dresscode-note i {
    color: var(--primary);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

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

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* =============================================
   GIFTS SECTION
   ============================================= */
.gifts-section {
    background: linear-gradient(135deg, var(--secondary), #0f2744);
}

.gifts-section .section-subtitle {
    color: var(--primary-light);
}

.gifts-section .section-title {
    color: var(--white);
}

.gifts-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gift-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.gift-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

.gift-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.gift-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.gift-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.gift-code {
    color: var(--primary) !important;
    font-weight: 600;
    margin: 15px 0 !important;
}

.gift-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
}

.gift-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.gift-note {
    color: var(--primary);
    font-style: italic;
}

/* =============================================
   MODALS
   ============================================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: modalIn 0.4s;
}

@keyframes modalIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.modal-icon.success {
    background: #4CAF50;
}

.modal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.honeymoon-account {
    background: var(--cream);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.honeymoon-account p {
    margin-bottom: 8px;
    color: var(--text);
}

.copy-btn {
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--primary-dark);
}

/* =============================================
   RSVP SECTION
   ============================================= */
.rsvp-section {
    background: var(--white);
}

.rsvp-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cream);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.rsvp-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.rsvp-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .rsvp-form {
        padding: 30px 20px;
    }
}

/* =============================================
   SHARE SECTION
   ============================================= */
.share-section {
    background: var(--cream);
    padding: 80px 0;
}

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

.share-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.share-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.hashtag {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.share-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.email {
    background: var(--secondary);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--secondary);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-hearts {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-hearts i {
    color: var(--primary);
    font-size: 1.2rem;
    animation: heartbeat 1.5s infinite;
}

.footer-hearts i:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-hearts i:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-names {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-date {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-message {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

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

.footer-credits i {
    color: var(--accent);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-aos] {
    transition-duration: 800ms;
}