/* --- CSS - VARIABLES & RESET --- */
:root {
    --c-primary: #244a34;
    --c-primary-light: #2c5a3f;
    --c-accent: #E5B82A;
    --c-accent-hover: #c9a022;
    --c-dark: #1a1a1a;
    --c-text: #4a4a4a;
    --c-text-light: #7a7a7a;
    --c-bg: #ffffff;
    --c-bg-alt: #f8f9fa;

    --font-heading: 'Playfair Display', serif;
    --font-text: 'Montserrat', sans-serif;

    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--c-text);
    background-color: var(--c-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--c-dark);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--c-accent);
}

.bg-light {
    background-color: var(--c-bg-alt);
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 25px;
}

/* --- TYPOGRAFIE & HLAVIČKY SEKCE --- */
.subtitle {
    display: block;
    color: var(--c-accent);
    font-family: var(--font-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--c-text-light);
}

/* --- TLAČÍTKA --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background-color: var(--c-accent);
    color: var(--c-dark);
    box-shadow: 0 4px 15px rgba(229, 184, 42, 0.3);
}

.btn-primary:hover {
    background-color: var(--c-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 184, 42, 0.4);
}

.btn-outline {
    border-color: var(--c-accent);
    color: var(--c-accent);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--c-accent);
    color: var(--c-dark);
}

.btn-nav {
    padding: 10px 28px;
    background-color: var(--c-accent);
    color: var(--c-dark) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: none !important;
    border: none;
}

.btn-nav:hover {
    background-color: var(--c-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-block {
    width: 100%;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* --- GLASSMORPHISM NAVIGACE --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-left: -150px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    color: var(--c-bg);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.logo-text-line1 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-text-line2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

header.scrolled .logo a {
    color: #000;
    text-shadow: none;
}

.logo-img {
    height: 90px;
    width: 90px;
    transition: var(--transition);
}

.logo-black {
    display: none;
}

header.scrolled .logo-white {
    display: none;
}

header.scrolled .logo-black {
    display: block;
}

.footer-logo .logo-img {
    margin: 0 auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--c-bg);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    padding: 5px 0;
}

header.scrolled .nav-links a {
    color: var(--c-dark);
    text-shadow: none;
}

.nav-links a:hover {
    color: var(--c-accent);
}

header.scrolled .nav-links a:hover {
    color: var(--c-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--c-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

header.scrolled .nav-links a::after {
    background-color: var(--c-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-special-link {
    color: var(--c-bg);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    padding: 5px 0;
    margin-right: 15px;
}

header.scrolled .nav-special-link {
    color: var(--c-dark);
    text-shadow: none;
}

.nav-special-link:hover {
    color: var(--c-accent);
}

header.scrolled .nav-special-link:hover {
    color: var(--c-primary);
}

.nav-special-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--c-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-special-link:hover::after {
    transform: scaleX(1);
}

header.scrolled .nav-special-link:hover::after {
    background-color: var(--c-primary);
}

.mobile-only-link {
    display: none;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--c-bg);
    cursor: pointer;
    z-index: 1001;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

header.scrolled .hamburger {
    color: var(--c-primary);
    text-shadow: none;
}

/* --- HERO SEKCE --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: url('/galerie/hero.webp') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--c-bg);
    max-width: 800px;
}

.hero-content h1 {
    color: var(--c-bg);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--c-accent);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content .subtitle {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.scroll-down {
    color: var(--c-bg);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.scroll-down:hover {
    color: var(--c-accent);
}

.scroll-down i {
    animation: bounce 2s infinite;
}

/* --- O NÁS --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--c-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

.quick-facts {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.quick-facts .fact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--c-dark);
}

.quick-facts i {
    color: var(--c-accent);
    font-size: 1.5rem;
}

/* --- VYBAVENÍ GRID --- */
.bg-pattern {
    background-color: var(--c-bg-alt);
    background-image: radial-gradient(var(--c-accent) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--c-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-accent);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(229, 184, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--c-accent);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--c-text-light);
}

