@font-face {
    font-family: 'Ponter';
    src: url('../fonts/ponter.ttf') format('truetype');
}

@font-face {
    font-family: 'Bebas';
    src: url('../fonts/bebas.ttf') format('truetype');
}

@font-face {
    font-family: 'Akira';
    src: url('../fonts/akira.otf') format('opentype');
}

:root {
    --pink-bg: #f2b7b1;
    --pink-dark: #c94a5a;
    --pink-soft: #f6d3cf;
    --white: #ffffff;
    --text-dark: #5a2b2b;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #f6c1ba 0%, #f0a9a3 100%);
    color: var(--text-dark);
}

/* ---------- NAVBAR ---------- */
.navbar {

    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-toggler {
    border-radius: 50%;
    background-color: #f6c1b9;
    padding: 10px;
}

.navbar-brand {
    font-family: 'Ponter', sans-serif;
    font-size: 32px;
    color: var(--white) !important;
}

/* ---------- HERO ---------- */
.hero {
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero h1 {
    font-family: 'Ponter', sans-serif;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.hero h2 {
    font-family: 'Ponter';
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    color: #fff;
}

.hero .col-lg-6 img[src$="lsm.png"] {
    max-width: 200px;
    height: auto;
}

.hero img {
    max-width: 100%;
    border-radius: 32px;
}

.btn-ticket {
    background: var(--pink-dark);
    color: #fff;
    border-radius: 40px;
    padding: 14px 25px;
    font-weight: 600;
    border: none;
}

.btn-ticket:hover {
    background: #b53c4a;
    color: #fff;
}

.btn-lang {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 12px 25px;
    font-weight: 600;
}

.btn-lang:hover {
    background: #fff;
    color: var(--pink-dark);
}

/* ---------- FILTER ---------- */
.filter-box {
    background: rgba(255,255,255,.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
}

/* ---------- TOUR CARDS ---------- */
.tour-list-heading {
    font-family: 'Bebas', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    color: var(--text-dark);
}

#tour-list h2 {
    font-family: 'Russo One', sans-serif;
    color: #ab4247;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
}

.tour-card {
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-card h5 {
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    color: #ab4247;
    margin: 0;
    font-weight: 700;
    font-size: 19px;
}

.tour-card-blurry {
    filter: blur(3px);
    opacity: 0.7;
    user-select: none;
    pointer-events: none; /* Disables mouse events on the element */
}

.tour-card .tour-date .day {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 25px;
    margin-top: 5px;
}

.tour-card .tour-date .month {
    font-family: 'Russo One', sans-serif;
    font-size: 16px;
}

.tour-card span {
    font-size: 14px;
    opacity: .8;
}

.venue-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 4px;
}

.venue-link:hover {
    color: var(--pink-dark);
    text-decoration: underline;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--pink-dark);
    text-decoration: underline;
}

/* ---------- CONTACTS ---------- */
.contacts {
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 60px;
    margin-top: 80px;
}

.social-icon {
    font-size: 2.5rem; /* Large size for icons */
    color: var(--pink-dark); /* Using a theme color */
    margin: 0 10px; /* Spacing between icons */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.social-icon:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    color: var(--pink-dark); /* Keep color on hover */
}

.contacts .btn-ticket { /* Specific style for the button in contacts */
}

.form-control {
    border-radius: 16px;
    border: none;
    padding: 14px 18px;
}

/* ---------- SLIDER ---------- */
.swiper {
    width: 100%;
    height: auto;
    border-radius: 32px; /* Match the hero image border-radius */
}

.swiper .swiper-slide { /* Target specifically the first slider's slides */
    height: 300px; /* Or an appropriate fixed height/aspect-ratio based height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex; /* Ensure content (if any) is centered/aligned */
    align-items: center;
    justify-content: center;
}

/* Desktop height for the first slider */
@media (min-width: 992px) {
    .swiper .swiper-slide {
        height: 450px;
    }
}

/* ---------- VIDEO SLIDER ---------- */
.swiper-video .video-slide-container {
    position: relative; /* Make this the positioning context */
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background-color: #000;
}

.swiper-iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Make sure it's on top of the iframe */
    background-color: transparent; /* It's an invisible layer */
}

.swiper-video .swiper-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom Preview Styles */
.video-slide-container .video-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-slide-container .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s;
    z-index: 2;
    cursor: pointer;
}

.video-custom-preview .play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Unique navigation/pagination styles for video slider if needed */
.swiper-button-next-video,
.swiper-button-prev-video {
    color: var(--pink-dark);
}

.swiper-pagination-video .swiper-pagination-bullet-active {
    background-color: var(--pink-dark);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style navigation buttons and pagination */
.swiper-button-next,
.swiper-button-prev {
    color: var(--pink-dark);
}

.swiper-pagination-bullet-active {
    background-color: var(--pink-dark);
}

/* ---------- FOOTER ---------- */
footer {
    padding: 40px 0;
    font-size: 14px;
    opacity: .8;
}

.hero-vera-section {
    position: relative;
}

.hero-text-overlay {
    position: absolute;
    top: 65%; /* Position 10% from the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally, align bottom */
    width: 90%; /* Use 90% width to avoid text hitting the edges */
    z-index: 1;
}

.hero-text-overlay h2 {
    color: var(--white);
    /* Make it slightly less prominent than the h1 */
}

.hero-tour-year {
    position: absolute;
    top: -10px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    font-family: 'Russo One', sans-serif;
    color: #c84a5a;
    font-size: 29px; /* Matching the h2 size for "The best hits" */
    font-weight: 600; /* Matching existing h2 weight */
    text-transform: uppercase;
    line-height: 27px;
}
.h-text h2 {
    margin:0;
    padding: 4px 9px 0;
    display: inline-block;
}
.h-text h2:nth-child(3) {
    background:#c84a5a;
    color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 80px;
    }

    .tour-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-card .row {
        flex-direction: column;
        margin-left: 2px;
    }

    .tour-card .col-md-3,
    .tour-card .col-md-6,
    .tour-card .col-md-4 {
        width: 100%;
    }

    .tour-card .tour-date,
    .tour-card .tour-info {
        text-align: center;
    }
    .hero img {
        padding-bottom:80px;
        margin-left: 25px;
    }

    .tour-card .btn-ticket {
        margin-top: 15px;
        width: 100%;
    }
    .hero-text-overlay h2 {
        margin:0;
        padding: 4px 9px 0;
        display: inline-block;
    }
    .hero-text-overlay h2:nth-child(3) {
        background:#c84a5a;
        letter-spacing: 0.6px;
    }
    .navbar-nav li{
        text-align:right;
        margin: 5px 0;
    }

    .navbar-collapse.collapse.show,
    .navbar-collapse.collapsing {
        position: absolute;
        top: 0px; /* Approximate height of the navbar */
        right: 0;
        bottom: 0px;
        padding: 20px;
        z-index: 1010; /* Lower than navbar's z-index but above content */
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        height: 100vh;
        padding-top: 60px;
    }
}