/* === RESET Y VARIABLES === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a050;
    --accent-color: #8b7355;
    --dark-bg: #0d0d0d;
    --mid-dark: #1f1f1f;
    --text-light: #e8e8e8;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --gold: #d4af37;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

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

body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* === CONTENEDOR PRINCIPAL === */
.wedding-container {
    width: 100%;
    margin: 0;
    background: var(--dark-bg);
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 35px 60px 60px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 160, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.7;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 68px;
    margin: 25px 0;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
}

.couple-names {
    font-family: 'Great Vibes', cursive;
    font-size: 90px;
    margin: 35px 0 0;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 0 30px rgba(201, 160, 80, 0.5);
    letter-spacing: 2px;
}

/* === CARRUSEL === */
.carousel-section {
    background: var(--primary-color);
    padding: 0;
    position: relative;
}

#weddingCarousel {
    width: 100%;
    height: 70vh;
    max-height: 650px;
    background: #0a0a0a;
}

.carousel-inner {
    height: 100%;
    background: #0a0a0a;
}

.carousel-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 150px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 240px;
    height: 240px;
    background-color: rgba(201, 160, 80, 0.4);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.carousel-indicators {
    margin-bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--gold);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}

/* === SECCIÓN DE FECHA === */
.date-section {
    padding: 80px 60px;
    background: var(--mid-dark);
}

.date-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 60px;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(201, 160, 80, 0.3);
}

.date-main-box {
    border: 2px solid rgba(201, 160, 80, 0.4);
    padding: 100px 220px;
    margin-bottom: 35px;
    background: rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.date-row-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.date-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--text-light);
    padding: 15px 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    letter-spacing: 5px;
    font-weight: 500;
    text-align: center;
    min-width: 180px;
}

.date-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.date-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 140px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(201, 160, 80, 0.6);
    padding: 0;
    flex-shrink: 0;
}

.date-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--text-muted);
    letter-spacing: 4px;
    font-weight: 300;
}

.date-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--text-light);
    padding: 15px 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    letter-spacing: 5px;
    font-weight: 500;
    text-align: center;
    min-width: 240px;
}

.time-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px;
    background: rgba(0,0,0,0.4);
    border-radius: 0;
    border: 1px solid rgba(201, 160, 80, 0.2);
}

.time-info i {
    font-size: 36px;
    color: var(--gold);
}

.time {
    font-family: 'Great Vibes', cursive;
    font-size: 52px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
}

/* === CONTADOR REGRESIVO === */
.countdown-section {
    padding: 80px 60px;
    background: var(--dark-bg);
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.time-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px 50px;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    min-width: 140px;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 160, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.time-box:hover::before {
    transform: translateX(100%);
}

.time-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(201, 160, 80, 0.3);
    border-color: var(--gold);
}

.time-value {
    display: block;
    font-size: 72px;
    font-weight: 300;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(201, 160, 80, 0.3);
}

.time-label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* === SECCIÓN DE UBICACIÓN === */
.location-section {
    padding: 80px 60px;
    background: var(--mid-dark);
}

.location-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 60px;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 160, 80, 0.3);
}

.location-icon {
    text-align: center;
    margin-bottom: 30px;
}

.location-icon i {
    font-size: 64px;
    color: var(--gold);
    filter: drop-shadow(0 0 15px rgba(201, 160, 80, 0.4));
}

.location-details {
    text-align: center;
    margin-bottom: 40px;
}

.location-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 1px;
}

.map-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-color) 100%);
    color: var(--dark-bg);
    padding: 18px 40px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-location:hover {
    background: linear-gradient(135deg, #e8c45f 0%, #a0865f 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 160, 80, 0.4);
}

.btn-location i {
    font-size: 20px;
}

.map-preview {
    margin-top: 40px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 160, 80, 0.2);
}

/* === SECCIÓN DE CONTACTO === */
.contact-section {
    padding: 80px 60px;
    background: var(--dark-bg);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 50px 40px;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 160, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--gold), transparent);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover::before {
    opacity: 0.3;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(201, 160, 80, 0.3);
    border-color: var(--gold);
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    border: 2px solid var(--gold);
}

.whatsapp-green {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(18, 140, 126, 0.2) 100%);
    color: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.contact-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-number:hover {
    color: var(--gold);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075e54 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 20px;
}



/* === LISTA DE REGALOS === */
.gifts-section {
    padding: 80px 60px;
    background: var(--dark-bg);
}

.gifts-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 70px 50px;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(201, 160, 80, 0.3);
}

