/* General styles */
:root {
    --header-height: 2.5rem;
    --primary-color: #daff59;
    --secondary-color: #ddff00;
    --text-color: #ffffff;
    --body-font: 'Proxima Nova', sans-serif;
    --normal-font-size: 1rem;

    /*========== Colors ==========*/
    --black-color: #131212;
    --black-color-light: #303030;
    --black-color-lighten: #4b4b4b;
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);

    /*========== Font weight ==========*/
    --font-light: 200;
    --font-regular: 400;
    --font-semi-bold: 600;
    --font-bold:800;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

body {
    font-family:'Proxima Nova', sans-serif;
    margin: 0;
    padding-top: 3.5rem;
    background-color: #131212;
    overflow: auto; /* or overflow: visible; */

}

/* NAV BAR*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
ul {
    list-style: none;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}
a {
    text-decoration: none;
}
.container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black-color);
    z-index: var(--z-fixed);
}
/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}
.nav__logo,
.nav__burger,
.nav__close {
    color: var(--white-color);
}
.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: 800;
    font-size: 1.5rem;
    font-family:'MuseoModerno';
    -webkit-tap-highlight-color: transparent;
}
.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}
.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}
.nav__close {
    opacity: 0;
}
/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
    .container{
        max-width: 100%;
        height: 4rem;
        padding-left: 0;
        padding-right: 0;
        margin-inline: 1rem;
    }

    .nav__menu {
        position:absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 2rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }
    .nav__menu::-webkit-scrollbar {
        width: 0;
    }
    .nav__list {
        background-color: var(--black-color);
        padding-top: 1rem;
    }
}

.nav-link {
    color: var(--white-color);
    background-color: var(--black-color);
    font-weight: var(--font-regular);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}
.nav-link:hover {
    color: var(--primary-color);
}
/* Show menu */
.show-menu {
    opacity: 1;
    top: 2.5rem;
    pointer-events: initial;
}
/* Show icon */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}
.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}
/*=============== DROPDOWN ===============*/
.dropdown {
    cursor: pointer;
}
.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}
.dropdown-item,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    color: var(--white-color);
    background-color: var(--black-color-light);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-regular);
    transition: background-color .3s;
    min-width: 220px;
}
.dropdown-item i,
.dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
}
.dropdown-item:hover,
.dropdown__sublink:hover {
    background-color: var(--black-color-lighten);
}
.dropdown-menu{
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown:hover .dropdown-menu{
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/* Rotate dropdown icon */
.dropdown:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/* For small devices */
@media screen and (max-width: 460px) {
    .nav-link {
        padding-inline: 1rem;
    }
}
/* For large devices */
@media screen and (min-width: 1118px) {

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }
    .nav__toggle {
        display: none;
    }
    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem;
    }
    .nav-link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
    }
    .nav-link:hover {
        background-color: transparent;
    }

    .dropdown,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown-menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        right: 0;
        top: 5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }

    .dropdown-item,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem;
    }

    .dropdown__subitem .dropdown-item {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem;
    }

    /* Show dropdown menu */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        top: 4.5rem;
        pointer-events: initial;
        transition: top .3s;
    }

    /* Show dropdown submenu */
    .dropdown__subitem:hover > .dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s;
    }
}



/* Button Styles */

.action-buttons {
    display: flex; /* Flex container for buttons */
    gap: 16px; /* Space between buttons */
}
@media (max-width: 480px){
    .action-buttons {
        display: flex;
        flex-direction: column;
    }
}

.primary-btn {
    background-color: rgba(218, 255, 89, 1); /* Primary button color */
    color: #000; /* Text color */
    padding: 12px 24px; /* Button padding */
    text-decoration: none; /* Remove the underline */
    border: none; /* Remove border */
    border-radius: 6px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    cursor: pointer;
}

.primary-btn:hover {
    background-color: #ddff00; /* Orange-red hover effect */
}

.secondary-btn {
    color: rgba(218, 255, 89, 1); /* Text color */
    padding: 12px 24px; /* Button padding */
    border: 1px solid rgba(218, 255, 89, 1); /* Border for secondary button */
    border-radius: 5px; /* Rounded corners */
    background-color: #2c2c2c;
    cursor: pointer;
}
.secondary-btn:hover {
    background-color: #DA3259; /* Orange-red hover effect */
}

