.tick {
    padding-bottom: 1em;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans,
        Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    width: 70%;
}

.tick-label {
    font-size: 0.375em;
    text-align: center;
}

.tick-group {
    margin: 0 0.25em;
    text-align: center;
}

.tick-credits{
    display:none;
}

/* Page container voor volledige pagina */
.page-container {
    width: 100%;
    min-height: 100vh; /* Changed from height to min-height for scrolling */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    
    /* Achtergrond afbeelding - mobile first (kleinste afbeelding) */
    background-image: url('../img/background-small.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Medium formaat achtergrond (vanaf 768px - tablets) */
@media (min-width: 768px) {
    .page-container {
        background-image: url('../img/background-medium.jpg');
    }
}

/* Large formaat achtergrond (vanaf 1024px - desktop) */
@media (min-width: 1024px) {
    .page-container {
        background-image: url('../img/background-large.jpg');
    }
}

/* Witte waas overlay om foto minder helder te maken */
.page-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 0;
    pointer-events: none;
}

/* Zorg dat content boven de waas komt */
.page-container > * {
    position: relative;
    z-index: 1;
}

/* Basis styling voor volledige pagina */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
}

/* Aankondiging tekst - deftig lettertype */
.announcement {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Namen - sierletters */
.names {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #e74c3c;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    line-height: 1.1;
}

/* Datum tekst - deftig lettertype */
.wedding-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 25px 0 0 0;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .announcement {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .names {
        font-size: 3.5rem;
        margin-bottom: 30px;
    }
    
    .wedding-date {
        font-size: 1.4rem;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .announcement {
        font-size: 1.5rem;
    }
    
    .names {
        font-size: 2.5rem;
    }
    
    .wedding-date {
        font-size: 1.2rem;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: #E8E4D9; /* Licht groen-beige */
    padding: 60px 20px;
    min-height: 100vh;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    color: #2c3e50;
    margin: 20px 0 50px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 kolommen */
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: white;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Text item voor "the story continues..." */
.gallery-text-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b9d 100%);
}

/* Desktop: volledige breedte voor continues tekst */
@media (min-width: 769px) {
    .gallery-text-item {
        grid-column: 1 / -1; /* Volledige breedte alleen op desktop */
        aspect-ratio: auto; /* Verwijder aspect ratio op desktop */
        height: auto; /* Automatische hoogte */
        min-height: 120px; /* Minimale hoogte voor de tekst */
        padding: 40px 20px; /* Meer padding voor betere uitstraling */
    }
}

.gallery-continue {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Tablet/Mobile responsive - 2 kolommen */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobiel: 2 kolommen */
    }
    
    .gallery-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .gallery-container {
        padding: 0 20px;
    }
    
    .gallery-continue {
        font-size: 1.5rem;
    }
    
    .gallery-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-continue {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        gap: 15px;
    }
}

/* RSVP Section */
.rsvp-section {
    background-color: #E8E4D9; /* Zelfde kleur als gallery sectie */
    padding: 40px 20px 80px; /* Minder padding boven, meer onder */
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Decoratieve lijn met strikje */
.divider-line {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c0b5a0 20%, #c0b5a0 80%, transparent);
    margin: 0 auto 30px; /* Minder ruimte onder het strikje */
}

.divider-bow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    background-color: #E8E4D9;
    padding: 0 15px;
}

.rsvp-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0 20px 0; /* Meer ruimte boven RSVP tekst */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.rsvp-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #555;
    margin: 0 0 60px 0; /* Meer ruimte boven de knop */
    font-style: italic;
}

.rsvp-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b9d 100%);
    color: white;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rsvp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.rsvp-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Responsive RSVP */
@media (max-width: 768px) {
    .rsvp-title {
        font-size: 2.5rem;
    }
    
    .rsvp-text {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .rsvp-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .rsvp-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .rsvp-title {
        font-size: 2rem;
    }
    
    .rsvp-text {
        font-size: 1.1rem;
    }
    
    .rsvp-button {
        padding: 12px 35px;
        font-size: 1rem;
    }
}