/* Font Faces */
@font-face {
    font-family: 'Minion Pro';
    src: url('../fonts/MinionPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bold {
    font-weight: 600;
}
.center {
    text-align: center;
}

.clear {
    clear: both;
    margin: 1%;
}

/* TEXT Colors */
.text-white {
    color: #FFFFFF;
}

.text-black {
    color: #000000;
}

.text-red {
    color: #DA291C;
}

.text-orange {
    color: #F58634;
}

/* Headings */
h3 {
    font-size: 1.3em;
    line-height: 1;
    margin: 0;
}

h4 {
    font-size: 1.1em;
    font-weight: 400;
    margin: 0;
}

h5 {
    font-size: 32px;
    line-height: 1;
    margin: 0;
}

/* BODY */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: #000000;
}

.event-details p.line-height {
    line-height: 1.5;
}

/* Font Utilities */
.font-serif {
    font-family: 'Minion Pro', Georgia, serif;
}

/* Header Styles */
.header {
    background-color: #DA291C;
    height: 97.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 52.5px;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    font-weight: 500;
    text-decoration: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #F4B735;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.nav-menu.mobile-active {
    display: flex;
}

/* Hero/Slider Section */
.hero-section {
    background-color: #F4B735;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: calc(100% - 670px);
    width: 225px;
    height: 150px;
    background-image: url('../images/hero-top-black-crane.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
    opacity: 0.8;
    pointer-events: none;
}

.hero-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
    height: 300px;
    background-image: url('../images/top-black-crane-full.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 75px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    order: -1;
}

.hero-logo-main {
    width: 492.75px;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-logo-small {
    width: auto;
    max-width: 150px;
    height: auto;
    display: block;
    align-self: center;
    margin-right: 15%;
    margin-top: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 104.17px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.hero-content .crank {
    color: #000000;
}

.hero-content .dig {
    color: #DA291C;
}

.hero-content .own {
    color: #000000;
}

.hero-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subtitle h3 {
    font-size: 43.75px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    color: #000000;
}

.hero-subtitle h4 {
    font-size: 39.59px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    color: #DA291C;
}

.event-details {
    position: relative;
    z-index: 1;
    padding-top: 15px;
}

.event-details h3 {
    font-size: 41.82px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.event-details h5 {
    font-size: 32px;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1;
}

.event-details p {
    font-size: 29.87px;
    margin: 0;
    margin-bottom: 30px;
    line-height: 1;
}

/* DFI Equipment Rodeo Description Section */
.rodeo-description {
    background-color: #F58634;
    padding: 50px 0;
}

.rodeo-description .content-container {
    text-align: left;
}

.rodeo-description p {
    font-size: 1.7em;
    line-height: 1.8;
    margin: 0 auto 20px;
}

.rodeo-logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20%;
    margin-top: 30px;
    position: relative;
}

.rodeo-logo {
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.rodeo-logo-left {
    background-image: url('../images/Edit_3_pic1.png');
    background-position: left bottom;
    justify-content: flex-end;
}

.rodeo-logo-right {
    background-image: url('../images/Edit_3_pic2.png');
    background-position: right bottom;
    justify-content: flex-start;
}

.rodeo-logo-center {
    margin: 0 auto;
}

.rodeo-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.rodeo-buttons .btn-primary {
    padding: 20px 40px;
    font-size: 1.2em;
    white-space: nowrap;
}

/* One Day Section - Special Layout */
.one-day-section {
    background-color: #FFFFFF;
    color: #000000;
    background-image: url('../images/crane.png');
    /*background-size: 15%;*/
    background-repeat: no-repeat;
    background-position-y: top;
    background-position-x: 40%;
}

.one-day-section .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.one-day-section .section-title {
    text-align: left;
    color: #000000;
}

.one-day-section .section-title .highlight {
    color: #DA291C;
}

.one-day-section .section-text {
    color: #000000;
}

.one-day-section .section-text p {
    color: #000000;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 300px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/even-map-backgroun.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.map-placeholder-text {
    color: #000000;
}

.btn-primary {
    display: inline-block;
    background-color: #DA291C;
    color: #FFFFFF;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    /*
    font-size: 1.3em;
    line-height: normal;
    */
    white-space: nowrap;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #DA291C;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
    transform: translate(-1px, -1px);
}

/* Content Sections */
.content-section {
    padding: 50px;
}

.content-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

#sponsor {
    padding: 0 50px;
    position: relative;
    background-image: url('../images/Edit_5_pic_1.png');
    background-size: 50% auto;
    background-position: bottom left;
    background-repeat: no-repeat;
}

#sponsor .section-decoration-rectangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background-image: url('../images/rectangle-top-left.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

#sponsor .section-image {
    min-height: 600px;
}

#teen {
    padding: 0 50px;
    position: relative;
    background-image: url('../images/Edit_2_Pic.png');
    background-size: 50% auto;
    background-position: right bottom;
    background-repeat: no-repeat;
}

#teen .section-decoration-rectangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    height: 100%;
    background-image: url('../images/rectangle-bottom-right.png');
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

#teen .content-container .section-image {
    min-height: 600px;
}

