:root {
    --bg-color: #F9F5F0;
    --text-color: #4A4A4A;
    --accent-color: #C17C5F;
    /* Terracotta */
    --secondary-accent: #A4B494;
    /* Sage */
    --card-bg: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.big-font {
    font-size: 4.5rem;
    line-height: 1;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.medium-font {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* --- Layout --- */
.section-padding {
    padding: 5rem 1rem;
    position: relative;
}

/* --- Shapes --- */
.arch-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 10px 30px rgba(193, 124, 95, 0.2);
    transition: transform 0.5s ease;
}

.arch-image:hover {
    transform: translateY(-10px);
}

.arch-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 200px 200px 20px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(193, 124, 95, 0.1);
    height: 100%;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
}

.hero-arch-container {
    width: 300px;
    margin: 2rem auto;
    position: relative;
}

.hero-arch-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--accent-color);
    border-radius: 220px 220px 0 0;
    z-index: -1;
    opacity: 0.5;
}

/* --- Buttons --- */
.btn-boho {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(193, 124, 95, 0.3);
}

.btn-boho:hover {
    background-color: #A05D43;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* --- Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    background: #fff;
    width: 80px;
    height: 100px;
    border-radius: 40px 40px 0 0;
    /* Arch shape */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(193, 124, 95, 0.2);
}

.countdown-number {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 700;
}

.countdown-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- Decorations --- */
.sun-shape {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.pampas-decoration {
    font-size: 3rem;
    color: var(--secondary-accent);
    opacity: 0.5;
    animation: sway 3s infinite alternate ease-in-out;
}

@keyframes sway {
    from {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(5deg);
    }
}

/* --- Music Button --- */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(193, 124, 95, 0.4);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .big-font {
        font-size: 3.5rem;
    }

    .hero-arch-container {
        width: 80%;
    }

    .arch-image {
        height: 350px;
    }
}

/* --- Boho Timeline --- */
.boho-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.boho-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item .time {
    width: 80px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    padding-right: 20px;
}

.timeline-item .icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 1.2rem;
}

.timeline-item .info {
    padding-left: 20px;
    flex: 1;
}

.timeline-item .info h3 {
    font-size: 1.5rem;
    margin: 0;
}

.timeline-item .info p {
    margin: 0;
    color: var(--secondary-accent);
    font-weight: 500;
}

/* --- Boho Gallery --- */
.boho-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item-arch img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 150px 150px 0 0;
    transition: transform 0.3s ease;
}

.gallery-item-rect img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.gallery-item-arch:hover img,
.gallery-item-rect:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(193, 124, 95, 0.2);
}