/* --- FOTOGALERIE MOZAIKA --- */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 15px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.mosaic-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-mosaic:hover .mosaic-item {
    filter: brightness(0.85);
}

.gallery-mosaic .mosaic-item:hover {
    filter: brightness(1.1);
}

.item-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-sub1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-sub2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.item-sub3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.item-sub4 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.show-all-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--c-bg);
    color: var(--c-dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.show-all-btn:hover {
    background: var(--c-accent);
    color: #fff;
}

/* --- FULLSCREEN LIGHTBOX --- */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    color: #fff;
}

.close-lightbox-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-lightbox-btn:hover {
    color: var(--c-accent);
}

.lightbox-counter {
    font-family: var(--font-text);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.lightbox-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn:hover {
    background: var(--c-accent);
    color: var(--c-dark);
}

.lightbox-btn.prev {
    left: 40px;
}

.lightbox-btn.next {
    right: 40px;
}

/* --- REFERENCE --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--c-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--c-primary);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(229, 184, 42, 0.15);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.author-info strong {
    display: block;
    color: var(--c-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CENÍK --- */
.seasonal-pricing {
    background: var(--c-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.season-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.season-row:last-child {
    border-bottom: none;
}

.season-row:hover {
    background: rgba(229, 184, 42, 0.05);
    transform: translateX(5px);
}

.season-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--c-dark);
}

.season-dates {
    color: var(--c-text-light);
    font-size: 0.95rem;
}

.season-prices {
    text-align: right;
}

.price-main {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.price-main span {
    font-family: var(--font-text);
    font-size: 1rem;
    font-weight: 400;
}

.price-sub {
    font-size: 1.05rem;
    color: var(--c-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.price-micro {
    font-size: 0.85rem;
    color: var(--c-text-light);
}

.additional-info {
    margin-top: 40px;
    background: rgba(229, 184, 42, 0.05);
    border: 1px solid rgba(229, 184, 42, 0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 3px;
}

/* --- STYLING PRO UBYTOVACÍ ŘÁD A FAQ --- */
.rules-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 65px;
}

.rules-card {
    background: var(--c-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.pdf-announce-card {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.rules-card h3 {
    font-family: var(--font-text);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rules-lead {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--c-text);
}

.pdf-placeholder-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(36, 74, 52, 0.06);
    color: var(--c-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px dashed rgba(36, 74, 52, 0.3);
}

/* FAQ Akordeon */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--c-dark);
}

.faq-item {
    background: var(--c-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--c-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: var(--c-accent);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: var(--c-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- INTERAKTIVNÍ MAPA --- */
.map-section {
    width: 100%;
    line-height: 0;
    display: block;
    border-top: 1px solid #eaeaea;
    filter: grayscale(40%);
    transition: filter 0.4s ease;
}

.map-section:hover {
    filter: grayscale(0%);
}

/* --- GDPR STYLING --- */
.gdpr-disclaimer {
    font-size: 0.8rem;
    color: var(--c-text-light);
    line-height: 1.4;
    margin: 15px 0 5px;
}

.gdpr-disclaimer a {
    color: var(--c-primary);
    text-decoration: underline;
    font-weight: 500;
}

.gdpr-disclaimer a:hover {
    color: var(--c-accent-hover);
}

/* --- KALENDÁŘ --- */
.calendar-wrapper {
    background: var(--c-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.calendar-wrapper iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

/* --- REZERVAČNÍ SEKCE & FORMULÁŘ --- */
.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.reservation-text p {
    font-size: 1.1rem;
    color: var(--c-text);
    margin-bottom: 30px;
}

.reservation-perks {
    list-style: none;
}

.reservation-perks li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c-dark);
}

.reservation-perks i {
    color: var(--c-accent);
    background: rgba(229, 184, 42, 0.15);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elegant-form {
    background: var(--c-bg);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--c-text);
}

.form-section-title {
    font-family: var(--font-text);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-primary);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section-title:first-child {
    margin-top: 0;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--c-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 15px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--c-dark);
    outline: none;
    transition: var(--transition);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #aaa;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--c-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(229, 184, 42, 0.1);
}

.guest-dropdown-wrapper {
    position: relative;
}

.guest-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 15px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--c-dark);
    cursor: pointer;
    transition: var(--transition);
}

.guest-trigger:hover {
    border-color: var(--c-accent);
}

.placeholder-text {
    color: #aaa;
}

.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--c-bg);
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.guest-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.guest-divider {
    border: none;
    height: 1px;
    background: #eaeaea;
    margin: 5px 0;
}

.guest-info strong {
    display: block;
    color: var(--c-dark);
    font-size: 1.05rem;
}

.guest-info span {
    font-size: 0.85rem;
    color: var(--c-text-light);
}

.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ctrl-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: var(--c-bg);
    color: var(--c-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ctrl-btn:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.counter input {
    width: 30px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--c-dark);
    pointer-events: none;
    padding: 0;
}

.counter input[type=number]::-webkit-inner-spin-button,
.counter input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.counter input[type=number] {
    -moz-appearance: textfield;
}

.guest-warning {
    color: #d32f2f;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

/* --- PATIČKA & SOCIÁLNÍ SÍTĚ --- */
.site-footer {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-header {
    margin-bottom: 50px;
}

.footer-header h2 {
    color: #fff;
    font-size: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.footer-contact-item .icon {
    font-size: 2rem;
    color: var(--c-accent);
    margin-bottom: 15px;
}

.footer-contact-item h4 {
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-text);
    font-size: 1.1rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--c-accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--c-accent);
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--c-accent);
    color: var(--c-dark) !important;
    transform: translateY(-3px);
}

/* --- PLOVOUCÍ CTA TLAČÍTKO (DYNAMICKÉ PULZOVÁNÍ) --- */
.floating-cta-btn {
    position: fixed;
    bottom: -80px;
    opacity: 0;
    pointer-events: none;
    right: 30px;
    background-color: var(--c-accent);
    color: var(--c-dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-text);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta-btn.visible {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
    animation: cta-pulse 3s infinite ease-in-out;
    animation-delay: 1s; /* Start pulsing after it enters */
}

.floating-cta-btn:hover {
    background-color: var(--c-accent-hover);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(225, 184, 42, 0.4);
    animation-play-state: paused;
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    50% {
        box-shadow: 0 10px 35px rgba(229, 184, 42, 0.5);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }
}

/* --- POP-UP WIDGET --- */
.cta-popup-box {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 420px;
    max-height: 75vh;
    background-color: var(--c-bg);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9998;

    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.4s;
}

.cta-popup-box::-webkit-scrollbar {
    display: none;
}

.cta-popup-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* FIX: Nastavení rozbalovacího menu v pop-upu pro zamezení hluchého místa s nekonečným scrollováním */
.cta-popup-box .guest-dropdown {
    position: relative;
    top: 0;
    box-shadow: none;
    border: 1px solid #eaeaea;
    margin-top: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
}

.cta-popup-box .guest-dropdown.active {
    display: block;
}

.cta-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 5;
}

.cta-popup-header h3 {
    font-family: var(--font-text);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#closeCtaPopupBtn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--c-text-light);
    cursor: pointer;
    transition: color 0.2s;
}

#closeCtaPopupBtn:hover {
    color: #ff4d4d;
}

.cta-popup-body {
    padding: 25px;
}

.popup-form {
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.popup-form .input-group {
    margin-bottom: 18px;
}

.popup-form .input-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.popup-form .input-group input {
    padding: 11px 12px;
    font-size: 0.95rem;
}

/* --- ANIMACE OBSERVERU --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-instant {
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONZIVITA --- */
@media (max-width: 1024px) {
    .logo {
        margin-left: 0;
    }

    .about-wrapper,
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .elegant-form {
        padding: 40px 30px;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .quick-facts {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .quick-facts .fact {
        white-space: nowrap;
    }

    .hamburger {
        display: block;
    }

    .logo-img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .logo-text-line1 {
        font-size: 0.65rem !important;
    }
    
    .logo-text-line2 {
        font-size: 1.15rem !important;
    }

    .mobile-only-link {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--c-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: #fff;
        text-shadow: none;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .season-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 20px;
    }

    .season-row:hover {
        transform: none;
    }

    .season-prices {
        text-align: left;
    }

    .gallery-mosaic {
        display: block;
        padding: 0;
        margin: 0;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

    .mosaic-item {
        width: 100%;
        height: 350px;
        max-width: none;
        border-radius: 0;
    }

    .mosaic-item:not(.item-main) {
        display: none;
    }

    .show-all-btn {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        box-shadow: var(--shadow-lg);
        width: max-content;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-btn.prev {
        left: 10px;
    }

    .lightbox-btn.next {
        right: 10px;
    }

    .lightbox-header {
        padding: 15px;
    }

    .cta-popup-box {
        right: 15px;
        left: 15px;
        width: auto;
        bottom: 85px;
        max-height: 80vh;
    }

    .floating-cta-btn {
        right: 15px;
        bottom: 20px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   FULLCALENDAR – VLASTNÍ VZHLED (ladí s motivem webu)
   ============================================================ */

#fullcalendar {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Legenda volno / obsazeno */
.calendar-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
    font-family: var(--font-text);
    font-size: 0.9rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.legend-free i  { color: #e0e0e0; font-size: 0.65rem; }
.legend-busy i  { color: var(--c-primary); font-size: 0.65rem; }

/* Záhlaví – tlačítka Předchozí / Dnes / Další */
.fc .fc-button-primary {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
    font-family: var(--font-text);
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 16px;
    transition: var(--transition);
    box-shadow: none;
}

.fc .fc-button-primary:hover,
.fc .fc-button-primary:focus {
    background-color: var(--c-primary-light);
    border-color: var(--c-primary-light);
    box-shadow: none;
}

.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
    background-color: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-dark);
}

/* Nadpis měsíce */
.fc .fc-toolbar-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--c-dark);
}

/* Záhlaví dnů (Po, Út, ...) */
.fc-theme-standard th {
    background-color: var(--c-bg-alt);
    padding: 12px 0;
    border-color: #eee;
    font-family: var(--font-text);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-light);
}

/* Buňky dnů */
.fc-theme-standard td {
    border-color: #f0f0f0;
}

/* Číslo dne */
.fc .fc-daygrid-day-number {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--c-text);
    padding: 6px 10px;
}

/* Dnešní den */
.fc .fc-day-today {
    background-color: rgba(229, 184, 42, 0.08) !important;
}

.fc .fc-day-today .fc-daygrid-day-number {
    background-color: var(--c-accent);
    color: var(--c-dark);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Události – "Obsazeno" */
.fc-event {
    border: none !important;
    border-radius: 5px;
    font-family: var(--font-text);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    cursor: default;
}

.fc-event:hover {
    opacity: 0.9;
}

/* Responzivita kalendáře na mobilech */
@media (max-width: 600px) {
    #fullcalendar {
        padding: 14px 10px;
    }

    .fc .fc-toolbar-title {
        font-size: 1.2rem;
    }

    .fc .fc-button-primary {
        padding: 6px 10px;
        font-size: 0.82rem;
    }

    .fc-theme-standard th {
        font-size: 0.7rem;
        padding: 8px 0;
    }
}

/* ============================================================
   TLAČÍTKO "KUDY K NÁM" (Google Maps trasa)
   ============================================================ */

.btn-directions {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.btn-directions:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-2px);
}

.btn-directions i {
    font-size: 1.05rem;
}

/* ============================================================
   HERO – dům víc vlevo, text vpravo (aktualizováno)
   ============================================================ */

.hero {
    background-position: 85% center !important;
    background-size: 130% !important;
}

.hero-content-right-tree {
    margin-left: auto;
    margin-right: 10%; /* Posun lehce doprava */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.12); /* Pouze 12% ztmavení – velmi jemné */
    backdrop-filter: blur(2px); /* Téměř neviditelné rozostření, aby to nevypadalo jako skvrna */
    -webkit-backdrop-filter: blur(2px);
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Extrémně nenápadný okraj jen pro vymezení prostoru */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Téměř neviditelný stín */
}

.hero-content-right-tree h1 {
    font-size: 5.5rem !important;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); /* Zvýraznění stínu pro lepší čitelnost na stromech */
}

.hero-content-right-tree p {
    text-align: center;
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-content-right-tree .hero-buttons {
    justify-content: center;
    width: 100%;
}


/* ============================================================
   KARUSEL RECENZÍ
   ============================================================ */

.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin: 0 -10px;
}

.testimonials-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Každá karta v karuselu — šíře je řízena flex */
.testimonials-track .testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: var(--c-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--c-primary);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonials-track .testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Navigační šipky */
.testimonial-nav {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--c-primary);
    background: var(--c-bg);
    color: var(--c-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.testimonial-nav:hover {
    background: var(--c-primary);
    color: #fff;
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
}

/* Tečky (dots) */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--c-primary);
    transform: scale(1.3);
}

/* GDPR Watermark */
.gdpr-content {
    position: relative;
    overflow: hidden;
}

.gdpr-content::before {
    content: '';
    position: fixed;
    top: 65%;
    left: 75%;
    transform: translate(-50%, -50%) rotate(-20deg);
    width: 140vw;
    height: 140vh;
    background-image: url('galerie/podbrizoucerna.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.gdpr-content .container {
    position: relative;
    z-index: 1;
}

/* Alternating Watermark Sections */
.watermark-right, .watermark-left {
    position: relative;
    overflow: hidden;
}

.watermark-right::before, .watermark-left::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 140vw;
    height: 140vh;
    background-image: url('galerie/podbrizoucerna.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.watermark-right::before {
    left: 80%;
    transform: translate(-50%, -50%) rotate(-20deg);
}

.watermark-left::before {
    left: 20%;
    transform: translate(-50%, -50%) rotate(20deg);
}

.watermark-right .container, .watermark-left .container {
    position: relative;
    z-index: 1;
}

/* Responzivita karuselu a hero */
@media (max-width: 1100px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 992px) {
    .hero-content-right-tree {
        margin-right: auto;
        align-items: center;
        text-align: center;
    }
    .hero-content-right-tree p {
        text-align: center;
    }
    .hero-content-right-tree .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonials-track {
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }

    .hero {
        background-size: cover !important;
        background-position: 70% center !important;
    }
    .hero-content-right-tree h1 {
        font-size: 3rem !important;
    }
}

/* Úplně malé displeje (např. iPhone SE) */
@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .hero-content-right-tree h1 {
        font-size: 2.2rem !important;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .elegant-form {
        padding: 25px 15px;
    }

    .footer-map iframe {
        height: 250px !important;
    }
}

/* --- MODÁLNÍ OKNO ÚSPĚŠNÉHO ODESLÁNÍ --- */
.success-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal-overlay.active .success-modal-box {
    transform: scale(1) translateY(0);
}

.success-modal-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
}

.success-modal-icon svg {
    width: 90px;
    height: 90px;
}

/* Animace kroužku */
.checkmark-circle {
    stroke: var(--c-accent);
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: none;
}

.success-modal-overlay.active .checkmark-circle {
    animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

/* Animace fajfky */
.checkmark-check {
    stroke: var(--c-primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: none;
}

.success-modal-overlay.active .checkmark-check {
    animation: stroke-check 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}

@keyframes stroke-circle {
    100% { stroke-dashoffset: 0; }
}

@keyframes stroke-check {
    100% { stroke-dashoffset: 0; }
}

.success-modal-box h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--c-dark);
    margin-bottom: 14px;
}

.success-modal-box p {
    color: var(--c-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.success-modal-box .btn {
    min-width: 220px;
}