#sponsor .section-text {
    padding: 50px 0;
}

#sponsor .section-text p {
    margin-bottom: 30px;
}

.logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    width: 100%;
}

.sponsor-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sponsor-block-logo {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    margin: auto 0;
}

.sponsor-block-name {
    font-size: 1em;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

p.sponsor-block-role {
    font-size: 0.9em !important;
    margin: 0 !important;
    color: #666666;
    line-height: 1.4;
}

.section-dark {
    background-color: #000000;
    color: #FFFFFF;
}

.section-dark .content-container {
    padding: 50px 100px;
}

.section-orange {
    background-color: #F4B735;
    color: #000000;
}

.section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 4em;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
}

#schedule .section-title {
    font-weight: 700;
    font-size: 4em;
}

.section-title .highlight {
    color: #DA291C;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-text p {
    font-size: 1.5em;
}

.section-image {
    width: 100%;
    height: auto;
}

#sponsor .section-image-after {
    display: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #DA291C;
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid #DA291C;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #DA291C;
    color: #FFFFFF;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
    transform: translate(-1px, -1px);
}

/* Schedule Section */
.schedule-box {
    padding: 30px;
    margin-top: 0;
    font-size: 1.5em;
}

.schedule-box h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 50px;
}

.schedule-item {
    color: #000000;
}

.schedule-time {
    font-weight: 700;
    color: #DA291C;
    font-family: 'Roboto Condensed', sans-serif;
}

.schedule-note {
    margin-top: 20px;
    color: #000000;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #FFFFFF;
}

.faq-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 4em;
    text-align: left;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq-title .highlight {
    color: #DA291C;
}

.faq-item {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 500;
}

.faq-question {
    font-family: 'Roboto Condensed', sans-serif;
    color: #DA291C;
    font-weight: 700;
}

.faq-answer {
    color: #000000;
    line-height: 1.8;
    font-weight: 300;
    padding-left: 1.3em;
    text-indent: -1.3em;
}

.faq-answer strong {
    font-weight: 700;
    display: inline-block;
    width: 1.3em;
    text-indent: 0;
}

