* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 50%, #e1f5fe 100%);
    color: #2d3436;
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* FLOWER OVERLAY - MÁS VISIBLES Y MEJOR DISTRIBUIDAS */
.flower-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Tulipán arriba izquierda */
.flower-overlay::before {
    content: '🌷';
    position: absolute;
    font-size: 180px;
    opacity: 0.15;
    top: 50px;
    left: 80px;
    transform: rotate(-20deg);
}

/* Hortensia abajo derecha */
.flower-overlay::after {
    content: '💐';
    position: absolute;
    font-size: 200px;
    opacity: 0.15;
    bottom: 80px;
    right: 100px;
    transform: rotate(15deg);
}

/* Flores adicionales decorativas */
body::before {
    content: '🌸';
    position: fixed;
    font-size: 140px;
    opacity: 0.12;
    top: 35%;
    left: 120px;
    transform: rotate(-35deg);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '🌺';
    position: fixed;
    font-size: 160px;
    opacity: 0.13;
    top: 55%;
    right: 90px;
    transform: rotate(25deg);
    z-index: 0;
    pointer-events: none;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
    position: relative;
    z-index: 1;
}

/* LETTER SECTION */
.letter-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.greeting {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #6a1b9a;
    font-family: 'Cormorant Garamond', serif;
}

.subheading {
    font-size: 22px;
    margin-bottom: 40px;
    color: #4a5568;
    font-style: italic;
}

.letter-content p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #2d3436;
}

.love-list {
    margin: 35px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(76, 175, 80, 0.05));
    border-left: 4px solid #9c27b0;
    border-radius: 8px;
}

.love-intro {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px !important;
    color: #6a1b9a;
}

.love-list p {
    line-height: 2;
    font-size: 18px;
}

.closing-line {
    font-size: 20px;
    font-weight: 500;
    margin-top: 35px;
}

.final-love {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: #6a1b9a;
    margin-top: 30px;
}

.signature {
    margin-top: 50px;
    text-align: left;
}

.signature-name {
    font-size: 28px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #2d3436;
}

.date {
    font-size: 15px;
    color: #718096;
    margin-top: 8px;
    font-family: 'Crimson Text', serif;
}

/* PHOTOS SECTION */
.photos-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.photos-title {
    font-size: 36px;
    font-family: 'Cormorant Garamond', serif;
    color: #6a1b9a;
    text-align: center;
    margin-bottom: 40px;
}

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

.photo-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.photo-frame:hover {
    transform: scale(1.05);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSE SECTION */
.response-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.response-title {
    font-size: 36px;
    font-family: 'Cormorant Garamond', serif;
    color: #6a1b9a;
    text-align: center;
    margin-bottom: 15px;
}

.response-subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 35px;
    font-style: italic;
}

#responseForm {
    max-width: 600px;
    margin: 0 auto;
}

textarea {
    width: 100%;
    padding: 20px;
    font-family: 'Crimson Text', serif;
    font-size: 17px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    resize: vertical;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #9c27b0;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #7b1fa2, #6a1b9a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.3);
}

.thank-you-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
    border-radius: 10px;
    margin-top: 20px;
}

.thank-you-message p {
    font-size: 22px;
    color: #6a1b9a;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .letter-wrapper {
        padding: 40px 25px;
    }
    
    .greeting {
        font-size: 32px;
    }
    
    .letter-content p {
        font-size: 17px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Flores adicionales decorativas */
body::before {
    content: '💐';
    position: fixed;
    font-size: 100px;
    opacity: 0.06;
    top: 40%;
    left: -50px;
    transform: rotate(-30deg);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '🌺';
    position: fixed;
    font-size: 110px;
    opacity: 0.06;
    top: 60%;
    right: -50px;
    transform: rotate(20deg);
    z-index: 0;
    pointer-events: none;
}
/* Más flores decorativas para llenar espacios */
.container::before {
    content: '🌼';
    position: fixed;
    font-size: 120px;
    opacity: 0.10;
    top: 20%;
    right: 150px;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
}

.container::after {
    content: '🏵️';
    position: fixed;
    font-size: 130px;
    opacity: 0.11;
    bottom: 30%;
    left: 100px;
    transform: rotate(30deg);
    z-index: 0;
    pointer-events: none;
}
/* LIGHTBOX - Pantalla completa para fotos */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    height: 50px;
    font-size: 18px;
}

/* Cursor pointer en fotos */
.photo-frame {
    cursor: pointer;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 15px;
        right: 25px;
        font-size: 40px;
    }
}
/* P.S. BUTTON AND MESSAGE */
.ps-container {
    margin-top: 50px;
    text-align: center;
}

.ps-button {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.ps-button:hover {
    background: linear-gradient(135deg, #7b1fa2, #6a1b9a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
}

.ps-button:active {
    transform: translateY(0);
}
/* P.S. MESSAGE */
.ps-message {
    display: none;
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}

.ps-message.show {
    display: block;
}

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

.ps-message p {
    font-size: 19px;
    line-height: 1.8;
    color: #2d3436;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.08), rgba(76, 175, 80, 0.08));
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #9c27b0;
    font-style: italic;
}