/* LAYOUT STYLES*/

/* LAYOUT 1*/

/* LAYOUT 2*/
.layout-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content:space-between;
    align-items: center;
    background-color: #000;
    color: white;
    padding: 2rem 4rem;
    margin:1rem;
    border-radius: 12px;
    gap:4rem;
}
.layout-2 h1{
    font-size: 100px; /* Large headline */
    font-weight: 800; /* Bold weight */
    line-height: 0.8; /* Tight line height */
    text-transform: uppercase; /* Uppercase text */
    margin-bottom: .8rem; /* Space below headline */
    margin-top: 0;
}
.layout-2 h5{
    font-size: 20px; /* Large headline */
    font-weight: 600; /* Bold weight */
    line-height: 0.8; /* Tight line height */
    text-transform: uppercase; /* Uppercase text */
    margin-bottom: .8rem; /* Space below headline */
    margin-top: 0;
}
.layout-2 p{
    flex: 1;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    max-width: 75ch;
    justify-self: right;
}
@media (max-width: 768px) {
    .layout-2{
        display: grid;
        grid-template-columns: 1fr;
        gap:1rem;
        padding: 2rem 1rem;
    }
    .layout-2 h1{
        font-size: 60px; /* Large headline */
        margin: 0px;
        padding: 0px;
    }
    .layout-2 h5{
        flex: 1;
        font-size: 16px; /* Large headline */
        margin-bottom: 1rem; /* Space below headline */
        margin-top: 0;
    }
    .layout-2 p{
        justify-self: left;
    }

}


/* LAYOUT 3: (embargoed areas, */
.layout-3{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content:space-between;
    align-items: center;
    background-color: #131212;
    color: white;
    padding: 2rem 4rem;
    margin:1rem;
    border-radius: 12px;
    gap:4rem;
}
.layout-3 h1{
    flex: 1;
    font-size: 56px; /* Large headline */
    font-weight: 800; /* Bold weight */
    line-height: 0.9; /* Tight line height */
    text-transform: uppercase; /* Uppercase text */
    margin-bottom: .8rem; /* Space below headline */
    margin-top: 0;
}
.layout-3 h2{
    flex: 1;
    font-size: 100px; /* Large headline */
    font-weight: 800; /* Bold weight */
    line-height: 0.8; /* Tight line height */
    text-transform: uppercase; /* Uppercase text */
    margin-bottom: .8rem; /* Space below headline */
    margin-top: 0;
}
.layout-3 p{
    flex: 1;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    max-width: 75ch;
    justify-self: right;
}
@media (max-width: 768px) {
    .layout-3{
        display: grid;
        grid-template-columns: 1fr;
        gap:1rem;
        padding: 1rem 0;
    }
    .layout-3 h1{
        margin: 0px;
        padding: 0px;
        font-size: 48px; /* Large headline */
    }
    .layout-3 h2{
        flex: 1;
        font-size: 70px; /* Large headline */
        font-weight: 800; /* Bold weight */
        line-height: 0.9; /* Tight line height */
        text-transform: uppercase; /* Uppercase text */
        margin-bottom: .8rem; /* Space below headline */
        margin-top: 0;
    }
    .layout-3 p{
        justify-self: left;
    }

}

