/* === Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.1s ease, width 0.1s ease, height 0.1s ease;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: transform 0.15s ease, border-color 0.15s ease, border-width 0.15s ease;
}

.custom-cursor.hover {
    transform: scale(1.5);
    background: linear-gradient(135deg, var(--gold), var(--primary-green));
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3);
}

.custom-cursor.hover::before {
    transform: scale(2);
    border-color: rgba(212, 175, 55, 0.5);
    border-width: 2px;
}

.custom-cursor.click {
    transform: scale(0.8);
    background: var(--primary-green);
    box-shadow: 
        0 0 15px rgba(27, 122, 122, 0.6),
        0 0 30px rgba(27, 122, 122, 0.3);
}

.custom-cursor.click::before {
    transform: scale(1.5);
    border-color: rgba(27, 122, 122, 0.4);
}

.custom-cursor.text {
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: var(--gold);
    transform: none;
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.custom-cursor.text::before {
    display: none;
}

/* === CSS Variables === */
:root {
    --sea-green: #2E8B8B;
    --primary-green: #1B7A7A;
    --dark-green: #145454;
    --light-green: #4A9F9F;
    --mint-green: #7FCDCD;
    --sage-green: #8FBC8F;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --cream: #FEFEFE;
    --light-beige: #F9F7F4;
    --shadow-green: rgba(46, 139, 139, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.08);
    --text-dark: #1A4A4A;
    --text-medium: #2E5E5E;
    --text-light: #6B8E8E;
    
    /* Typography System - Only 3 fonts for consistency */
    --font-display: 'Playfair Display', serif;    /* For headings and titles */
    --font-script: 'Dancing Script', cursive;     /* For couple names only */
    --font-body: 'Inter', sans-serif;             /* For all body text */
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 139, 139, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--light-beige) 0%, var(--cream) 100%);
    overflow-x: hidden;
    position: relative;
}

/* Particle Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 6s infinite linear;
}

.particle:nth-child(2n) {
    background: var(--primary-green);
    animation-duration: 8s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(3n) {
    background: var(--mint-green);
    animation-duration: 10s;
    width: 2px;
    height: 2px;
}

@keyframes elegantFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-15px) rotate(2deg) scale(1.05); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-25px) rotate(-3deg) scale(1.1); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) rotate(1deg) scale(1.05); 
        opacity: 0.6;
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

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

/* === Hero Section === */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(175, 238, 238, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 50%, var(--sea-green) 100%);
    overflow: hidden;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floral-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="floral" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23D4AF37" opacity="0.3"/><path d="M20 25 Q25 20 30 25 Q25 30 20 25" fill="%23D4AF37" opacity="0.2"/><path d="M25 20 Q30 25 25 30 Q20 25 25 20" fill="%23D4AF37" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23floral)"/></svg>') repeat;
    opacity: 0.4;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    animation: elegantFloat 8s ease-in-out infinite;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.floating-element.star {
    top: 20%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation-delay: -1s;
}

.floating-element.petal {
    top: 70%;
    right: 15%;
    width: 15px;
    height: 25px;
    background: var(--light-gold);
    border-radius: 50% 50% 50% 0;
    animation-delay: -3s;
}

.floating-element.lantern {
    top: 40%;
    right: 5%;
    width: 12px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    animation-delay: -5s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(27, 122, 122, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Wedding Illustration */
.hero-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="30" r="8" fill="%23D4AF37" opacity="0.8"/><path d="M30 50 C30 35, 50 20, 50 35 C50 20, 70 35, 70 50 C70 65, 50 80, 50 65 C50 80, 30 65, 30 50 Z" fill="%23D4AF37" opacity="0.6"/><circle cx="35" cy="45" r="3" fill="%23FFFFFF" opacity="0.8"/><circle cx="65" cy="45" r="3" fill="%23FFFFFF" opacity="0.8"/><path d="M42 60 Q50 65 58 60" stroke="%23FFFFFF" stroke-width="2" fill="none" opacity="0.9"/></svg>') center/contain no-repeat;
    animation: floatGentle 4s ease-in-out infinite;
}

@keyframes floatGentle {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.decorative-border {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.7) 20%, var(--gold) 50%, rgba(212, 175, 55, 0.7) 80%, transparent 100%);
    margin: 30px 0;
    position: relative;
}