.faq-answer a {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

/* Footer */
.footer {
    padding: 0;
    text-align: center;
    position: relative;
    background-image: url('../images/footer-bg.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    margin-top: 200px;
}

.footer-decorative {
    width: 100%;
    height: 150px;
    position: relative;
}

.footer-tractors {
    width: 100%;
    height: 285%;
    background-image: url('../images/footer-contruction-bg2.png');
    background-size: 75%;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-text {
    padding: 20px;
    background-color: #000000;
    color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.footer-text p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3em;
    margin: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.order-first {
    order: -1;
}

.section-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    color: #DA291C;
    margin: 30px 0 15px;
}

.expect-list {
    margin-left: 20px;
    line-height: 2;
    font-size: 1.2em;
}

.expect-list li::marker {
    color: #DA291C;
}

.btn-primary.mt-20 {
    margin-top: 20px;
}

.section-content.center div {
    margin: 2% auto;
}

/* Responsive Design */
/* iMac: 1281px - 2560px */
@media (max-width: 2560px) {
    .one-day-section {
        background-position-x: 43%;
    }
    .section-title {
        font-size: 3.5em;
    }
    .footer {
        margin-top: 10%;
    }
    .footer-tractors {
        background-size: contain;
    }
}

@media (max-width: 1440px) {
    .footer {
        margin-top: 15%;
    }
}

/* Tablet: 1201px - 1280px */
@media (max-width: 1280px) {
    .one-day-section {
        background-size: 20%;
        background-position-x: 43%;
    }

    .hero-container::after {
        min-width: 300px;
        height: 250px;
    }

    .section-title {
        font-size: 2.8em;
    }

    .rodeo-logos {
        gap: 10%;
    }
    .footer {
        margin-top: 100px;
    }
}

/* Tablet: 1025px - 1200px */
@media (max-width: 1200px) {
    .one-day-section {
        background-size: 20%;
        background-position-x: 47%;
    }

    .hero-container::after {
        min-width: 300px;
        height: 200px;
    }

    .section-title {
        font-size: 2.8em;
    }
    .rodeo-logos {
        gap: 5%;
    }
    .schedule-box {
        padding-right: 15px;
        font-size: 1.2em;
    }
    .section-text p {
        font-size: 1.2em;
    }
}

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .header {
        height: 68px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .header-container,
    .hero-container,
    .content-container {
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: 4em;
    }

    .hero-subtitle {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 2.5em;
    }

    .hero-section::before,
    .hero-section::after {
        opacity: 0.5;
    }

    .rodeo-logos {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }

    .rodeo-logo-left,
    .rodeo-logo-right {
        align-items: center;
    }

    .rodeo-logo-right img {
        margin-left: 0;
    }

    .hero-content::before {
        top: -50px;
        right: calc(100% - 600px);
        height: 130px;
    }

    .hero-subtitle h3 {
        font-size: 36px;
    }

    .hero-subtitle h4 {
        font-size: 34px;
    }

    #schedule .section-title {
        font-size: 3em;
    }

    .content-container {
        padding: 0;
    }

    .rodeo-description {
        padding: 30px;
    }

    .one-day-section {
        background-size: 25%;
        padding: 30px;
        background-position-x: 38%;
    }

    .schedule-box h3 {
        font-size: 1.5em;
        margin-top: 0;
    }

    .schedule-box {
        padding: 30px 0 30px 30px;
        font-size: 1.2em;
    }

    .section-text p {
        font-size: 1.2em;
    }

    #sponsor .section-image {
        min-height: 500px;
    }

    #teen .content-container .section-image {
        min-height: 500px;
    }

    .logos {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
        max-width: 100%;
    }

    .sponsor-block-logo {
        max-height: 60px;
    }

    .sponsor-block-name {
        font-size: 0.9em;
    }

    p.sponsor-block-role {
        font-size: 0.8em !important;
    }

    .section-dark .content-container {
        padding: 25px;
    }

    .faq-section {
        padding: 30px;
    }

    .footer {
        margin-top: 100px;
    }

    .footer-tractors {
        background-size: 90%;
    }

    .footer-text p {
        font-size: 1.1em;
    }

    .hero-container::after {
        min-width: 250px;
        height: 250px;
        width: auto;
        margin-bottom: -25px;
    }

    #teen .section-content {
        grid-template-columns: 2fr 1fr;
    }
    #sponsor .section-content {
        grid-template-columns: 1fr 1fr;
    }
    .cta-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 980px) and (orientation: landscape) {
    .hero-image {
        align-self: flex-start;
    }

    .hero-container::after {
        min-width: 200px;
        height: 200px;
        margin-bottom: -35px;
    }

    .one-day-section {
        background-size: 23%;
        background-position-x: 43%;
    }
}

@media (max-width: 950px) {
    .logos {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 100%;
    }
    .one-day-section {
        background-position-x: 40%;
    }
    .faq-title {
        font-size: 3em;
    }

    .faq-item {
        margin-bottom: 15px;
        font-size: 1.2em;
    }
}