.gifts-icon {
    margin-bottom: 35px;
}

.gifts-icon i {
    font-size: 80px;
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(201, 160, 80, 0.4));
}

.gifts-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.btn-gifts {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-color) 100%);
    color: var(--dark-bg);
    padding: 18px 50px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
}

.btn-gifts:hover {
    background: linear-gradient(135deg, #e8c45f 0%, #a0865f 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 160, 80, 0.4);
}

.btn-gifts i {
    font-size: 20px;
}

/* === CIERRE === */
.closing-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 160, 80, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.closing-content {
    position: relative;
    z-index: 1;
}

.closing-content i {
    font-size: 72px;
    color: var(--gold);
    margin-bottom: 30px;
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(201, 160, 80, 0.5));
}

.closing-content h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
}

.closing-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

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

/* === RESPONSIVE === */

/* Móviles */
@media (max-width: 768px) {
    .hero-section,
    .carousel-section,
    .date-section,
    .countdown-section,
    .location-section,
    .contact-section,
    .gifts-section,
    .closing-section {
        padding: 60px 25px;
    }

    .hero-section {
        padding: 50px 25px 40px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 0.5px;
        line-height: 1.6;
        margin: 0 0 15px 0;
    }

    .hero-subtitle {
        font-size: 48px;
        letter-spacing: 1px;
    }

    .couple-names {
        font-size: 52px;
    }

    #weddingCarousel {
        height: 50vh;
        max-height: 400px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px;
        height: 35px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }

    .date-card {
        padding: 40px 20px;
    }

    .date-main-box {
        padding: 40px 30px;
        margin-bottom: 25px;
        max-width: 95%;
    }

    .date-row-1 {
        flex-direction: column;
        gap: 15px;
    }

    .date-day,
    .date-month {
        font-size: 24px;
        padding: 12px 0;
        letter-spacing: 3px;
        min-width: auto;
    }

    .date-number {
        font-size: 90px;
    }

    .date-year {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .time {
        font-size: 40px;
    }

    .countdown-timer {
        gap: 20px;
    }

    .time-box {
        padding: 30px 35px;
        min-width: 110px;
    }

    .time-value {
        font-size: 52px;
    }

    .time-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .location-card {
        padding: 40px 25px;
    }

    .location-address {
        font-size: 24px;
    }

    .map-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-location {
        font-size: 14px;
        padding: 15px 30px;
        width: 100%;
        justify-content: center;
    }

    .contact-intro p {
        font-size: 20px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 40px 25px;
    }

    .contact-icon {
        width: 85px;
        height: 85px;
        font-size: 42px;
    }

    .btn-whatsapp {
        font-size: 14px;
        padding: 14px 30px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .gifts-card {
        padding: 50px 30px;
    }

    .gifts-text {
        font-size: 22px;
    }

    .btn-gifts {
        font-size: 14px;
        padding: 16px 35px;
    }

    .closing-section {
        padding: 90px 25px;
    }

    .closing-content i {
        font-size: 56px;
    }

    .closing-content h2 {
        font-size: 48px;
    }

    .closing-content p {
        font-size: 20px;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section,
    .carousel-section,
    .date-section,
    .countdown-section,
    .location-section,
    .contact-section,
    .gifts-section,
    .closing-section {
        padding: 70px 40px;
    }

    .hero-title {
        font-size: 40px;
        margin: 0 0 20px 0;
    }

    .hero-subtitle {
        font-size: 58px;
    }

    .couple-names {
        font-size: 80px;
    }

    .section-title {
        font-size: 44px;
    }

    .date-main-box {
        padding: 60px 80px;
    }

    .date-row-1 {
        gap: 40px;
    }

    .date-day,
    .date-month {
        font-size: 30px;
        min-width: 180px;
    }

    .date-number {
        font-size: 120px;
    }

    .date-year {
        font-size: 28px;
    }

    .time-value {
        font-size: 64px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop grande */
@media (min-width: 1400px) {
    .hero-section,
    .carousel-section,
    .date-section,
    .countdown-section,
    .location-section,
    .contact-section,
    .gifts-section,
    .closing-section {
        padding: 100px 80px;
    }

    .hero-title {
        font-size: 56px;
        margin: 0 0 25px 0;
    }

    .hero-subtitle {
        font-size: 82px;
    }

    .couple-names {
        font-size: 110px;
    }

    .section-title {
        font-size: 60px;
    }

    #weddingCarousel {
        height: 75vh;
        max-height: 700px;
    }
}