/* LAYOUT 4 (merch, housing)*/
.layout-4 {
    margin: 1rem;
    display: flex;
    justify-content: space-between; /* Space between content and image */
    align-items: center;
    border-radius: 12px;
    background-color: #131212;
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow: hidden; /* Ensure content fits within borders */
}
.l4-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 64px;
    color: #fff;
}
.l4-text {
    display: flex;
    flex-direction: column; /* Stack heading and description */
    justify-content: flex-start; /* Align to start */
}
.layout-4 h1{
    font-size: 56px;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.layout-4 p{
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 75ch;
}
.image-wrapper {
    display: flex; /* Flex container for image */
    flex: 1; /* Allow to grow */
    justify-content: center; /* Center image */
    padding-right: 0;
}
.hero-image {
    aspect-ratio: 0.93; /* Maintain aspect ratio */
    object-fit: contain; /* Fit within container */
    border-radius: 12px; /* Rounded corners */
    max-width: 100%; /* Ensure it doesn't overflow */
}
@media (max-width: 768px) {
    .layout-4 {
        flex-direction: column; /* Stack content on smaller screens */
        align-items: center; /* Center items */
    }

    .l4-column {
        padding: 0 20px; /* Responsive padding */
    }

    .image-wrapper {
        width: calc(100vw - 2rem); /* Full width for image */
    }
}

/* Hero Section */
.hero {
    margin: 1rem;
    background-image: url('images/Range-horizontal-no-txt.png'); /* Use the background image you have */
    background-size: cover; /* Make sure the background covers the entire section */
    background-position: center; /* Center the background image */
    height: calc(80vh - 3rem); /* Adjust the height to account for the margin */
    max-height: 640px;
    display: flex; /* Use flexbox for centering */
    justify-content: flex-start; /* Align the content to the left */
    align-items: center; /* Vertically center the content */
    padding-left: 4rem; /* Add padding to the left for the content */
    padding-right: 4rem;
    color: white; /* Set text color to white */
    position: relative; /* To allow the overlay effect */
    border-radius: 12px; /* Add rounded corners */
    overflow: hidden; /* Ensure child elements respect rounded corners */
    /*text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Add shadow to make the text stand out */


}
.hero::before {
    content: ''; /* Creates the overlay */
    position: absolute; /* Position the overlay to cover the whole section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent overlay */
    z-index: -1; /* Place behind the content */
}
.hero-content {
    max-width: 600px;

}
.hero h1 {
    font-size: 56px; /* Large font size for the main title */
    font-weight: 800;
    text-transform: uppercase;
    line-height: .9; /* Line height to tighten the spacing */
    margin: 0 0 28px; /* Margin to separate the title from the description */
}
.hero p {
    font-size: 16px; /* Sets the font size for the hero paragraph */
    font-weight: lighter; /* Set a lighter weight to contrast with the title */
    line-height: 140%;
    margin-bottom: 48px; /* Adds bottom margin to the paragraph to separate it from the button */
}
/* Media query for responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px; /* Reduce the size of the title on smaller screens */
    }

    .hero p {
        font-size: 16px; /* Smaller font size for paragraph */
    }

    .hero-btn {
        padding: 10px 20px; /* Adjust button padding for smaller screens */
        font-size: 14px; /* Smaller font size for button */
    }
}
@media (max-width:480px){
    .hero{
        padding-left: 1rem; /* Add padding to the left for the content */
        padding-right: 1rem;
    }
    .hero h1 {
        font-size: 48px; /* Reduce the size of the title on smaller screens */
    }
}

/* Sponsors Section */
.sponsors{
    margin: 1rem 2rem;
    box-sizing:border-box;
    background-color: #131212;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
}
.logo-container{
    white-space: nowrap;
}
.logo-slide{
    display: inline-block;
    animation: 30s h-scroll infinite linear;
}
.logo-slide img{
    height: 50px;
    width: auto;
    margin: 0 2rem;
}
@keyframes h-scroll {
    from{
        transform: translateX();
    }
    to{
        transform: translateX(-100%);
    }

}


/* calendar section*/

