/* Reset și setări generale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fef7f7, #fff0f5, #f8f8ff);
    color: #4a4a4a;
    line-height: 1.6;
}

/* Ecran de întâmpinare */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffe0e6, #ffeef2, #fff5f8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

/* Fundal floral */
.floral-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 192, 203, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 228, 225, 0.4) 0%, transparent 50%);
}

/* Petale plutitoare */
.floating-petals {
    position: absolute;
    width: 100%;
    height: 100%;
}

.petal {
    position: absolute;
    font-size: 40px;
    animation: petalFloat 15s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.2));
}

.petal1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.petal2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.petal3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.petal4 {
    top: 60%;
    right: 25%;
    animation-delay: 6s;
}

.petal5 {
    bottom: 20%;
    right: 10%;
    animation-delay: 8s;
}

.petal6 {
    top: 40%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes petalFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.2);
        opacity: 1;
    }
}

/* Overlay acuarelă */
.watercolor-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 40%, rgba(255, 182, 193, 0.1) 70%),
        linear-gradient(45deg, rgba(255, 192, 203, 0.1), rgba(255, 228, 225, 0.1));
    opacity: 0.6;
}

.welcome-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

/* Rama romantică */
.romantic-frame {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff69b4, #ffc0cb, #ffb6c1, #ff69b4) 1;
    padding: 60px 50px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 60px rgba(255, 105, 180, 0.2),
        inset 0 2px 20px rgba(255, 255, 255, 0.8);
    position: relative;
    max-width: 600px;
}

.romantic-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 192, 203, 0.3);
    border-radius: 20px;
    pointer-events: none;
}

.floral-border-top,
.floral-border-bottom {
    font-size: 2rem;
    margin: 20px 0;
    color: #ff69b4;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
}

.couple-names-romantic {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #d63384;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(214, 51, 132, 0.3);
    animation: heartbeat 3s ease-in-out infinite;
}

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

.love-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #ff69b4;
    font-style: italic;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(255, 105, 180, 0.3);
}

.wedding-date-romantic {
    font-size: 1.5rem;
    color: #d63384;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(214, 51, 132, 0.2);
}

.wedding-location-romantic {
    font-size: 1.3rem;
    color: #ff69b4;
    margin-bottom: 35px;
    font-style: italic;
}

.romantic-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 40px;
    background: linear-gradient(45deg, #ff69b4, #ffc0cb, #ffb6c1);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.romantic-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ffc0cb);
}

.button-petals {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.romantic-button:hover .button-petals {
    left: 100%;
}

/* Fluturi */
.butterflies {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.butterfly {
    position: absolute;
    font-size: 35px;
    animation: butterflyFly 20s ease-in-out infinite;
    filter: drop-shadow(2px 2px 6px rgba(255, 105, 180, 0.3));
}

.butterfly1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.butterfly2 {
    top: 70%;
    right: 20%;
    animation-delay: 7s;
}

.butterfly3 {
    bottom: 40%;
    left: 10%;
    animation-delay: 14s;
}

@keyframes butterflyFly {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(100px, -50px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(200px, 30px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(50px, -20px) scale(1.1);
        opacity: 1;
    }
}

/* Invitația principală */
.invitation {
    opacity: 0;
    animation: bloomIn 2s ease-out forwards;
}

@keyframes bloomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hidden {
    display: none;
}

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

.hero-overlay-romantic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 105, 180, 0.2),
        rgba(255, 192, 203, 0.3),
        rgba(255, 182, 193, 0.2)
    );
    z-index: 2;
}

.hero-image-romantic {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: sepia(20%) saturate(120%) brightness(110%);
}

/* Inimi plutitoare */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.heart {
    position: absolute;
    font-size: 30px;
    animation: heartFloat 12s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.4));
}

.heart1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.heart2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.heart3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.heart4 {
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes heartFloat {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) scale(1.3) rotate(10deg);
        opacity: 1;
    }
}

.hero-content-romantic {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.romantic-card {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff69b4, #ffc0cb, #ffb6c1) 1;
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 25px 70px rgba(255, 105, 180, 0.3),
        inset 0 2px 20px rgba(255, 255, 255, 0.8);
}

.card-decoration-top,
.card-decoration-bottom {
    font-size: 2.5rem;
    color: #ff69b4;
    margin: 20px 0;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
}

.couple-names-hero {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: #d63384;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(214, 51, 132, 0.4);
}

.wedding-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 25px;
    font-style: italic;
}

.wedding-date-hero {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(214, 51, 132, 0.3);
}

.wedding-location-hero {
    font-size: 1.8rem;
    color: #ff69b4;
    margin-bottom: 30px;
}

.love-message {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #d63384;
    font-style: italic;
    line-height: 1.8;
    margin: 20px 0;
    text-shadow: 1px 1px 3px rgba(214, 51, 132, 0.2);
}

.scroll-romantic {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 4;
    color: #ff69b4;
    text-align: center;
    transition: all 0.3s ease;
}

