:root {
    --marble-white: #F9F9F9;
    --vein-grey: #808080;
    --rose-gold: #B76E79;
    --dark-grey: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-grey);
    background-color: var(--marble-white);
    overflow-x: hidden;
}

.serif-title {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    color: var(--dark-grey);
    letter-spacing: 1px;
}

.names-font {
    font-family: 'Bodoni Moda', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin: 1rem 0;
}

.subtitle-font {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose-gold);
    font-weight: 300;
}

.section-padding {
    padding: 5rem 0;
}

.bg-marble {
    background-color: #f4f4f4;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 1.79 4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.bg-white {
    background-color: #ffffff;
}

/* Music Control */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-music-marmol {
    background-color: white;
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-music-marmol:hover {
    background-color: var(--rose-gold);
    color: white;
    transform: rotate(360deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-color: #f9f9f9;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.marble-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    /* Marble texture */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.geometric-frame {
    border: 2px solid var(--rose-gold);
    padding: 3rem;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
}

.geometric-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--vein-grey);
    z-index: -1;
}

.hero-image-container {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--rose-gold);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-font {
    font-size: 1.2rem;
    color: var(--dark-grey);
    letter-spacing: 5px;
    font-weight: 300;
    margin-top: 1rem;
}

.location-font {
    font-size: 1rem;
    color: var(--vein-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Geometric Divider */
.geometric-divider {
    height: 2px;
    width: 100px;
    background-color: var(--rose-gold);
    margin: 0 auto;
    position: relative;
}

.geometric-divider::after {
    content: '◇';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0 10px;
    color: var(--rose-gold);
}

.geometric-divider-small {
    height: 1px;
    width: 50px;
    background-color: var(--rose-gold);
    margin: 0 auto;
}

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

.countdown-box {
    background-color: white;
    border: 1px solid var(--rose-gold);
    padding: 2rem;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.countdown-number {
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    color: var(--dark-grey);
    line-height: 1;
}

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

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

.gallery-item {
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--rose-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '◇';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background-color: white;
    border: 2px solid var(--rose-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--rose-gold);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--rose-gold);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--rose-gold);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--rose-gold);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--rose-gold) transparent transparent;
}

.right::after {
    left: -15px;
}

.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.content h3 {
    color: var(--rose-gold);
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.content p {
    color: var(--dark-grey);
}

/* Cards */
.marmol-card {
    background: white;
    padding: 3rem 2rem;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.marmol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--rose-gold);
}

.marmol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-geometric {
    font-size: 2rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.time-text {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    color: var(--dark-grey);
}

/* Buttons */
.btn-marmol {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--dark-grey);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-marmol:hover {
    background-color: var(--rose-gold);
    color: white;
    text-decoration: none;
}

.btn-marmol-outline {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: var(--dark-grey);
    border: 1px solid var(--dark-grey);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-marmol-outline:hover {
    background-color: var(--dark-grey);
    color: white;
    text-decoration: none;
}

.btn-marmol-light {
    display: inline-block;
    padding: 15px 50px;
    background-color: white;
    color: var(--dark-grey);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-marmol-light:hover {
    background-color: var(--rose-gold);
    color: white;
    text-decoration: none;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-grey);
    color: white;
    position: relative;
}

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

    .geometric-frame {
        padding: 1.5rem;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-box {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid var(--rose-gold);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--rose-gold) transparent transparent;
    }

    .left::after,
    .right::after {
        left: 15px;
    }

    .right {
        left: 0%;
    }
}