/* Sencilla Demo Styles */
:root {
    --bg-color: #fcfbf9;
    --text-main: #333;
    --accent: #b08d57;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    text-align: center;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80&w=1200') center/cover;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-content .date {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-section, .location-section {
    padding: 4rem 2rem;
}

.countdown-section h2, .location-section h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

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

.time-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-width: 100px;
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-serif);
}

.map-container {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #927445;
}

.itinerary-section, .details-section, .info-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.itinerary-section h2, .details-section h2, .info-section h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

/* Itinerary */
.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.itinerary-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

.itinerary-item .time {
    font-weight: 600;
    color: var(--accent);
}

.itinerary-item .event {
    text-align: right;
}

/* Details */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent);
}

.detail-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.detail-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.detail-card .sub-detail {
    font-size: 0.9rem;
    color: #666;
}

/* Info Section */
.info-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

footer {
    padding: 3rem 1rem;
    background-color: #2c2c2c;
    color: white;
}

.made-by {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.made-by a {
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 3rem; }
    .countdown { gap: 1rem; }
    .time-box { min-width: 70px; padding: 1rem; }
    .time-box span { font-size: 1.8rem; }
    .countdown-section, .location-section, .itinerary-section, .details-section, .info-section {
        padding: 3rem 1rem;
    }
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .itinerary-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .itinerary-item .event {
        text-align: center;
    }
}
