:root {
            --color-fondo: #FFFFFF;
            --color-secundario: #F4F0ED;
            --color-accent: #b55729;
            --color-accent-light: #e47640;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--color-fondo);
            background-image: url('');
            color: #333;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .banner {
            background-image: /*linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),*/url('img/aloyric4.png');
            background-size: cover;
            background-position: center;
            height: 140vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
         
            color: white;
            /*margin-bottom: 3rem;*/
        }
        

        .banner h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .banner .subtitle {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .banner .date {
            font-size: 2.5rem;
            border: 1px solid #fff;
            padding: 0.5rem 2rem;
            border-radius: 40px;
        }

        
        
        /* Estilos nuevos para el contador circular */
        .countdown {
            background-color: var(--color-fondo);
            padding: 3rem 0;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .countdown h2 {
            color: var(--color-accent);
            margin-bottom: 2rem;
        }
        
        .countdown-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        
        .countdown-circle {
            position: relative;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .countdown-circle::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 2px dashed var(--color-accent);
            z-index: -1;
        }
        
        .countdown-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 5px;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: #666;
        }
        
        .couple-section {
            margin-bottom: 4rem;
            background-color: var(--color-secundario);
            padding: 3rem;
        }
        
         .story-icon {
            font-size: 2.5rem;
           opacity: 0.7;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }
        .couple-photo {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--color-accent-light);
            margin: 0 auto;
            display: block;
        }
        
        .couple-name {
            color: var(--color-accent);
            margin-top: 1.5rem;
        }
        
        .location-section {
    padding: 2rem 0;
    position: relative; /* Necesario para el pseudo-elemento */
}

.location-section::before {
    content: "";
    background-image: url('img/espiga.png');
    width: 80%;
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Ajusta este valor (0 a 1) para cambiar la opacidad */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 5%; /* Ajusta este valor para controlar la altura de la imagen */
    z-index: -1;
}
        
        .location-card {
            background-color: var(--color-secundario);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 3rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            height:100%;
            
        }
        
        .location-icon {
            font-size: 2.5rem;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }
        
        .dresscode-section {
        
            padding: 3rem 0;
            /*margin-bottom: 3rem;*/
            text-align: center;
            background-color: var(--color-fondo);
            
        }
        
        .dresscode-icon {
            font-size: 3rem;
            color: var(--color-accent);
            margin-bottom: 1rem;
           
        }
        
        .rsvp-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            color: white;
            margin-bottom: 3rem;
        }
        
        .rsvp-container {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 10px;
            color: #333;
            border: 1px solid var(--color-accent-light);
        }
        
        .music-section {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .music-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--color-secundario);
            margin: 0 auto 2rem;
            display: block;
        }
        
        .btn-primary {
            background-color: var(--color-accent);
            border-color: var(--color-accent);
        }
        
        .btn-primary:hover {
            background-color: var(--color-accent-light);
            border-color: var(--color-accent-light);
        }
        .fotos {
         background-color: var(--color-secundario);
        }
        
        @media (max-width: 768px) {
            .banner {
                height: 80vh;
             
            }
            .banner h1 {
                font-size: 2rem;
            }
            
            .banner .subtitle {
                font-size: 1.5rem;
            }
            
            .banner .date {
                font-size: 1.8rem;
            }
            
            .couple-photo {
                width: 200px;
                height: 200px;
                margin-bottom: 2rem;
            }
            
            .countdown-circle {
                width: 70px;
                height: 70px;
            }
            
            .countdown-number {
                font-size: 1rem;
            }
            
            .countdown-label {
                font-size: 0.75rem;
            }
        
        }
        .textonov {
          text-align: justify;
        }