.event-program {
    margin: 1rem;
    border-radius: 12px; /* Rounding corners */
    background-color: #4b4b4b; /* Background color */
    display: flex; /* Use flexbox for layout */
    width: calc(100vw - 2rem); /* Adjust width to fit within margins (20px on each side) */
    flex-direction: column; /* Stack elements vertically */
    overflow: hidden; /* Hide overflow */
    font-family: Proxima Nova, sans-serif; /* Font family */
    padding: 5rem 4rem;
    border: 1px solid #303030; /* Border color */
    box-sizing: border-box; /* Include padding and border in width/height calculations */
}
.event-program-container {
    display: flex; /* Use flexbox */
    width: 100%; /* Ensure it uses full width */
    flex-direction: column; /* Stack children vertically */
    align-items: flex-start; /* Align items to the left */
    justify-content: flex-start; /* Align items to the top */
}
.event-program-title {
    color: #f3f3f3; /* Title color */
    font-size: 20px; /* Title font size */
    font-weight: 500; /* Title font weight */
    text-align: center; /* Center title text */
}
.event-program-content {
    align-self: stretch; /* Stretch to fill available space */
    display: flex; /* Use flexbox for layout */
    margin-top: 2rem; /* Space above content */
    width: 100%; /* Ensure full width */
    flex-direction: column; /* Stack children vertically */
    justify-content: flex-start; /* Align items to the top */
}
.event-day {
    border-color: #ddff00; /* Border color */
    border-bottom-width: 1px; /* Border width */
    display: flex; /* Use flexbox */
    width: 100%; /* Full width */
    gap: 36px; /* Space between items */
    justify-content: flex-start; /* Align items to the left */
    flex-direction: row; /* Stack items horizontally */
    padding: 24px 0; /* Padding above and below */


}
.event-day {
    text-decoration: none; /* Remove underline */
    text-align: left;
    color: inherit; /* Use inherited color (from parent) */
    display: flex; /* Maintain flex layout */
    width: 100%; /* Ensure full width */
    padding: 24px 0; /* Add padding for click area */
    border-bottom: 1px solid #ddff00; /* Add bottom border */
}
.event-day:last-child {
    border-bottom: none; /* Remove bottom border for the last item */
}
.event-day:hover .event-day-number,
.event-day:hover .event-description {
    color: #ddff00; /* Change text color on hover */
}
.event-day-number,
.event-description {
    transition: color 0.3s; /* Smooth transition for color change */
}
.event-day-number {
    font-size: 24px; /* Font size for day number */
    font-weight: 700; /* Font weight for day number */
    line-height: 1.4; /* Line height */
    align-self: stretch; /* Stretch to fill space */
    margin: auto 0; /* Center vertically */
}
.event-description {
    text-align: left; /* Center description */
    font-size: 56px; /* Font size for description */
    font-weight: 800; /* Font weight */
    line-height: 0.9; /* Line height */
    letter-spacing: -1.12px; /* Letter spacing */
    text-transform: uppercase; /* Uppercase text */
    align-self: stretch; /* Stretch to fill space */
    margin: auto 0; /* Center vertically */
}
.event-footnote {
    color: #f3f3f3; /* Footnote color */
    text-align: center; /* Center footnote */
    font-size: 16px; /* Font size for footnote */
    font-weight: 600; /* Font weight */
    text-transform: uppercase; /* Uppercase text */
    margin-top: 32px; /* Space above footnote */
}
@media (max-width:768px){
    .event-day{
        color: #ffffff;
    }
    .event-day:active .event-day-number,
    .event-day:active .event-description{
        color: #ddff00;
    }
}
@media (max-width:480px){
    .event-day{
        color: #ffffff;
    }
    .event-day:active .event-day-number,
    .event-day:active .event-description{
        color: #ddff00;
    }
}

/* Media queries for responsiveness */

.event-program-content {
    max-width: 100%; /* Ensure full width */
}
.event-day {
    max-width: 100%; /* Ensure full width */
}
.event-description {
    max-width: 100%; /* Ensure full width */
    font-size: 40px; /* Font size adjustment */
}
@media (max-width: 640px) {
    .event-description {
        text-align: left; /* Align text to the left on smaller screens */
        font-size: 24px; /* Font size adjustment */
    }
}
@media (max-width: 991px) {
    .event-program {
        padding: 4rem 2rem; /* Adjust padding for smaller screens */
    }
}
@media (max-width: 768px) {
    .event-program {
        padding: 1rem;
    }
    .event-program-content {
        margin-top: 1rem;
    }
    .event-footnote {
        font-size: 12px;
        margin-top: 10px;
    }
}

/* ACCOMMODATIONS */

.accommodations h1{
    overflow-wrap: break-word;
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: .9;
    margin: 0 0 28px;
    color: #ffffff;
}
.accommodations p {
    font-size: 16px;
    font-weight: lighter;
    line-height: 140%;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 65ch;
}
.accommodations ul{
    margin-top: 0px;
    margin-bottom: 24px;
    line-height: 140%;
    color: #ffffff;
    font-size: 16px;
    font-weight: lighter;
}
.accommodations {
    display: flex;
    margin: 1rem;
    height: 100%;
    padding:0 4rem;
}
.text-content {
    flex: 1;
    margin-right: 4rem;
    overflow-y: auto;
    justify-content: center;
    align-content: center;
}

