/* Sections - Page Layout */

/* Section Headers */
.section-header {
    margin-bottom: var(--space-8);
    max-width: var(--max-width-8xl);
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-6xl));
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(var(--font-size-sm), 3vw, var(--font-size-xl));
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    max-width: var(--max-width-6xl);
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background-color: transparent !important;
    color: var(--gray-900); /* tmavý text */
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--navbar-height));
    min-height: calc((var(--vh, 1vh) * 100));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-feature-icon {
    font-size: var(--font-size-3xl);
    flex-shrink: 0;
    margin-top: var(--space-0);
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-6xl));
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--abel-red) 0%, var(--abel-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(var(--font-size-sm), 3vw, var(--font-size-xl));
    color: var(--abel-red);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-8);
    line-height: var(--line-height-normal);
}

.hero-sidebar {
    position: relative;
    z-index: 2;
}









.hero-features {
    margin-bottom: var(--space-10);
}

.hero-feature {
    margin-bottom: var(--space-4);
    color: var(--gray-700);
}

.hero-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-0);
    gap: var(--space-3);
}

.hero-feature-emoji {
    font-size: var(--font-size-xl);
    line-height: 1;
    flex-shrink: 0;
}

.hero-feature-title {
    font-size: clamp(var(--font-size-base), 2.5vw, var(--font-size-lg));
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    line-height: var(--line-height-tight);
}

.hero-feature-description {
    font-size: clamp(var(--font-size-sm), 2.2vw, var(--font-size-base));
    line-height: var(--line-height-relaxed);
    color: var(--gray-600);
    display: block;
}

.contact-box {
    margin-top: calc(var(--space-0) * -1);
}

.trust-stats {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-3) var(--space-4) var(--space-3) var(--space-4);
    margin: var(--space-4) 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.rating-display {
    background: white;
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.rating-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--abel-red), var(--abel-orange));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.rating-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.stars {
    color: #fbbf24;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
    display: block;
}

.review-carousel {
    position: relative;
    min-height: 80px;
    overflow: hidden;
}

.review-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.review-item.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.review-text {
    font-style: italic;
    margin-bottom: var(--space-3);
    color: var(--gray-700);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

.review-author {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: var(--font-weight-medium);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    margin-left: -20px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--abel-red);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: bounce 1s infinite;
    cursor: pointer;
    background-color: var(--abel-red);
    backdrop-filter: blur(8px);
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* Services Section */
.services-section {
    position: relative;
}

/* Children Programs Section */
.children-section {
    position: relative;
}

.milan-intro, .celebration-content {
    text-align: center;
    margin-bottom: var(--space-12);
}

.milan-intro h3, .celebration-content h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.milan-intro .lead, .celebration-content .lead {
    font-size: clamp(var(--font-size-sm), 3vw, var(--font-size-xl));
    max-width: var(--max-width-4xl);
    margin: 0 auto var(--space-8);
}

/* City Celebrations Section */
.celebrations-section {
    position: relative;
}

.celebration-content h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.celebration-content .lead {
    margin-bottom: var(--space-8);
}

/* Service CTA tlačítka */
.service-cta {
    margin-top: var(--space-4);
    text-align: center;
}

.service-cta .btn {
    transition: all 0.3s ease;
}

.service-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Proč si vybrat ABEL sekce */
.why-choose-section {
    border-top: 1px solid var(--gray-200);
}

.advantage-item {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-icon {
    flex-shrink: 0;
}

.stats-grid .stat-box {
    transition: transform 0.3s ease;
}

.stats-grid .stat-box:hover {
    transform: translateY(-5px);
}

/* FAQ Sekce */
.faq-section {
}

.accordion-item {
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-6);
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    color: var(--gray-600);
}

.accordion-button {
    background: white;
    border: none;
    padding: var(--space-4);
}

.accordion-button:not(.collapsed) {
    color: var(--abel-red);
    background-color: #fff;
    box-shadow: none;
    border-bottom: 1px solid var(--gray-200);
}

.accordion-button:not(.collapsed)::after {
    color: var(--abel-red);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: var(--space-4);
    background: white;
    font-size: var(--font-size-base);
    color: var(--gray-600);
}

/* Quote Section */
.quote-section {
    color: white;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-section .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.quote-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.quote-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--space-8);
}

.quote-benefits {
    text-align: center;
    margin-top: var(--space-4);
}

.quote-benefits small {
    color: rgba(255, 255, 255, 0.85);
}

/* References Section */
.reference-section {
    position: relative;
}

/* Contact Section */
.contact-section {
    position: relative;
}

/* Footer */
.footer {
    background: var(--gray-50);
    color: var(--gray-700);
    padding: var(--space-5) 0 var(--space-5);
    border-top: 1px solid var(--gray-200);
}

.footer-brand {
    margin-bottom: var(--space-8);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.footer-logo .logo-text {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--abel-red);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.footer-logo small {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.footer-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-sm);
}

.footer-title {
    color: var(--abel-red);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-size-sm);
}

.footer-links a:hover {
    color: var(--abel-red);
    text-decoration: none;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
}

.footer-contact li i {
    position: relative;
    top: 1px;
}

.footer-contact a {
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--abel-red);
    text-decoration: none;
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--gray-700);
    margin: var(--space-8) 0 var(--space-4) 0;
}

.footer-bottom {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

.footer-bottom a {
    color: var(--gray-600);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--abel-red);
    text-decoration: underline;
}

.footer-links a,
.footer-contact a {
  color: var(--gray-700);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--abel-red);
}


/* Section Backgrounds and Spacing */
.fullscreen-section:nth-child(odd) {

}

.fullscreen-section:nth-child(even) {

}

/* Override specific sections */
.hero-section {

}

.quote-section {

}

/* Section Transitions */
.fullscreen-section {
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
}

.fullscreen-section:last-child {
    border-bottom: none;
}

/* Scroll Snap (optional - can be enabled for full-screen effect) */
/*
html {
    scroll-snap-type: y mandatory;
}

.fullscreen-section {
    scroll-snap-align: start;
}
*/
