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

body {
    font-family: 'Libre Baskerville', serif;
    overflow-x: hidden;
    background: #2d3436;
    color: #2d3436;
    line-height: 1.6;
}

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

/* Fundal pădurea */
.forest-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at bottom, rgba(77, 160, 176, 0.2), transparent 70%),
        linear-gradient(to bottom, rgba(45, 80, 22, 0.8), rgba(108, 144, 91, 0.6));
}

.trees {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tree {
    position: absolute;
    font-size: 80px;
    opacity: 0.7;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.tree1 {
    bottom: 10%;
    left: 5%;
    animation: sway 6s ease-in-out infinite;
}

.tree2 {
    bottom: 15%;
    left: 80%;
    font-size: 60px;
    animation: sway 8s ease-in-out infinite;
    animation-delay: 1s;
}

.tree3 {
    bottom: 20%;
    right: 60%;
    font-size: 100px;
    animation: sway 7s ease-in-out infinite;
    animation-delay: 2s;
}

.tree4 {
    bottom: 5%;
    right: 20%;
    font-size: 50px;
    animation: sway 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

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

.leaf {
    position: absolute;
    font-size: 30px;
    animation: leafFloat 12s ease-in-out infinite;
}

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

.leaf2 {
    top: 60%;
    right: 30%;
    animation-delay: 3s;
}

.leaf3 {
    top: 40%;
    left: 70%;
    animation-delay: 6s;
}

.leaf4 {
    bottom: 40%;
    left: 40%;
    animation-delay: 9s;
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 1;
    }
}

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

/* Semnul de lemn */
.wooden-sign {
    background: linear-gradient(145deg, #8B4513, #A0522D, #CD853F);
    border: 8px solid #654321;
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transform: rotate(-1deg);
}

.wooden-sign::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(139, 69, 19, 0.5);
    border-radius: 15px;
    pointer-events: none;
}

.wood-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(101, 67, 33, 0.1) 2px,
            rgba(101, 67, 33, 0.1) 4px
        );
    border-radius: 17px;
    pointer-events: none;
}

.couple-names-welcome {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 
        2px 2px 0 #654321,
        4px 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.welcome-tagline {
    font-family: 'Kalam', cursive;
    font-size: 1.8rem;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.welcome-date {
    font-size: 1.5rem;
    color: #90EE90;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.welcome-location {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.rustic-button {
    font-family: 'Kalam', cursive;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 18px 35px;
    background: linear-gradient(145deg, #228B22, #32CD32, #90EE90);
    color: #ffffff;
    border: 3px solid #006400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 6px 20px rgba(34, 139, 34, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.rustic-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(34, 139, 34, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, #32CD32, #90EE90, #98FB98);
}

.nature-sounds {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Invitația principală */
.invitation {
    opacity: 0;
    animation: fadeIn 2s forwards;
    background: #f5f5dc;
    color: #2d3436;
}

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

.hidden {
    display: none;
}

/* Hero section cu efect paralax */
.forest-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
}

.layer1 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,80 Q30,60 40,80 T60,80 T80,80" stroke="%2364784d" stroke-width="0.5" fill="none" opacity="0.3"/></svg>') repeat-x;
    z-index: 1;
    animation: parallax1 20s linear infinite;
}

.layer2 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23789e63" opacity="0.4"/><circle cx="80" cy="30" r="1.5" fill="%23789e63" opacity="0.4"/></svg>') repeat;
    z-index: 2;
    animation: parallax2 15s linear infinite;
}

.layer3 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M10,40 Q15,35 20,40 Q25,35 30,40" stroke="%23a0b894" stroke-width="0.8" fill="none" opacity="0.2"/></svg>') repeat;
    z-index: 3;
    animation: parallax3 25s linear infinite;
}

@keyframes parallax1 { from { transform: translateX(0); } to { transform: translateX(-100px); } }
@keyframes parallax2 { from { transform: translateX(0); } to { transform: translateX(-50px); } }
@keyframes parallax3 { from { transform: translateX(0); } to { transform: translateX(-200px); } }

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(45, 52, 54, 0.3),
        rgba(108, 144, 91, 0.4),
        rgba(45, 52, 54, 0.3)
    );
    z-index: 5;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 6;
    width: 90%;
    max-width: 700px;
}

.nature-frame {
    background: rgba(245, 245, 220, 0.95);
    border: 4px solid #8B4513;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
    position: relative;
}

.branch-decoration {
    font-size: 2rem;
    margin: 20px 0;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.couple-names {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    color: #2d5016;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.love-story-line {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-style: italic;
}

.wedding-date {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 10px;
    font-weight: 700;
}

.wedding-location {
    font-size: 1.3rem;
    color: #8B4513;
    font-style: italic;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 6;
    text-align: center;
    color: #ffffff;
}

.arrow-nature {
    font-size: 2rem;
    animation: bounce 2s infinite;
    margin-bottom: 5px;
    display: block;
}

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

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

section {
    padding: 80px 0;
    position: relative;
}

.nature-section {
    background: linear-gradient(135deg, #f5f5dc, #f0f8e7);
    position: relative;
}

.nature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(45, 80, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Divizor din lemn */
.wooden-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.wood-line {
    height: 4px;
    width: 100px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    border-radius: 2px;
}

.nature-icon {
    margin: 0 20px;
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    border-radius: 2px;
}

/* Povestea de dragoste */
.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid #8B4513;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(139, 69, 19, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 69, 19, 0.05), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.story-card:hover::before {
    animation: shine 0.6s ease-in-out;
    opacity: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) rotate(-45deg); }
}