/* SLIDESHOW */
.slideshow-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}
.mySlides img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 12px;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.9);
}
.dot-container {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #5a5a5a;
    opacity: 50%;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #e1e1e1;
}
@media (max-width: 	1220px) {
    .accommodations h1{
        overflow-wrap:normal;
    }
    .accommodations{
        flex-direction: column;
        padding: 0 1rem;
    }
    .text-content{
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .mySlides img{
        height: 600px;
    }
}
@media (max-width: 768px) {
    .accommodations h1{
        overflow-wrap:break-word;
        font-size: 48px;
    }
    .accommodations{
        padding: 0;
        flex-direction: column;
    }
    .text-content{
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .mySlides img{
        height: 400px;
    }
}

.map-embed{
    display:flex;
    margin: 1rem 1rem;
    overflow: hidden;
    border-radius: 12px;
}


/* Footer */
footer {
    background-color: #333; /* Sets the background color of the footer to dark gray */
    color: white; /* Sets the footer text color to white */
    text-align: center; /* Centers the text inside the footer */
    padding: 10px 0; /* Adds padding to the top and bottom of the footer */
    position:relative; /* Fixes the footer to the bottom of the viewport */
    width: 100%; /* Ensures the footer spans the full width of the viewport */
    bottom: 0; /* Positions the footer at the very bottom of the page */
}


.custom-page-content {
    background-color: #131212; /* Dark background */
    color: white; /* White text */
    padding: 2rem 4rem;
    margin: 1rem auto;
    border-radius: 12px;
    max-width: 1200px; /* Limit width */
    width: 90%;
    line-height: 1.8; /* Increase line height for better readability */
    letter-spacing: 0.3px; /* Slightly increase spacing between letters */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-page-content {
        padding: 1rem 1rem;
        width: 95%;
        line-height: 1.7; /* Adjust for smaller screens */
    }
}

/* Headings */
.custom-page-content h1,
.custom-page-content h2,
.custom-page-content h3,
.custom-page-content h4,
.custom-page-content h5,
.custom-page-content h6 {
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.4; /* Improve heading readability */
}

/* Paragraphs */
.custom-page-content p {
    line-height: 1.8; /* More space between lines */
    margin-bottom: 1.5rem;
    max-width: 900px; /* Prevent text from stretching too wide */
}

/* Lists */
.custom-page-content ul,
.custom-page-content ol {
    padding-left: 1.8rem;
}

.custom-page-content li {
    margin-bottom: 0.6rem;
}

/* Links */
.custom-page-content a {
    color: #ddff00;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.custom-page-content a:hover {
    color: rgb(218, 255, 89);
}

/* Images */
.custom-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Blockquotes */
.custom-page-content blockquote {
    border-left: 4px solid #ddff00;
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #ddff00;
    max-width: 900px; /* Keep blockquotes from going too wide */
}



/* News */

/* General container styling */
.event-news {
    margin: 1rem;
    border-radius: 12px; /* Rounded corners */
    background-color: #4b4b4b; /* Dark background */
    display: flex;
    width: calc(100vw - 2rem);
    flex-direction: column;
    overflow: hidden;
    font-family: Proxima Nova, sans-serif;
    padding: 5rem 4rem;
    border: 1px solid #303030;
    box-sizing: border-box;
}

.event-news .event-news-title {
    color: #f3f3f3;
    font-size: 20px;
    font-weight: 500;
}

.event-news .cff-item {
    padding: 20px !important;
    border-top: 1px solid rgb(245, 98, 142) !important;
    border-bottom: 1px solid rgb(218, 255, 89) !important;
}

@media (max-width: 768px) {
    .event-news {
        padding: 1rem 1rem;
    }
    .event-news-title {
        display: block;
    }

    .cff-visual-header {
        display: none;
    }

    .cff-wrapper {
        margin-top: 1rem;
    }
}

@media (min-width: 769px) {
    .event-news-title {
        display: none;
    }
}

.nav__logo-img {
    max-width: 100%;
    height: 50px;
    display: block;
}