.decorative-border::before,
.decorative-border::after {
    content: '✦';
    position: absolute;
    top: -10px;
    color: var(--gold);
    font-size: 20px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: twinkle 3s ease-in-out infinite alternate;
}

.decorative-border.top::before { left: -15px; }
.decorative-border.top::after { right: -15px; animation-delay: 1s; }
.decorative-border.bottom::before { left: -15px; animation-delay: 2s; }
.decorative-border.bottom::after { right: -15px; animation-delay: 0.5s; }

@keyframes twinkle {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

.couple-names {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 600;
    margin: 25px 0 35px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    position: relative;
}

.bride-name, .groom-name {
    display: block;
    margin: 12px 0;
    position: relative;
    opacity: 0;
    animation: nameSlideIn 0.8s ease-out forwards;
}

.groom-name {
    animation-delay: 0.3s;
}

.bride-name {
    animation-delay: 0.6s;
}

.heart-icon {
    color: var(--gold);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 18px 0;
    display: block;
    opacity: 0;
    animation: heartGlow 0.8s ease-out 0.9s forwards, heartPulse 3s ease-in-out 1.5s infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

@keyframes nameSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartGlow {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(212, 175, 55, 1);
    }
}

.welcome-message {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: messageSlideIn 0.8s ease-out 1.2s forwards;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-message::before,
.welcome-message::after {
    content: '"';
    font-size: 1.8em;
    color: var(--gold);
    opacity: 0.7;
    position: absolute;
    font-family: serif;
    animation: quoteGlow 0.6s ease-out 1.5s forwards;
}

.welcome-message::before {
    left: -18px;
    top: -8px;
}

.welcome-message::after {
    right: -18px;
    bottom: -18px;
}

@keyframes quoteGlow {
    from {
        opacity: 0;
        text-shadow: none;
    }
    to {
        opacity: 0.8;
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
}

/* === Section Cards === */
.section-card {
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    border-radius: 25px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: 
        0 10px 30px var(--shadow-green),
        0 0 0 1px rgba(46, 139, 139, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    transform: translateY(50px);
}

/* Corner Ornaments */
.section-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g opacity="0.15"><path d="M5 5 Q25 5 45 25 Q25 45 5 45 Q5 25 25 25 Q45 25 45 5" fill="none" stroke="%232E8B8B" stroke-width="2"/><circle cx="25" cy="25" r="3" fill="%23D4AF37"/></g></svg>') center/contain no-repeat;
    animation: fadeInRotate 1s ease-out 0.5s both;
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.section-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Effect for Interactive Elements */
.magnetic {
    transition: transform 0.3s ease;
}

.magnetic:hover {
    transform: translate(var(--x, 0), var(--y, 0));
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--sea-green), var(--mint-green), var(--gold));
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.decorative-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--sea-green), var(--gold));
    margin: 0 auto 40px;
    position: relative;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '◊';
    position: absolute;
    top: -8px;
    color: var(--gold);
    font-size: 16px;
}

.decorative-divider::before { left: -20px; }
.decorative-divider::after { right: -20px; }

/* === Event Details === */
.event-details-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-beige) 0%, rgba(175, 238, 238, 0.1) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.event-details-section::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 50px;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.3"><circle cx="50" cy="20" r="15" fill="%23D4AF37"/><rect x="45" y="35" width="10" height="40" fill="%232E8B8B"/><circle cx="30" cy="70" r="8" fill="%23D4AF37"/><circle cx="70" cy="70" r="8" fill="%23D4AF37"/><path d="M20 80 Q30 75 40 80 Q50 85 60 80 Q70 75 80 80" stroke="%232E8B8B" stroke-width="2" fill="none"/></g></svg>') center/contain no-repeat;
    animation: floatSlow 6s ease-in-out infinite;
}

.event-details-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.25"><path d="M50 10 L60 30 L80 30 L65 45 L70 65 L50 55 L30 65 L35 45 L20 30 L40 30 Z" fill="%23D4AF37"/><circle cx="50" cy="80" r="12" fill="%232E8B8B" opacity="0.6"/></g></svg>') center/contain no-repeat;
    animation: floatSlow 8s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(175, 238, 238, 0.15) 100%);
    border-radius: 18px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 4px 10px rgba(46, 139, 139, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 139, 139, 0.2);
}

.event-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--sea-green));
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(46, 139, 139, 0.25);
}

.event-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.event-date {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.event-time {
    font-family: var(--font-body);
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
}

.venue-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.maps-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--sea-green));
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(46, 139, 139, 0.2);
}

