/*
* Style — EC Den Haag 2027
*/


/*
* Google font
*/

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Roboto");


/*
* Section - Home (Hero)
*/

#home {
    background-image: url("../images/bg-home-1.jpg");
}

#stats {
    background-image: url("../images/bg-home-1.jpg");
}

#cta-break {
    background-image: url("../images/bg-home-1.jpg");
}

#final-cta {
    background-image: url("../images/bg-home-1.jpg");
}


/*
* Den Haag Theme Colors
* JCI blue base (#0096D7) + orange/gold accents for Den Haag
*/

.text-denhaag-gold {
    color: #D4A843 !important;
}

.text-denhaag-orange {
    color: #E8752A !important;
}

.text-denhaag-dark {
    color: #1a2a3a !important;
}

.bg-denhaag-orange {
    background-color: #E8752A !important;
}

.bg-denhaag-dark {
    background-color: #1a2a3a !important;
}

.bg-denhaag-orange-light {
    background-color: #FFF3E0 !important;
    border: 2px solid #E8752A;
}

.border-denhaag-orange {
    border-color: #E8752A !important;
}


/*
* CTA Buttons — Orange variant
*/

.btn-denhaag-orange {
    background-color: #E8752A !important;
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-denhaag-orange:hover {
    background-color: #D4641D !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 117, 42, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7) !important;
    color: #ffffff !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}


/*
* Price Timeline
*/

.price-timeline {
    position: relative;
}

.price-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: linear-gradient(to right, #0096D7, #E8752A, #999);
    z-index: 0;
}

@media (max-width: 767px) {
    .price-timeline::before {
        display: none;
    }
}

.timeline-phase {
    position: relative;
    z-index: 1;
}

.phase-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0096D7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 150, 215, 0.3);
}

.phase-icon.phase-regular {
    background-color: #E8752A;
    box-shadow: 0 4px 15px rgba(232, 117, 42, 0.3);
}

.phase-icon.phase-late {
    background-color: #999;
    box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
}

.timeline-phase.active .phase-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 150, 215, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 150, 215, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 150, 215, 0); }
}


/*
* Pricing Cards — Featured
*/

.pricing-featured {
    transform: scale(1.03);
    z-index: 2;
    position: relative;
}

@media (max-width: 991px) {
    .pricing-featured {
        transform: scale(1);
    }
}


/*
* FAQ Section
*/

.faq-question {
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background-color: #f0f0f0 !important;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item .collapse.show + .faq-question .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}


/*
* Urgentie / Savings Banner
*/

.bg-denhaag-orange-light {
    animation: subtle-glow 3s ease-in-out infinite alternate;
}

@keyframes subtle-glow {
    from { box-shadow: 0 0 5px rgba(232, 117, 42, 0.1); }
    to { box-shadow: 0 0 20px rgba(232, 117, 42, 0.2); }
}


/*
* Nav CTA Button
*/

.navbar-nav .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.5) !important;
    padding: 6px 18px !important;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .btn-outline-light:hover {
    background: #E8752A !important;
    border-color: #E8752A !important;
    color: #ffffff !important;
}


/*
* Image Placeholders
*/

.bg-cover[style*="placeholder"] {
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*
* Footer
*/

.footer-logo {
    max-height: 40px;
}

.footer-icon-social {
    bottom: 10px;
    position: relative;
}


/*
* General Overrides for the landing page
*/

section {
    scroll-margin-top: 80px;
}

.opacity-8 {
    opacity: 0.8;
}

.cursor-pointer {
    cursor: pointer;
}