/* _content/Svatba/Components/Components/CountdownTimer.razor.rz.scp.css */
.countdown-container[b-gscce7433k] {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.countdown-timer[b-gscce7433k] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.time-unit[b-gscce7433k] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-unit:hover[b-gscce7433k] {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.time-value[b-gscce7433k] {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.time-label[b-gscce7433k] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.expired-message[b-gscce7433k] {
    animation: pulse-b-gscce7433k 2s infinite;
}

@keyframes pulse-b-gscce7433k {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .countdown-timer[b-gscce7433k] {
        gap: 1rem;
    }

    .time-unit[b-gscce7433k] {
        min-width: 80px;
        padding: 1rem;
    }

    .time-value[b-gscce7433k] {
        font-size: 2rem;
    }

    .time-label[b-gscce7433k] {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer[b-gscce7433k] {
        gap: 0.5rem;
    }

    .time-unit[b-gscce7433k] {
        min-width: 60px;
        padding: 0.8rem;
    }

    .time-value[b-gscce7433k] {
        font-size: 1.5rem;
    }

    .time-label[b-gscce7433k] {
        font-size: 0.7rem;
    }
}
/* _content/Svatba/Components/Components/PasswordProtection.razor.rz.scp.css */
.password-overlay[b-vyr57b6l6d] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fffaf7 0%, #f5e6d3 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.password-container[b-vyr57b6l6d] {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.password-card[b-vyr57b6l6d] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(211, 84, 0, 0.2);
    padding: 40px;
    animation: slideIn-b-vyr57b6l6d 0.5s ease-out;
    border: 2px solid #f5e6d3;
}

@keyframes slideIn-b-vyr57b6l6d {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-header[b-vyr57b6l6d] {
    text-align: center;
    margin-bottom: 30px;
}

.password-header h1[b-vyr57b6l6d] {
    font-size: 4rem;
    margin: 0 0 20px 0;
    animation: bounce-b-vyr57b6l6d 1s ease-in-out infinite;
}

@keyframes bounce-b-vyr57b6l6d {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.password-header h2[b-vyr57b6l6d] {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: #d35400;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.password-header p[b-vyr57b6l6d] {
    color: #5a4632;
    font-size: 1rem;
    margin: 0;
}

.password-form[b-vyr57b6l6d] {
    margin-bottom: 30px;
}

.password-input[b-vyr57b6l6d] {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-family: inherit;
    border: 2px solid #f5e6d3;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    margin-bottom: 15px;
    color: #5a4632;
    background-color: #fffbf7;
    box-shadow: 0 2px 8px rgba(211, 84, 0, 0.05);
    letter-spacing: 0.3px;
}

.password-input:focus[b-vyr57b6l6d] {
    border-color: #d35400;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.12), 0 4px 12px rgba(211, 84, 0, 0.15);
    transform: translateY(-1px);
}

.password-input.error[b-vyr57b6l6d] {
    border-color: #f44336;
    background-color: #fff5f5;
    box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.1), 0 2px 8px rgba(244, 67, 54, 0.15);
    animation: shake-b-vyr57b6l6d 0.5s ease;
}

@keyframes shake-b-vyr57b6l6d {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.error-message[b-vyr57b6l6d] {
    color: #f44336;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 10px;
    background: #ffebee;
    border-radius: 8px;
    text-align: center;
    animation: fadeIn-b-vyr57b6l6d 0.3s ease;
}

@keyframes fadeIn-b-vyr57b6l6d {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.password-button[b-vyr57b6l6d] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background-color: #d35400;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.password-button:hover[b-vyr57b6l6d] {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

.password-button:active[b-vyr57b6l6d] {
    transform: translateY(0);
}

.password-footer[b-vyr57b6l6d] {
    text-align: center;
    color: #5a4632;
    font-size: 0.95rem;
}

.password-footer p[b-vyr57b6l6d] {
    margin: 0;
}
/* _content/Svatba/Components/Layout/MainLayout.razor.rz.scp.css */
.navbar-nav[b-lwiqwz7t3q] {
    text-align: center; /* Zarovná položky menu na mobilu */
}

.navbar-nav .nav-item[b-lwiqwz7t3q] {
    padding: 5px 10px;
}

.navbar-toggler[b-lwiqwz7t3q] {
    padding: 10px; /* Lepší klikatelnost tlačítka */
}


.navbar[b-lwiqwz7t3q] {
    height: 60px; /* původně var(--navbar-height) */
    background-color: #f9f3f0; /* světlá, jemná barva menu */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    justify-content: center;
    align-items: end;
}

@media (min-width: 768px) {
    .navbar[b-lwiqwz7t3q] {
        height: 0;
        padding: 0;
    }
}

.navbar__menu[b-lwiqwz7t3q] {
    background-color: #f9f3f0; /* světlá, jemná barva menu */
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0;
    order: 1;
    width: 100%;
    position: fixed;
    top: 60px; /* původně var(--navbar-height) */
    left: 0;
    max-height: 100%;
    transition: max-height .3s;
    overflow: hidden;
}

.navbar__menu.closed[b-lwiqwz7t3q] {
    display: block;
    max-height: 0;
}

@media (min-width: 768px) {
    .navbar__menu.closed[b-lwiqwz7t3q] {
        max-height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: center; /* ✅ zarovnání na střed */
        align-items: center;     /* vertikální zarovnání */
        top: 0;
        height: 60px;
        gap: 2rem;
        padding-left: 0; /* odstraníme dřívější posun doleva */
    }
}

.navbar a[b-lwiqwz7t3q] {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: #d35400;
    transition: color 0.3s;
}

.navbar__menu a:last-child[b-lwiqwz7t3q] {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .navbar__menu a:last-child[b-lwiqwz7t3q] {
        padding-bottom: 10px;
    }
}

.navbar img[b-lwiqwz7t3q] {
    position: absolute;
    left: 13px;
    top: 84%;
    width: 98px;
    transform: translateY(-50%);
    filter: invert(1);
    background: #fdcfb8;
    border-radius: 50%;
    padding: 4px;
    z-index: 50;
}

.navbar-toggle-label[b-lwiqwz7t3q] {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    order: 2;
}

@media (min-width: 768px) {
    .navbar__toggle[b-lwiqwz7t3q] {
        display: none;
    }
}


/* --- Hlavní kontejner --- */
.container[b-lwiqwz7t3q] {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #fff0f0, #fff8e7); /* pastelový gradient pro hlavní obsah */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* --- Countdown --- */
.countdown-section[b-lwiqwz7t3q] {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #ffd6d6, #ffe6b3); /* výrazný pastelový box */
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- Sekce článků --- */
article.section[b-lwiqwz7t3q] {
    margin: 3rem 0;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #fce4ec, #fff0f5); /* jemné pastelové odstíny */
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    border: 1px solid #f5c6a5;
}

article.section h2[b-lwiqwz7t3q] {
    color: #d35400;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* --- Fotogalerie --- */
.photo-gallery[b-lwiqwz7t3q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.photo-gallery img[b-lwiqwz7t3q] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo-gallery img:hover[b-lwiqwz7t3q] {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* --- Formuláře a tlačítka --- */
input[b-lwiqwz7t3q], textarea[b-lwiqwz7t3q] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

button[b-lwiqwz7t3q], input[type="submit"][b-lwiqwz7t3q] {
    padding: 0.6rem 1.2rem;
    background-color: #d35400;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover[b-lwiqwz7t3q], input[type="submit"]:hover[b-lwiqwz7t3q] {
    background-color: #e67e22;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wedding-nav ul[b-lwiqwz7t3q] {
        flex-direction: column;
        gap: 1rem;
    }

    .container[b-lwiqwz7t3q] {
        padding: 1rem;
    }

    article.section[b-lwiqwz7t3q] {
        padding: 1rem;
    }
}
/* _content/Svatba/Components/Pages/Home.razor.rz.scp.css */
.section[b-lchju1ryci] {
    margin: 3rem 0;
    padding: 0 1rem;
}

.countdown-section[b-lchju1ryci] {
    text-align: center;
    margin: 2rem 0;
}

.photo-gallery[b-lchju1ryci] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.photo-gallery img[b-lchju1ryci] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

form input[b-lchju1ryci], form textarea[b-lchju1ryci] {
    width: 100%;
    max-width: 400px;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button[b-lchju1ryci] {
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: #d35400;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover[b-lchju1ryci] {
    background-color: #e67e22;
}

article[b-lchju1ryci]{
    scroll-margin-top: 50px;
}

.wedding-intro[b-lchju1ryci] {
    background-color: #fffaf7;
    padding: 4rem 1.5rem;
    text-align: center;
    color: #5a4632;
}

.wedding-intro h1[b-lchju1ryci] {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: #d35400;
    margin-bottom: 1rem;
}

.wedding-intro p[b-lchju1ryci] {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0.5rem auto;
    line-height: 1.6;
}

.wedding-about[b-lchju1ryci] {
    padding: 4rem 1.5rem;
    text-align: center;
    color: #5a4632;
}

.wedding-about h2[b-lchju1ryci] {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #d35400;
    margin-bottom: 1.5rem;
}

.wedding-about p[b-lchju1ryci] {
    font-size: 1.1rem;
    margin: 0.5rem auto;
    line-height: 1.6;
}