.maps-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 139, 139, 0.35);
    background: linear-gradient(135deg, var(--sea-green), var(--mint-green));
}

/* === Blessings Section === */
.blessings-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-beige) 0%, rgba(143, 188, 143, 0.08) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.blessings-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.2"><path d="M50 5 Q65 25 85 15 Q75 35 95 50 Q75 65 85 85 Q65 75 50 95 Q35 75 15 85 Q25 65 5 50 Q25 35 15 15 Q35 25 50 5 Z" fill="%23D4AF37"/><circle cx="50" cy="50" r="20" fill="%23FFFFFF" opacity="0.8"/><path d="M40 50 Q50 40 60 50 Q50 60 40 50" fill="%232E8B8B"/></g></svg>') center/contain no-repeat;
    animation: spin 15s linear infinite;
}

.blessings-section::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 60px;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.15"><circle cx="50" cy="50" r="30" fill="none" stroke="%23D4AF37" stroke-width="3"/><path d="M30 50 Q50 30 70 50 Q50 70 30 50" fill="%232E8B8B" opacity="0.6"/><circle cx="50" cy="50" r="8" fill="%23FFFFFF"/></g></svg>') center/contain no-repeat;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.blessing-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.arabic-blessing {
    margin-bottom: 30px;
}

.bismillah {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    direction: rtl;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.blessing-translation {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
}

.blessing-text p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--text-dark);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.animated-elements .floating-element {
    position: absolute;
    animation: floatSlow 8s ease-in-out infinite;
}

.petal-1 {
    top: 20%;
    left: 10%;
    width: 12px;
    height: 20px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    opacity: 0.6;
}

.petal-2 {
    bottom: 30%;
    right: 15%;
    width: 10px;
    height: 16px;
    background: var(--sea-green);
    border-radius: 50% 50% 0 50%;
    opacity: 0.5;
    animation-delay: -2s;
}

.star-1 {
    top: 60%;
    left: 20%;
    width: 16px;
    height: 16px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.7;
    animation-delay: -4s;
}

.lantern-1 {
    top: 30%;
    right: 25%;
    width: 8px;
    height: 14px;
    background: var(--sea-green);
    border-radius: 50%;
    opacity: 0.6;
    animation-delay: -6s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.8; }
}

/* === Closing Section === */
.closing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 50%, var(--sea-green) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-section::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.2"><path d="M20 30 Q30 10 50 30 Q70 10 80 30 Q70 50 50 70 Q30 50 20 30 Z" fill="%23D4AF37"/><path d="M35 40 Q50 25 65 40 Q50 55 35 40" fill="%23FFFFFF" opacity="0.8"/><circle cx="40" cy="35" r="3" fill="%23D4AF37"/><circle cx="60" cy="35" r="3" fill="%23D4AF37"/></g></svg>') center/contain no-repeat;
    animation: heartBeat 3s ease-in-out infinite;
}

.closing-section::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.15"><circle cx="25" cy="25" r="15" fill="%23D4AF37"/><circle cx="75" cy="25" r="15" fill="%23D4AF37"/><circle cx="25" cy="75" r="15" fill="%23D4AF37"/><circle cx="75" cy="75" r="15" fill="%23D4AF37"/><circle cx="50" cy="50" r="20" fill="%23FFFFFF" opacity="0.6"/></g></svg>') center/contain no-repeat;
    animation: floatGentle 5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: translateX(-50%) scale(1); }
    25% { transform: translateX(-50%) scale(1.1); }
    50% { transform: translateX(-50%) scale(1); }
    75% { transform: translateX(-50%) scale(1.05); }
}

.thank-you-message p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.couple-names-closing {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 600;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    letter-spacing: 2px;
}

