
:root {
    --gold-primary: #d4af37;
    --gold-light: #f9eac3;
    --gold-dark: #aa8420;
    --bg-color: #faf6eb;
    --text-dark: #3e3e3e;
    --text-light: #7a7a7a;
    --white-glass: rgba(253, 250, 242, 0.85);
    --shadow-soft: 0 15px 40px rgba(170, 132, 32, 0.08);
    --transition-slow: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-script {
    font-family: 'Great Vibes', cursive;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-primary);
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

#cover-screen {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100vh;
    background: url('../img2/moño.png') no-repeat center center / 100% auto, radial-gradient(circle at center, #ffffff 0%, #f5f4f2 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 1s ease-in-out, opacity 0.8s ease;
}

.monogram-lg {
    font-size: 6rem;
    letter-spacing: 5px;
    margin-bottom: 15rem;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.tap-text {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
}

#main-content {
    display: none;
    opacity: 0;
    width: 100%;
}

.header-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    color: var(--gold-dark);
    font-size: 1.2rem;
}

.hero-section {
    position: relative;
    height: 100vh;
    background: url('../img2/img3.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 767px) {
    .hero-section-2 {
        position: relative;
        height: 100vh !important;
        background: url('../img2/img1.png') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section-3 {
        position: relative;
        height:62vw !important;
        background: url('../img2/img2.png') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section-2 {
        position: relative;
        height: 600px;
        background: url('../img2/img1.png') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section-3 {
        position: relative;
        height: 600px;
        background: url('../img2/img2.png') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(18, 15, 39, 0.3) 90%, var(--bg-color) 100%);
}

.hero-title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    width: 100%;
    padding: 0 1rem;
}

.hero-names {
    font-size: clamp(4rem, 15vw, 9rem);
    line-height: 0.9;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    letter-spacing: 6px;
    color: var(--gold-light);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.invitation-body {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 800px;
    margin: -10vh auto 0;
}

.curved-wrapper {
    height: 100px;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.curved-char {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gold-dark);
    text-shadow: 0 2px 5px rgba(170, 132, 32, 0.25);
    white-space: nowrap;
    font-weight: bold;
}

.bible-end {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--gold-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1;
    font-weight: bold;
}

.verse-ref {
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

.section-title {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 2rem;
    display: inline-block;
    border-bottom: 1px solid var(--gold-primary);
    padding-bottom: 10px;
}

.parents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.parent-group h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #555;
}

.couple-names {
    margin: 3rem 0;
}

.name {
    font-size: 4.5rem;
    line-height: 1.1;
    display: block;
}

.name:first-child {
    transform: translateX(-40px);
}

.name:last-child {
    transform: translateX(60px);
}

.ampersand {
    font-size: 2.5rem;
    color: var(--gold-primary);
    font-family: 'Cormorant Garamond', serif;
}

@media (min-width: 768px) {
    .name {
        font-size: 7rem;
    }

    .name:first-child {
        transform: translateX(-100px);
    }

    .name:last-child {
        transform: translateX(100px);
    }
}

.details-section {
    padding: 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #f4efdc 100%);
}

.glass-card {
    background: var(--white-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 3.5rem 2rem;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--gold-primary);
    opacity: 0.3;
    border-radius: 8px;
    pointer-events: none;
}

.event-time-block {
    margin: 2rem 0;
}

.big-date {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.big-hour {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 2rem;
}

#countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.timer-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold-dark);
    line-height: 1;
}

.timer-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-top: 5px;
}

.btn-location {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 14px 35px;
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-location:hover {
    background: var(--gold-dark);
    color: #fff;
}

.logistics-section {
    padding: 4rem 1rem;
}

.taxi-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.taxi-item {
    background: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 3px solid var(--gold-primary);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        
    }
}

.hotel-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.btn-hotel-loc {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 15px;
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-hotel-loc:hover {
    background: var(--gold-dark);
    color: #fff;
}

.audio-control-box {
    margin: 2.5rem 0 1rem;
}

.audio-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.audio-btn:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: scale(1.1);
}

.audio-status {
    margin-top: 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
}

footer {
    padding: 3rem;
    background-color: #f2efe4;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.text-plan {
    margin-top: -60px;
}