.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(139, 69, 19, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

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

.story-card h3 {
    font-family: 'Kalam', cursive;
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 20px;
}

.story-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3436;
}

/* Detalii nunta */
.outdoor-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8e7, #f5f5dc);
}

.ceremony-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.ceremony-card {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #8B4513;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 
        0 10px 30px rgba(139, 69, 19, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.8);
    position: relative;
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.ceremony-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #2d5016;
    text-align: center;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.label {
    font-weight: 700;
    color: #8B4513;
    min-width: 120px;
}

.detail-item span:last-child {
    color: #2d3436;
}

.church-note {
    background: rgba(139, 69, 19, 0.1);
    border-left: 4px solid #8B4513;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-style: italic;
    color: #8B4513;
}

/* Drumul între locații */
.journey-path {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.path-line {
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    border-radius: 2px;
}

.journey-icon {
    font-size: 2rem;
    margin: 0 20px;
    animation: move 3s ease-in-out infinite;
}

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

.journey-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-style: italic;
    color: #8B4513;
    white-space: nowrap;
}

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

.feature {
    background: rgba(45, 80, 22, 0.1);
    padding: 10px;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    color: #2d5016;
}

/* Hartă și direcții */
.location-map {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #8B4513;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.location-map h3 {
    font-family: 'Kalam', cursive;
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.directions {
    background: rgba(45, 80, 22, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.directions p {
    margin-bottom: 10px;
    color: #2d3436;
}

/* Timeline program */
.forest-timeline {
    background: linear-gradient(135deg, #f0f8e7, #e8f5e8);
    position: relative;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #8B4513, #A0522D, #8B4513);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.time-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.tree-ring {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid #f5f5dc;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #8B4513;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.3);
}

.timeline-content h4 {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #2d3436;
    margin-bottom: 8px;
}

.timeline-note {
    font-style: italic;
    color: #8B4513;
    font-size: 0.95rem;
}

/* Galerie natură */
.nature-gallery {
    background: linear-gradient(135deg, #2d5016, #4a7c59, #6c905b);
    color: #ffffff;
}

.nature-gallery .section-title {
    color: #ffffff;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-style: italic;
}

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

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    padding: 5px;
}

.photo-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nature-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: all 0.4s ease;
}

.photo-item:hover .nature-photo {
    transform: scale(1.1);
}

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

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

.photo-overlay h4 {
    font-family: 'Kalam', cursive;
    font-size: 1.4rem;
    color: #90EE90;
    margin-bottom: 8px;
}

.photo-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Secțiunea info */
.info-section {
    background: linear-gradient(135deg, #f5f5dc, #f0f8e7);
}

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

.info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #8B4513;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.3);
}

.card-header {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    padding: 25px;
    text-align: center;
    color: #ffffff;
}

.header-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
}

.card-body {
    padding: 30px;
}

.card-body h4 {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 20px;
}

.color-palette {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 15px 0;
}

.color-palette li {
    flex: 1;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dress-note {
    background: rgba(139, 69, 19, 0.1);
    border-left: 4px solid #8B4513;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 0.95rem;
}

.weather-info {
    margin: 20px 0;
}

.weather-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.weather-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.gift-options {
    margin-top: 20px;
}

.gift-option {
    background: rgba(45, 80, 22, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: center;
}

/* RSVP */
.nature-rsvp {
    background: linear-gradient(135deg, #4a7c59, #6c905b, #8fbc8f);
    color: #ffffff;
}

.nature-rsvp .section-title {
    color: #ffffff;
}

.rsvp-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

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

.rsvp-card {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.rsvp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.rsvp-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.rsvp-card h3 {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rsvp-card a {
    color: #90EE90;
    text-decoration: none;
    font-weight: 600;
}

.rsvp-card a:hover {
    text-decoration: underline;
}

.rsvp-details {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.rsvp-details h4 {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.rsvp-details ul {
    list-style: none;
}

.rsvp-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.rsvp-details li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 8px;
}

/* Footer */
.nature-footer {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
}

.footer-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.branch-left,
.branch-right {
    margin: 0 20px;
}

.heart-center {
    font-size: 2.5rem;
    animation: heartbeat 2s ease-in-out infinite;
}

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

.footer-message {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-date {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #90EE90;
}

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

.music-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #228B22, #32CD32);
    border: 3px solid #ffffff;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
    color: #ffffff;
}

.music-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.6);
}

/* Modal imagini */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 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: 15px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #90EE90;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .couple-names-welcome {
        font-size: 2.5rem;
    }
    
    .couple-names {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-content,
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-content {
        width: 90%;
        margin-top: 20px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .ceremony-info {
        gap: 20px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .tree {
        font-size: 50px;
    }
    
    .rsvp-options {
        grid-template-columns: 1fr;
    }
    
    .color-palette {
        flex-wrap: wrap;
    }
    
    .color-palette li {
        min-width: 120px;
    }
}