.name-sneha, .name-naiem {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ampersand {
    color: var(--gold);
    font-size: 0.8em;
    font-style: italic;
}

.decorative-footer {
    margin-top: 50px;
}

.footer-pattern {
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><path d="M0 30 Q50 10 100 30 T200 30" stroke="%23D4AF37" stroke-width="2" fill="none"/><circle cx="50" cy="30" r="3" fill="%23D4AF37"/><circle cx="100" cy="30" r="3" fill="%23D4AF37"/><circle cx="150" cy="30" r="3" fill="%23D4AF37"/></svg>') center repeat-x;
    opacity: 0.8;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Mobile Responsive Design === */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 700px;
        padding: 60px 40px;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 50px 0;
        min-height: 70vh;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 60px 30px;
        margin: 0 15px;
        border-radius: 25px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .couple-names {
        font-size: clamp(2rem, 6.5vw, 3.2rem);
        margin: 20px 0 30px 0;
        letter-spacing: 1px;
        line-height: 1.1;
    }
    
    .welcome-message {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 30px;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .welcome-message::before {
        left: -12px;
        font-size: 1.5em;
    }
    
    .welcome-message::after {
        right: -12px;
        font-size: 1.5em;
    }
    
    .section-card {
        padding: 35px 25px;
        margin: 25px 10px;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
        margin-bottom: 25px;
    }
    
    .event-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
    
    .event-item {
        padding: 25px 20px;
        flex-direction: row;
        text-align: left;
        gap: 18px;
    }
    
    .event-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .event-content h3 {
        font-size: 1.2rem;
    }
    
    .maps-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .couple-names-closing {
        flex-direction: column;
        gap: 15px;
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }
    
    .decorative-border::before,
    .decorative-border::after {
        font-size: 18px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    /* Disable custom cursor on mobile */
    * {
        cursor: auto !important;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .hero-section {
        padding: 30px 0;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 50px 20px;
        margin: 0 10px;
        border-radius: 20px;
        max-width: 95%;
        min-height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .couple-names {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin: 15px 0;
        letter-spacing: 0.5px;
        line-height: 1.05;
    }
    
    .bride-name, .groom-name {
        margin: 8px 0;
    }
    
    .welcome-message {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 25px;
        padding: 0 5px;
        line-height: 1.4;
    }
    
    .welcome-message::before,
    .welcome-message::after {
        display: none; /* Hide quotes on very small screens */
    }
    
    .section-card {
        padding: 25px 18px;
        margin: 15px 8px;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 5.5vw, 1.9rem);
        margin-bottom: 20px;
    }
    
    .event-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .event-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 10px auto;
        flex-shrink: 0;
    }
    
    .event-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .event-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        width: 100%;
    }
    
    .event-date,
    .venue-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .event-time {
        font-size: 1rem;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .maps-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
        margin-top: 5px;
        width: auto;
        min-width: 200px;
    }
    
    .bismillah {
        font-size: clamp(1.2rem, 4.5vw, 1.6rem);
        margin-bottom: 10px;
    }
    
    .blessing-translation {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .blessing-text p {
        font-size: clamp(1rem, 3.8vw, 1.3rem);
        line-height: 1.5;
        max-width: 100%;
    }
    
    .couple-names-closing {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        gap: 10px;
        margin: 25px 0;
    }
    
    .thank-you-message p {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    /* Reduce visual effects on mobile for performance */
    .floating-elements {
        opacity: 0.2;
    }
    
    .floating-element {
        animation-duration: 10s; /* Slower animations */
    }
    
    .particles {
        opacity: 0.3;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
    
    /* Hide heavy illustrations on mobile */
    .event-details-section::before,
    .event-details-section::after,
    .blessings-section::before,
    .blessings-section::after {
        display: none;
    }
    
    .hero-content::before {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    
    .decorative-border::before,
    .decorative-border::after {
        font-size: 16px;
        top: -8px;
    }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-content {
        padding: 40px 15px;
        margin: 0 8px;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .couple-names {
        font-size: clamp(1.6rem, 9vw, 2.4rem);
    }
    
    .welcome-message {
        font-size: clamp(0.85rem, 4vw, 1rem);
        padding: 0 3px;
    }
    
    .section-card {
        padding: 20px 12px;
        margin: 12px 5px;
    }
    
    .event-item {
        padding: 20px 15px;
        width: 100%;
        max-width: none;
    }
    
    .event-content h3 {
        font-size: 1.1rem;
    }
    
    .event-date,
    .venue-name {
        font-size: 1rem;
    }
    
    .event-time {
        font-size: 0.9rem;
    }
    
    .maps-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 180px;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 20px 25px;
    }
    
    .couple-names {
        margin: 10px 0;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .welcome-message {
        margin-bottom: 15px;
    }
}

/* === Print Styles === */
@media print {
    .floating-elements,
    .animated-elements {
        display: none;
    }
    
    .hero-section {
        height: auto;
        padding: 50px 0;
    }
    
    .section-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--light-gold);
    }
}