.scroll-romantic:hover {
    color: #d63384;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-flower {
    font-size: 2.5rem;
    animation: floatFlower 3s ease-in-out infinite;
    margin-bottom: 10px;
    display: block;
}

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

.scroll-romantic span {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

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

/* Secțiuni */
section {
    padding: 100px 0;
    position: relative;
}

/* Divizor floral */
.floral-divider {
    text-align: center;
    margin: 50px 0;
}

.flower-line {
    font-size: 2.5rem;
    color: #ff69b4;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.section-title-romantic {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    text-align: center;
    color: #d63384;
    margin-bottom: 60px;
    text-shadow: 3px 3px 8px rgba(214, 51, 132, 0.3);
    position: relative;
}

.section-title-romantic::after {
    content: '💕';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: heartPulse 2s ease-in-out infinite;
}

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

/* Povestea dragostei */
.love-story-section {
    background: linear-gradient(135deg, #fff5f8, #ffeef2, #ffe0e6);
    position: relative;
}

.love-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 192, 203, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.love-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.love-chapter {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.love-chapter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 105, 180, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.love-chapter:hover::before {
    transform: translateX(100%);
}

.love-chapter:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.4);
}

.chapter-icon {
    font-size: 3rem;
    text-align: center;
    align-self: start;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
    }
    50% {
        filter: drop-shadow(2px 2px 8px rgba(255, 105, 180, 0.6));
    }
}

.chapter-content h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #d63384;
    margin-bottom: 10px;
}

.chapter-date {
    font-size: 1rem;
    color: #ff69b4;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chapter-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Detalii nunta */
.wedding-details-section {
    background: linear-gradient(135deg, #ffeef2, #fff5f8, #ffffff);
}

.ceremony-romantic {
    max-width: 1000px;
    margin: 0 auto;
}

.ceremony-card-romantic {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff69b4, #ffc0cb, #ffb6c1) 1;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
    transition: all 0.4s ease;
}

.ceremony-card-romantic:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 105, 180, 0.3);
}

.ceremony-flowers {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
}

.ceremony-card-romantic h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #d63384;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(214, 51, 132, 0.3);
}

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

.detail-romantic {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.detail-icon {
    margin-right: 15px;
    font-size: 1.3rem;
}

.ceremony-note {
    font-style: italic;
    color: #ff69b4;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ceremony-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.divider-heart {
    font-size: 2rem;
    color: #ff69b4;
    animation: heartPulse 2s ease-in-out infinite;
}

.divider-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff69b4, transparent);
    margin: 0 20px;
}

.reception-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.highlight {
    background: rgba(255, 105, 180, 0.1);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    color: #d63384;
    font-weight: 500;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: translateY(-3px);
}

/* Program romantic */
.schedule-romantic {
    background: linear-gradient(135deg, #fff0f5, #fef7f7, #fff5f8);
}

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

.timeline-romantic {
    position: relative;
}

.timeline-romantic::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff69b4, #ffc0cb, #ff69b4);
    border-radius: 2px;
}

.timeline-item-romantic {
    display: grid;
    grid-template-columns: 120px 100px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-flower {
    font-size: 2.5rem;
    text-align: center;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
    animation: flowerBoom 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes flowerBoom {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.timeline-time-romantic {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #d63384;
    text-align: center;
}

.timeline-content-romantic {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.timeline-content-romantic:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.4);
}

.timeline-content-romantic h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #d63384;
    margin-bottom: 10px;
}

.timeline-content-romantic p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Galerie florală */
.floral-gallery {
    background: linear-gradient(135deg, #ffe0e6, #ffeef2, #fff5f8);
    position: relative;
}

.floral-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 105, 180, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 192, 203, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-subtitle-romantic {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #ff69b4;
    margin-bottom: 60px;
    font-style: italic;
}

.flower-gallery {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery-bouquet {
    display: grid;
    gap: 20px;
}

.gallery-bouquet:nth-child(1) {
    grid-template-rows: 2fr 1fr;
}

.gallery-bouquet:nth-child(2) {
    grid-template-rows: 1fr 2fr;
}

.bouquet-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 4px solid;
    border-image: linear-gradient(45deg, #ff69b4, #ffc0cb, #ffb6c1) 1;
}

.bouquet-item:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.4);
}

.bouquet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: saturate(110%) brightness(105%);
}

.bouquet-item:hover .bouquet-image {
    transform: scale(1.1);
    filter: saturate(130%) brightness(110%);
}

.bouquet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(214, 51, 132, 0.9), transparent);
    padding: 25px;
    color: #ffffff;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

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

