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

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355;
    --secondary-color: #D4AF37;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #faf8f5;
    --white: #ffffff;
    --accent-green: #6B8E6F;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    background-image: url('title_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.rings-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.couple-names {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.wedding-date {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
}

/* Countdown Section */
.countdown-section {
    padding: 6rem 0;
    background: var(--white);
}

.countdown-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.countdown-value {
    font-size: 4rem;
    font-weight: 300;
    color: var(--secondary-color);
    font-family: 'Cormorant Garamond', serif;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* CTA Button in Countdown Section */
.cta-button-container {
    text-align: center;
    margin-top: 3rem;
}

.rsvp-cta-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--secondary-color), #c29d2e);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
}

.rsvp-cta-btn:hover {
    background: linear-gradient(135deg, #c29d2e, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-rings-icon {
    display: inline-block;
    vertical-align: middle;
}

/* Save the Date Section */
.save-date-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.save-date-section h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.venue-info {
    margin: 2rem auto 3rem;
    max-width: 600px;
}

.venue-image-link {
    display: block;
    cursor: pointer;
}

.venue-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.venue-name {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.venue-address {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.calendar-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(107, 142, 111, 0.3);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.calendar-btn:hover {
    background: #5a7a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 111, 0.4);
}

.location-info {
    margin-top: 3rem;
}

.location-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Nosotros Section - Gallery Style */
.nosotros-section {
    padding: 6rem 0;
    background: #f5f3f0;
    text-align: center;
}

.section-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-icon-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.section-icon-svg svg {
    max-width: 80px;
    height: auto;
}

.nosotros-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.nosotros-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.nosotros-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nosotros-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nosotros-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}

.nosotros-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nosotros-gallery-item .placeholder-image {
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, #f0ebe3 0%, #e8dfd0 100%);
    position: relative;
}

.nosotros-gallery-item .placeholder-image span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 1rem;
}

/* Old gallery styles - removed */

.rings-icon-small {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    margin: 3% auto;
    max-width: 600px;
    width: 100%;
    animation: slideDown 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

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

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--text-light);
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--text-dark);
}

/* RSVP Form Section */
.rsvp-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rings-icon-small {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: '*';
    color: #d9534f;
    margin-left: 4px;
}

input[type="text"],
input#fullName,
textarea,
textarea#allergies,
textarea#additionalInfo {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: var(--bg-light);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"]:focus,
input#fullName:focus,
textarea:focus,
textarea#allergies:focus,
textarea#additionalInfo:focus {
    outline: none;
    border-color: var(--accent-green);
}

textarea,
textarea#allergies,
textarea#additionalInfo {
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.radio-label input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-green);
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