@media (max-width: 800px) {
    .hero-subtitle h3 {
        font-size: 1.4em;
    }
    .hero-subtitle h4 {
        font-size: 1.2em;
    }
    .event-details h3 {
        font-size: 2em;
    }
    .event-details h5 {
        font-size: 1.7em;
    }
    .event-details p {
        font-size: 1.6em;
    }
    .one-day-section {
        background-position-x: 45%;
        background-size: 20%;
    }
    .schedule-box,
    .section-text {
        font-size: 1.1em;
    } 
}

@media (max-width: 854px) and (orientation: landscape) {
    .hero-container::after {
        min-width: 180px;
        height: 180px;
    }
}

/* Mobile: Below 768px */
@media (max-width: 768px) {
    .header {
        height: 60px;
    }

    .header-container {
        justify-content: center;
        position: relative;
    }

    .burger-menu {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #DA291C;
        flex-direction: column;
        gap: 20px;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.mobile-active {
        right: 0;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-container {
        grid-template-columns: 1fr 2fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-container,
    .section-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    #teen .section-content {
        grid-template-columns: 2fr 1fr;
    }

    .hero-section {
        padding: 40px 0;
    }

    .header-container,
    .hero-container,
    .content-container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 3.5em;
    }

    .hero-subtitle h3 {
        font-size: 21px;
    }

    .hero-subtitle h4 {
        font-size: 21px;
    }

    .hero-content::before {
        top: -75px;
        right: calc(100% - 370px);
        height: 90px;
    }

    .hero-container::after {
        display: none;
    }


    .section-title {
        font-size: 28px;
        text-align: left;
    }

    .section-content {
        text-align: left;
    }

    .one-day-section {
        padding: 20px;
        background-position-x: 35%;
    }
    .one-day-section .section-content {
        grid-template-columns: 1fr 1fr;
    }

    .section-image {
        order: 0 !important;
    }

    .rodeo-description {
        padding: 15px 0;
    }

    .rodeo-logos {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .rodeo-logo-right img {
        margin-left: 0;
    }

    .rodeo-logo img {
        max-width: 250px;
    }

    .map-container {
        height: 300px;
    }
    
    .cta-buttons {
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons>* {
        grid-column: 1;
    }

    .cta-buttons .btn-primary {
        width: auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        /*
        max-width: 300px;
        */
        text-align: center;
    }
    
    .content-section {
        padding: 30px 0;
    }

    .schedule-box {
        padding: 15px 0 15px 15px;
        font-size: 1em;
    }

    .schedule-box h3 {
        font-size: 1.4em;
        margin-top: 0;
    }

    .section-text p {
        font-size: 1em;
    }

    #sponsor {
        background-size: 70% auto;
        background-position: top center;
    }
    #sponsor .section-image {
        min-height: 400px;
    }

    .logos {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 100%;
    }

    #teen {
        padding-bottom: 200px;
        background-position: bottom center;
        background-size: 60%;
    }

    #teen .content-container {
        padding: 20px;
    }
    #teen .content-container .section-image {
        min-height: 400px;
    }


    .faq-section {
        padding: 20px 0;
    }

    .footer {
        margin-top: 80px;
    }

    .footer-tractors {
        background-size: 90%;
        height: 200%;
    }

    .event-details h3 {
        font-size: 24px;
    }

    .event-details h5 {
        font-size: 22px;
    }

    .event-details p {
        font-size: 21px;
    }

    .rodeo-description p {
        font-size: 1.4em;
    }

    .rodeo-logo-left,
    .rodeo-logo-right {
        align-items: baseline;
        background-position: bottom center;
    }

    #schedule .section-title {
        font-size: 2em;
    }

    #sponsor .section-text {
        padding: 25px 0;
    }

    #sponsor .section-content {
        grid-template-columns: 1fr;
    }

    #teen h2.section-title>br {
        display: none;
    }

    .faq-title {
        font-size: 3em;
    }

    .faq-item {
        margin-bottom: 15px;
        font-size: 1.2em;
    }

    .footer-text p {
        font-size: 1em;
    }

    .btn-primary.mt-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #teen .section-content {
        grid-template-columns: 1fr;
    }
    #teen .content-container .section-image {
        min-height: auto;
    }
    #sponsor .section-content {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile: Below 480px */