.bouquet-overlay h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bouquet-overlay p {
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.overlay-flowers {
    font-size: 1.5rem;
    text-align: center;
}

/* Informații pentru invitați */
.guest-info-section {
    background: linear-gradient(135deg, #fff5f8, #ffffff, #fef7f7);
}

.info-garden {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-flower-card {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff69b4, #ffc0cb, #ffb6c1) 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
    transition: all 0.4s ease;
}

.info-flower-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 105, 180, 0.3);
}

.flower-header {
    background: linear-gradient(135deg, #ff69b4, #ffc0cb);
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

.flower-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.flower-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.flower-content {
    padding: 35px;
}

.dress-style {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #d63384;
    margin-bottom: 20px;
    text-align: center;
}

.color-garden {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.color-flower {
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    color: #4a4a4a;
    font-weight: 500;
    border: 2px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.color-flower:hover {
    transform: scale(1.05);
    border-color: rgba(255, 105, 180, 0.5);
}

.dress-note {
    background: rgba(255, 105, 180, 0.1);
    border-left: 4px solid #ff69b4;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    color: #d63384;
    font-weight: 500;
}

.transport-detail {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.transport-detail:last-child {
    border-bottom: none;
}

.transport-detail h4 {
    color: #d63384;
    margin-bottom: 8px;
    font-weight: 600;
}

.gift-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #ff69b4;
    margin-bottom: 25px;
    font-weight: 500;
}

.gift-options-romantic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gift-option-romantic {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 105, 180, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.gift-option-romantic:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

.gift-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.gift-option-romantic h4 {
    color: #d63384;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-romantic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.contact-person {
    text-align: center;
    padding: 20px;
    background: rgba(255, 105, 180, 0.05);
    border-radius: 15px;
}

.contact-person h4 {
    color: #d63384;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-email {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ff69b4;
}

.contact-wedding-planner {
    background: rgba(255, 105, 180, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.contact-wedding-planner h4 {
    color: #d63384;
    margin-bottom: 10px;
}

/* RSVP romantic */
.rsvp-romantic {
    background: linear-gradient(135deg, #ffe0e6, #ffeef2, #fff5f8);
    position: relative;
}

.rsvp-romantic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 192, 203, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.rsvp-garden {
    max-width: 800px;
    margin: 0 auto;
}

.rsvp-content-romantic {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid;
    border-image: linear-gradient(45deg, #ff69b4, #ffc0cb, #ffb6c1, #ff69b4) 1;
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(255, 105, 180, 0.3);
    position: relative;
}

.rsvp-flowers-top,
.rsvp-flowers-bottom {
    font-size: 2.5rem;
    color: #ff69b4;
    margin: 25px 0;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
}

.rsvp-content-romantic h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #d63384;
    margin-bottom: 30px;
    text-shadow: 3px 3px 8px rgba(214, 51, 132, 0.3);
}

.rsvp-deadline-romantic {
    margin: 30px 0;
}

.rsvp-deadline-romantic span {
    font-size: 1.2rem;
    color: #ff69b4;
    display: block;
    margin-bottom: 10px;
}

.deadline-date {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #d63384;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(214, 51, 132, 0.3);
}

.rsvp-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 50px;
}

.rsvp-methods-romantic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.rsvp-method-romantic {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    text-align: center;
}

.rsvp-method-romantic:hover {
    background: linear-gradient(135deg, #ff69b4, #ffc0cb);
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
}

.method-flower {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
}

.method-text h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.method-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.rsvp-details-romantic {
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.rsvp-details-romantic h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #d63384;
    margin-bottom: 20px;
}

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

.rsvp-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: #4a4a4a;
    font-size: 0.95rem;
}

/* Footer romantic */
.footer-romantic {
    background: linear-gradient(135deg, #d63384, #ff69b4, #ffc0cb);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.footer-garden {
    max-width: 600px;
    margin: 0 auto;
}

.footer-flowers {
    font-size: 2.5rem;
    margin: 25px 0;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-couple {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.footer-date {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-style: italic;
    margin: 25px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Music control */
.music-control-romantic {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: none;
}

.music-button-romantic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff69b4, #ffc0cb);
    border: 3px solid #ffffff;
    cursor: pointer;
    font-size: 28px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-button-romantic:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
    background: linear-gradient(45deg, #ff1493, #ff69b4);
}

/* Modal imagini */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(214, 51, 132, 0.95);
    cursor: pointer;
}

.image-modal img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 0 70px rgba(255, 255, 255, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-close:hover {
    transform: scale(1.2) rotate(90deg);
    text-shadow: 0 0 20px #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .romantic-frame {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .couple-names-romantic {
        font-size: 3rem;
    }
    
    .couple-names-hero {
        font-size: 3.5rem;
    }
    
    .section-title-romantic {
        font-size: 3rem;
    }
    
    .love-chapter {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .ceremony-card-romantic {
        padding: 30px 25px;
    }
    
    .timeline-item-romantic {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .timeline-romantic::before {
        display: none;
    }
    
    .flower-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-garden {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rsvp-content-romantic {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .contact-romantic {
        grid-template-columns: 1fr;
    }
    
    .rsvp-methods-romantic {
        grid-template-columns: 1fr;
    }
    
    .color-garden {
        grid-template-columns: 1fr;
    }
    
    .reception-highlights {
        grid-template-columns: 1fr;
    }
    
    .petal {
        font-size: 25px;
    }
    
    .butterfly {
        font-size: 25px;
    }
}