/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Soft Aesthetic Color Palette */
    --primary-pink: #FFB6C1;
    --soft-pink: #FFC0CB;
    --light-pink: #FFE4E9;
    --rose-pink: #FF69B4;
    --deep-pink: #FF1493;
    
    --primary-purple: #E6B8FF;
    --soft-purple: #DDA0DD;
    --lavender: #E6E6FA;
    --deep-purple: #9370DB;
    
    --gold: #FFD700;
    --soft-gold: #F5DEB3;
    --rose-gold: #B76E79;
    
    --white: #FFFFFF;
    --off-white: #FFF9F9;
    --cream: #FFFAF0;
    
    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    --gradient-purple: linear-gradient(135deg, #E6B8FF 0%, #DDA0DD 100%);
    --gradient-sunset: linear-gradient(135deg, #FFB6C1 0%, #E6B8FF 50%, #FFD700 100%);
    --gradient-soft: linear-gradient(135deg, #FFF9F9 0%, #FFE4E9 50%, #E6E6FA 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(255, 182, 193, 0.2);
    --shadow-medium: 0 8px 30px rgba(255, 105, 180, 0.25);
    --shadow-strong: 0 12px 40px rgba(255, 105, 180, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 182, 193, 0.4);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-soft);
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   FLOATING FLOWERS ANIMATION
   =================================== */
.floating-flowers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.flower {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.flower:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.flower:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.flower:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 13s; }
.flower:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 14s; }
.flower:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 16s; }
.flower:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 12s; }
.flower:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 15s; }
.flower:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 13s; }
.flower:nth-child(9) { left: 15%; animation-delay: 1.5s; animation-duration: 14s; }
.flower:nth-child(10) { left: 85%; animation-delay: 3.5s; animation-duration: 16s; }
.flower:nth-child(11) { left: 25%; animation-delay: 0.5s; animation-duration: 12s; }
.flower:nth-child(12) { left: 90%; animation-delay: 5.5s; animation-duration: 15s; }

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/hero.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    animation: parallaxZoom 20s ease-in-out infinite alternate;
}

@keyframes parallaxZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.5) 0%, 
        rgba(230, 184, 255, 0.5) 50%, 
        rgba(255, 215, 0, 0.4) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero-sparkle {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.hero-flower {
    font-size: 4rem;
    margin: var(--spacing-sm) 0;
    animation: rotate 4s linear infinite;
}

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

.hero-divider {
    width: 150px;
    height: 4px;
    background: var(--gradient-sunset);
    margin: var(--spacing-md) auto;
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-medium);
}

.hero-btn.primary {
    background: var(--white);
    color: var(--rose-pink);
}

.hero-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
    background: var(--light-pink);
}

.hero-btn.secondary {
    background: var(--gradient-pink);
    color: var(--white);
}

.hero-btn.secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
    background: var(--gradient-purple);
}

.hero-btn i {
    width: 20px;
    height: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-indicator i {
    width: 30px;
    height: 30px;
    color: var(--white);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-pink);
    border-radius: 2px;
}

.title-decoration i {
    width: 24px;
    height: 24px;
    color: var(--rose-pink);
}

.section-subtitle {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--soft-purple);
    margin-top: var(--spacing-sm);
}

/* ===================================
   GLASS CARD EFFECT
   =================================== */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: var(--spacing-lg);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.about-content {
    animation: fadeInUp 1s ease-out;
}

.about-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    transition: all var(--transition-medium);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink);
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.feature-icon i {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-item span {
    font-weight: 600;
    color: var(--rose-pink);
    font-size: 1.1rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 133%;
    overflow: hidden;
    background: var(--light-pink);
}

.gallery-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9), rgba(230, 184, 255, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    width: 40px;
    height: 40px;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===================================
   MESSAGE SECTION
   =================================== */
.message {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.message-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.message-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.message-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.message-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #555;
    margin-bottom: var(--spacing-lg);
}

.message-signature {
    margin-top: var(--spacing-lg);
}

.signature-text {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--rose-pink);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.signature-hearts {
    font-size: 2rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(230, 184, 255, 0.3));
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-text {
    font-size: 1.1rem;
    color: var(--rose-pink);
    margin-bottom: var(--spacing-xs);
}

.footer-date {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--soft-purple);
}

/* ===================================
   LIGHTBOX MODAL
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.5s ease-out;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 182, 193, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-close i {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav i {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.lightbox-counter {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--white);
    font-size: 1rem;
}

/* ===================================
   SLIDESHOW MODAL
   =================================== */
.slideshow-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.98), rgba(230, 184, 255, 0.98));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.slideshow-modal.active {
    display: flex;
    opacity: 1;
}

.slideshow-content {
    width: 100%;
    max-width: 1000px;
    padding: var(--spacing-md);
}

.slideshow-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.slideshow-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--spacing-sm);
}

.slideshow-title p {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

.slideshow-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slideshow-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10001;
}

.slideshow-close:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.slideshow-close i {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.slideshow-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slideshow-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slideshow-btn i {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.slideshow-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slideshow-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .slideshow-title h2 {
        font-size: 2rem;
    }
    
    .slideshow-container {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .flower {
        font-size: 1.5rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .floating-flowers,
    .scroll-indicator,
    .lightbox,
    .slideshow-modal {
        display: none !important;
    }
}