@media (max-width: 480px) {
    .mobile-hidden {
        display: none;
    }
    .header {
        height: 55px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }

    .header-container,
    .hero-container,
    .content-container {
        padding: 0 12px;
    }

    .hero-container,
    .section-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-content::before,
    .hero-container::after {
        display: none;
    }
    .hero-image {
        order: 0;
        padding-left: 45px;
    }
    .hero-container {
        gap: 40px;
    }

    .hero-content,
    .section-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5em;
    }
    .hero-content h1>br {
        display: none;
    }

    .hero-subtitle h3 {
        font-size: 24px;
    }

    .hero-subtitle h4 {
        font-size: 24px;
    }

    .section-title {
        font-size: 3.8em;
        text-align: center;
    }

    #schedule .section-title {
        font-size: 3.4em;
        margin-top: 80px;
    }

    .one-day-section {
        background-size: 25%;
        background-position-x: center;
    }

    #sponsor .section-content,
    .one-day-section .section-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .event-details {
        padding: 15px 0;
    }

    .event-details h3 {
        font-size: 2em;
    }

    .event-details h5 {
        font-size: 1.5em;
    }

    .event-details p {
        font-size: 1.4em;
    }

    .rodeo-description {
        padding: 20px 10px;
    }
    .rodeo-description p {
        font-size: 1.2em;
        text-align: justify;
    }

    .rodeo-logos {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rodeo-logo {
        min-height: auto;
        margin-bottom: 30px;
    }

    .rodeo-logo-left,
    .rodeo-logo-right {
        min-height: 250px;
        justify-content: center;
        align-items: center;
    }
    .rodeo-logo-center {
        height: auto;
    }

    .rodeo-logo img {
        max-width: 200px;
    }

    .schedule-box {
        padding: 12px 0 12px 12px;
        font-size: 1.1em;
    }

    .schedule-box h3 {
        font-size: 1.5em;
        margin-top: 0;
    }

    .section-text p {
        font-size: 1.1em;
        text-align: justify;
    }

    .cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        justify-items: center;
    }

    .cta-buttons>* {
        grid-column: 1;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        white-space: normal;
    }

    #sponsor {
        padding: 20px;
        background-size: 100% auto;
        background-position: top center;
    }
    #sponsor .section-image {
        min-height: 320px;
    }
    #sponsor .section-title {
        font-size: 2.5em;
        margin-top: 30px;
    }
    #sponsor .section-text {
        padding-top: 0;
    }

    #teen {
        padding-bottom: revert;
        background-size: 100% auto;
        background-position: bottom center;
    }
    #teen .content-container {
        padding: 20px 0;
    }
    #teen .content-container .section-image {
        min-height: 250px;
    }
    #teen h3.section-subtitle {
        font-size: 2em;
    }

    .logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .sponsor-block {
        padding: 15px 10px;
    }

    .sponsor-block-logo {
        max-height: 50px;
    }

    .section-dark .content-container {
        padding: 12px 0;
    }

    #faq .content-container {
        padding: 0 20px;
    }

    .faq-section {
        padding: 12px 0;
    }

    .faq-title {
        font-size: 2em;
    }

    .faq-item {
        font-size: 1.1em;
    }

    .footer {
        margin-top: 50px;
    }

    .footer-tractors {
        background-size: 90%;
        height: 100%;
    }

    .hero-logo-main {
        width: 400px;
        margin: 0 auto;
    }
    .hero-logo-small {
        max-width: 100px;
    }

    #schedule .section-text h2.section-title br {
        display: none;
    }

    .expect-list {
        margin-left: 0;
        padding-left: 20px;
        line-height: 2;
        font-size: 1.1em;
    }

    .expect-list li {
        padding-left: 0;
        text-align: left;
    }

    .expect-list li::marker {
        color: #DA291C;
    }
    .map-overlay {
        bottom: 35%;
    }
}

@media (max-width: 430px) {}

@media (max-width: 412px) {
    .hero-content h1 {
        font-size: 3.3em;
    }

    .section-title {
        font-size: 2.5em;
    }

    .expect-list {
        font-size: 1em;
    }
}

@media (max-width: 390px) {
    .hero-content h1 {
        font-size: 3.1em;
    }
}