.form-info-link {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.transport-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.transport-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 0.7rem;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(107, 142, 111, 0.3);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: #5a7a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 111, 0.4);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Regalos Section */
.regalos-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    background-image: url('title_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

/* Transporte Section */
.transporte-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.transporte-section h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.transporte-icon-svg {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transporte-icon-svg img {
    animation: float 3s ease-in-out infinite;
}

.transporte-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.transporte-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transporte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.transporte-card-icon {
    margin-bottom: 1.5rem;
}

.transporte-card-icon svg {
    opacity: 0.8;
}

.transporte-info {
    margin-bottom: 1rem;
}

.transporte-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}

.transporte-lugar {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transporte-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    margin: 1.5rem auto;
}

.transporte-horario {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 115, 85, 0.15);
}

.horario-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.horario-hora {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.transporte-nota {
    margin-top: 2.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .transporte-section h2 {
        font-size: 2.2rem;
    }
    
    .transporte-card {
        padding: 2rem 1.5rem;
    }
}

/* Canciones Section */
.canciones-section {
    padding: 6rem 0;
    background: #f5f3f0;
    text-align: center;
}

.canciones-icon-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.canciones-section h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.canciones-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.sugerir-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Montserrat', sans-serif;
}

.sugerir-btn:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.sugerir-btn svg {
    flex-shrink: 0;
}

/* Music Icon */
.music-icon-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Tags Input Styles - Modern Design */
.tags-input-wrapper {
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    min-height: auto;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #f5f3f0 0%, #ebe7df 100%);
    color: var(--text-dark);
    padding: 0.6rem 1rem;
    border-radius: 24px;
    font-size: 0.9rem;
    border: 1px solid #d4d0c8;
    animation: tagSlideIn 0.3s ease;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

@keyframes tagSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tag-remove {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.tag-remove:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
}

.input-with-button {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.tag-input,
.nombre-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 0.75rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    flex: 1;
    color: var(--text-dark);
    border-bottom: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.tag-input:focus,
.nombre-input:focus {
    border-bottom-color: var(--secondary-color);
}

.tag-input::placeholder,
.nombre-input::placeholder {
    color: #a0a0a0;
    font-weight: 300;
}

.add-cancion-btn {
    background: var(--accent-green);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(107, 142, 111, 0.3);
    flex-shrink: 0;
}

.add-cancion-btn:hover {
    background: #5a7a5e;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(107, 142, 111, 0.4);
}

.add-cancion-btn:active {
    transform: scale(0.95);
}

.add-cancion-btn svg {
    stroke-width: 2.5;
}

.input-hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Regalos Section */
.regalos-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    background-image: url('title_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.regalos-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regalos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.regalo-icon-svg {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

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

.regalo-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.datos-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #c29d2e);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Montserrat', sans-serif;
}

.datos-btn:hover {
    background: linear-gradient(135deg, #c29d2e, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.datos-btn svg {
    flex-shrink: 0;
}

/* Datos Bancarios Modal */
.datos-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.datos-header {
    text-align: center;
    margin-bottom: 2rem;
}

.regalo-icon-small {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.datos-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cuenta-bancaria {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border: 2px dashed var(--accent-green);
}

.cuenta-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cuenta-numero {
    font-size: 1.8rem;
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    word-break: break-all;
}

.copiar-cuenta {
    padding: 1rem 2rem;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 111, 0.3);
}

.copiar-cuenta:hover {
    background: #5a7a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 111, 0.4);
}

.copiar-cuenta:active {
    transform: translateY(0);
}

/* Hospedaje Section */
.hospedaje-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.hospedaje-section h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hospedaje-icon-svg {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.hospedaje-icon-svg svg {
    max-width: 300px;
    height: auto;
}

.hospedaje-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hospedaje-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.hospedaje-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hospedaje-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hospedaje-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
}

.hospedaje-distancia {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.hospedaje-descripcion {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.hospedaje-link {
    display: inline-block;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hospedaje-link:hover {
    color: #5a7a5e;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--primary-color) url('title_background.png') center/cover;
    color: #666;
    text-align: center;
}

.footer p {
    font-size: 1.1rem;
}

.footer img {
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .modal-content {
        margin: 5% 20px;
    }
}

@media (max-width: 768px) {
    .couple-names {
        font-size: 3rem;
    }
    
    .wedding-date {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 1.5rem;
    }
    
    .countdown-value {
        font-size: 3rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nosotros-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .calendar-btn,
    .rsvp-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .save-date-section,
    .countdown-section,
    .nosotros-section,
    .rsvp-section {
        padding: 4rem 0;
    }
    
    .modal-content {
        margin: 10% 10px;
        width: calc(100% - 20px);
    }
}

/* Image Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: lightboxFadeIn 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    user-select: none;
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--secondary-color);
}

.nosotros-gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 2.5rem;
    }
    
    .rings-icon {
        font-size: 3rem;
    }
    
    .rings-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .calendar-btn,
    .rsvp-cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-rings-icon {
        width: 16px;
        height: 16px;
    }
    
    .form-card {
        padding: 1.5rem 1rem;
    }
    
    .nosotros-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .modal-content {
        margin: 5% 10px;
    }
    
    .close-modal {
        font-size: 28px;
        right: 10px;
        top: 10px;
    }
    
    .nosotros-section h2 {
        font-size: 2rem;
    }
    
    .section-icon {
        font-size: 2.5rem;
    }
}

/* Fotos Section */
.fotos-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.fotos-section h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fotos-icon-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.fotos-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 111, 0.3);
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
    margin-top: 2rem;
}

.fotos-btn:hover {
    background: #5a7a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 142, 111, 0.4);
}

.fotos-btn svg {
    flex-shrink: 0;
}

/* Responsive para sección de fotos */
@media (max-width: 768px) {
    .fotos-section {
        padding: 4rem 20px;
    }
    
    .fotos-section h2 {
        font-size: 2.2rem;
    }
    
    .fotos-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}


