:root {
    --bg-color: #F0EEE9;
    /* Cloud Dancer */
    --primary-blue: #39C0FF;
    --primary-orange: #F4661B;
    --orange-hover: #e05510;
    --blue-hover: #2ba0db;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 70px 0;
}

.bg-light {
    background-color: #ffffff;
}

.bg-dark {
    background-color: #1a1a1a;
    color: #fff;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-dark {
    color: var(--text-dark);
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.block {
    display: block;
}

.p-3 {
    padding: 1rem;
}

.highlight {
    color: var(--primary-orange);
}

.highlight-blue {
    color: var(--primary-blue);
}

.relative {
    position: relative;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.align-center {
    align-items: center;
}

.col-md-5,
.col-md-6,
.col-md-1 {
    padding: 15px;
}

.col-md-6 {
    width: 50%;
}

.col-md-5 {
    width: 41.66%;
}

.col-md-1 {
    width: 8.33%;
}

@media (max-width: 768px) {

    .col-md-6,
    .col-md-5,
    .col-md-1 {
        width: 100%;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff8a47);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(244, 102, 27, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e05510, var(--primary-orange));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 102, 27, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--text-dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    display: flex;
    flex-direction: column;
}

.logo strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.logo strong span {
    color: var(--primary-orange);
}

.logo-sub {
    font-size: 0.75rem;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding-top: 150px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 30, 0.85);
    /* Simplified dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.badge i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-heading);
}

.hero-title .highlight {
    font-size: 3rem;
    display: block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.hero-small-text {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

.hero-partners {
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* SECTIONS HEADER */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* WHY SECTION */
.lead-text {
    font-size: 1.25rem;
    font-family: var(--font-main);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-blue);
    line-height: 1.8;
}

.image-placeholder {
    width: 100%;
    background-color: #ddd;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
    gap: 10px;
}

.image-placeholder-why {
    height: 400px;
    box-shadow: var(--box-shadow);
}

.image-collage {
    position: relative;
    width: 100%;
    height: 450px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    padding: 10px;
}

.collage-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease;
}

.collage-img:hover {
    transform: scale(1.02);
}

.img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.img-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    height: 450px;
    /* Force height to cover both rows with gap */
}

.collage-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(244, 102, 27, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -30px;
    left: -30px;
    z-index: -1;
    border-radius: 50%;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pillar-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(57, 192, 255, 0.15);
}

.pillar-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(57, 192, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

/* FOR WHOM */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.check-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.check-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 3px;
}

.highlight-box {
    background: rgba(57, 192, 255, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--box-shadow);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

/* SPEAKERS */
.moderator-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.speaker-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: #eef;
    flex-shrink: 0;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moderator-card .speaker-img {
    margin: 0;
}

.moderator-info .role {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.speaker-card {
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.speaker-img {
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img {
    transform: scale(1.08);
}

.speaker-card .speaker-img {
    margin: 0 auto 20px;
}

.speaker-topic {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.speaker-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CAUSE & EXPERIENCE */
.cause-section {
    background-color: #2b2b2b;
}

.cause-section .bg-overlay {
    display: none;
}

.experience-card p,
.mentorship-card p {
    color: var(--text-dark);
}

.alert-box {
    background: #3c2a21;
    /* Brownish background */
    color: #fff;
    border-left: 4px solid var(--primary-orange);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-radius: 5px;
}

.alert-box i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.experience-card,
.mentorship-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.small-text {
    font-size: 0.85rem;
    color: #888;
}

/* DETAILS & COUNTDOWN */
.practical-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 30px auto;
}

.detail-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item i {
    color: var(--primary-blue);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-box {
    background: var(--primary-blue);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(57, 192, 255, 0.3);
}

.time-box span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.time-box p {
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
}

/* SPONSORS SLIDER */
.overflow-hidden {
    overflow: hidden;
}

.sponsors-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Add a fade effect on the left and right edges */
.sponsors-wrapper::before,
.sponsors-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sponsors-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.sponsors-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollSponsors 25s linear infinite;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsor-logo {
    width: 240px;
    height: 120px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.sponsor-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }

    /* Shifts track leftwards exactly half its width,
       then snaps back to 0 seamlessly due to duplication */
    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

/* FORM SECTION */
.shadow-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-text-side {
    padding: 60px;
}

.form-side {
    padding: 60px;
}

.pulse-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 102, 27, 0.1);
    color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-img-placeholder {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(57, 192, 255, 0.2);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    cursor: pointer;
}

.form-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #27ae60;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* FOOTER */
.footer {
    background: #2B2B2B;
    color: #fff;
    padding: 80px 0 50px;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #bbb;
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-signature {
    text-align: center;
    color: #aaa;
}

.small-muted-text {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* EYE-CANDY ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in {
    transform: translateY(30px);
}

.slide-up {
    transform: translateY(50px);
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translate(0, 0);
}

/* STICKY CTA MOBILE */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-orange);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    z-index: 1000;
    text-transform: uppercase;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .form-text-side,
    .form-side {
        padding: 30px;
    }

    .moderator-card {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        display: block;
    }

    #inscriere {
        padding-bottom: 80px;
    }
}