/* Base Styles */
:root {
    --primary-color: #FF4D8D;
    --secondary-color: #6A0DAD;
    --accent-color: #9370DB;
    --light-color: #FFF0F5;
    --dark-color: #4B0082;
    --white: #ffffff;
    --black: #000000;
    --gray: #8d99ae;
    --light-gray: #f8f9fa;
    --font-primary: 'IBM Plex Sans', sans-serif;
    --font-secondary: 'Bitter', serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.cta-button,
.ticket-btn,
.submit-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.cta-button:hover,
.ticket-btn:hover,
.submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px;
    transition: var(--transition);
}

header.scrolled .logo {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.language-switcher span {
    margin: 0 5px;
    color: var(--gray);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    padding: 2px 5px;
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--primary-color);
}

.lang-btn:hover {
    color: var(--primary-color);
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    font-family: var(--font-secondary);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.sep-p1 {
    background-image: url('img/p1.jpg');
}

.sep-p2 {
    background-image: url('img/p2.jpg');
}

.sep-p3 {
    background-image: url('img/p3.jpg');
}

.sep-p4 {
    background-image: url('img/p4.jpg');
}

.sep-p5 {
    background-image: url('img/p1.jpg');
}

.separation {
    filter: contrast(2) saturate(2) grayscale(0.4) opacity(0.4);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}

.separation-content {
    /* background-color: rgba(255, 255, 255, 0.5); */
    width: 100%;
    height: 100%;
}

.hero {
    /* height: 70vh; */
    background-image: url('img/head.jpg');
    background-size: cover;
    background-position: center 0%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 800px;
    padding: 20px;

}

@media only screen and (max-device-width: 1366px) {
    .hero {
        margin-top: 130px;
        background-attachment: scroll;
        min-height: 300px;
        width: 100%;
    }

    .separation {
        background-attachment: scroll;
        min-height: 300px;
        width: 100%;
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero h2:after {
    display: none;
}

/* Info Section */
.info-section {
    background-color: var(--white);
}

.info-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.info-tab-btn {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    margin: 0 10px 10px;
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.info-tab-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.info-tab-btn.active,
.info-tab-btn:hover {
    color: var(--primary-color);
}

.info-tab-btn.active:after,
.info-tab-btn:hover:after {
    width: 100%;
}

.info-tab-content {
    display: none;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.info-tab-content.active {
    display: block;
}

.info-tab-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-tab-content h4 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.info-tab-content p {
    margin-bottom: 15px;
}

.info-tab-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.info-tab-content ul li {
    margin-bottom: 8px;
}

/* Table Styling */
.info-tab-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    overflow: hidden;
}

.info-tab-content table th {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.info-tab-content table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.info-tab-content table tr:nth-child(even) {
    background-color: var(--light-color);
}

.info-tab-content table tr:last-child td {
    border-bottom: none;
}

.info-tab-content table tr:hover {
    background-color: rgba(147, 112, 219, 0.1);
}

.info-details {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-details p {
    margin-bottom: 8px;
}

.info-details p:last-child {
    margin-bottom: 0;
}

.program-category {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px 15px 15px 20px;
    border-radius: 0 8px 8px 0;
}

.program-category h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.program-category p {
    margin-bottom: 8px;
}

.program-category p:last-child {
    margin-bottom: 0;
}

/* Schedule Section */
.schedule-section {
    background-color: var(--light-color);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.schedule-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.schedule-section ul li {
    margin-bottom: 8px;
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active:after,
.tab-btn:hover:after {
    width: 100%;
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
}

.schedule-item {
    display: flex;
    margin-bottom: 20px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.time {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
}

.event {
    padding: 20px;
    flex-grow: 1;
}

.event h3 {
    margin-bottom: 5px;
}

.event p {
    margin-bottom: 0;
    color: var(--gray);
}

/* Startlists & Results Section */
.startlists-results-section {
    background-color: var(--light-color);
}

.startlists-results-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.startlists-results-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.startlists-results-content p {
    margin-bottom: 15px;
}

.startlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.startlist-item {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.startlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.startlist-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--secondary-color);
    font-weight: 500;
}

.startlist-item a:hover {
    color: var(--primary-color);
}

.startlist-item svg {
    margin-bottom: 10px;
}

/* Tickets Section */
.tickets-section {
    background-color: var(--white);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 30px;
}

.ticket-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ticket-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.ticket-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-label {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 15px 0;
}

.ticket-card ul {
    margin-bottom: 20px;
    text-align: left;
    padding-left: 20px;
}

.ticket-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.ticket-card ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: -10px;
}

.ticket-btn {
    width: 100%;
    text-align: center;
}

.ticket-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
}

/* Sponsors Section */
.sponsors-section {
    background-color: var(--white);
    padding: 60px 0;
}

/* Sponsors Section */
.sponsors-section {
    background-color: var(--white);
    padding: 60px 0;
    position: relative; /* Make the section relative for absolute positioning of arrows */
}

.sponsors-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0px; /* Add padding to make room for the arrows */
    overflow: hidden; /* Hide content outside the container */
}

.sponsors-carousel {
    display: flex;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.sponsor-slide {
    /* min-width: 50%; Default for large screens - 2 slides */
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    /* transition: transform 0.3s ease; */
    flex-shrink: 0; /* Prevent slides from shrinking */
    height: 240px; /* Fixed height for all slides */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    background-color: var(--white);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-slide a:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Location Section */
.location-section {
    background-color: var(--light-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

address {
    font-style: normal;
    margin-bottom: 20px;
    line-height: 1.6;
}

.transport-options {
    margin-top: 20px;
}

.transport-option {
    margin-bottom: 15px;
}

.transport-option h5 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    width: fit-content;
    margin: 0 auto;
    /* display: flex; */
    justify-content: center;
}

.location-map img {
    display: block;
    max-width: 100%;
    /* height: auto; */
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(69, 123, 157, 0.2);
}

.submit-btn {
    border: none;
    width: 100%;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item a {
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
}

.social-media {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.social-icon:hover svg path {
    fill: var(--white);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon svg path {
    fill: var(--secondary-color);
    transition: var(--transition);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-gray);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 250px;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-partners h4,
.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-logo {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--white);
    transition: var(--transition);
}

.partner-logo:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: var(--font-primary);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #c1121f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--light-gray);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        order: 2;
    }

    .location-map {
        order: 1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    nav ul {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 15px 0;
    }

    .language-switcher {
        position: static;
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .schedule-item {
        flex-direction: column;
    }

    .time {
        width: 100%;
        padding: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .schedule-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        margin: 0;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}


.pdf-badge {
    display: inline-block;
    background-color: #D32F2F; /* red */
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 0.75rem;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    text-decoration: none;
  }
