/* ToorCamp Base Styles - Shared across all pages */

/* Body and Layout */
body {
    background: rgb(59,219,239);
    background: radial-gradient(circle, rgba(59,219,239,1) 0%, rgba(13,38,45,1) 100%);
    margin: 0;
}

.body-wrapper {
    max-width: 1280px;
    margin: auto;
}

/* Header */
header {
    position: fixed;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
}

.header-banner-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    background-attachment: fixed;
}

.header-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    padding-top: 40px;
    margin-left: 80px;
    position: relative;
    z-index: 1;
}

.header-image {
    z-index: 1;
}

.header-image img {
    width: 100;
    height: auto;
}

.header-list {
    display: flex;
    font-family: 'Montserrat-Regular';
    list-style: none;
    background: #1B4B56;
    border-radius: 50px 0 0 50px;
    padding: 0 8px;
    margin: 0;
    z-index: 1;
}

.header-list a {
    padding: 8px 50px;
    text-decoration: none;
}

.header-list a p {
    font-size: 12px;
    color: #fff;
}

.header-list a:nth-child(4) a p {
    color: #F29100;
}

.header-list a:hover p {
    font-size: 12px;
    color: #F29100;
}

header.scrolled {
    background-color: #1B4B56;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.5), 0px 10px 10px rgba(0, 0, 0, 0.5);
}

header.scrolled .header-content-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

header.scrolled .header-list {
   background: transparent;
   box-shadow: none;
}

/* Banner Date (shared across pages) */
.banner-date {
    font-family: 'Montserrat-Regular';
    background: #1B4B56;
    opacity: .7;
    width: auto;
    padding: 20px;
    text-align: right;
    border-radius: 10px;
    line-height: .5;
    position: fixed;
    top: 129px;
    right: 120px;
    z-index: 2;
}

.banner-date p:first-child {
    font-size: 18px;
    color: #3BDBEF;
    font-weight: 600;
    margin: 0;
}

.banner-date-divider {
    border-right: 3px solid #F29100;
    margin-right: 15px;
}

/* Responsive Header */
@media screen and (max-width: 1024px) {
    .header-content-container {
        margin-left: 48px;
    }
    .header-list a {
        padding: 8px 32px;
    }
    .banner-date {
        right: 80px;
    }
}

@media screen and (max-width: 912px) {
    .header-list a {
        padding: 8px 24px;
    }
    .banner-date {
        right: 60px;
    }
}

@media screen and (max-width: 820px) {
    .header-list a {
        padding: 8px 16px;
    }
    .banner-date {
        right: 40px;
    }
}

@media screen and (max-width: 768px) {
    .banner-date {
        width: 23%;
        right: 30px;
    }
}

@media screen and (max-width: 767px) {
    .header-content-container {
        flex-flow: column;
        margin-left: 0;
    }
    .header-list {
        border-radius: 0;
        justify-content: center;
        margin-top: 16px;
        flex-flow: wrap;
    }
    .header-list a {
        width: 15%;
        text-align: center;
        padding: 0 32px;
    }
    .banner-date {
        width: 45%;
        top: 200px;
        right: 95px;
    }
}

@media screen and (max-width: 540px) {
    .banner-date {
        width: 33%;
        top: 200px;
        right: 155px;
    }
}

@media screen and (max-width: 430px) {
    .banner-date {
        width: 41%;
        top: 200px;
        right: 105px;
    }
}

@media screen and (max-width: 420px) {
    .banner-date {
        width: 50%;
        top: 200px;
        right: 80px;
    }
}

@media screen and (max-width: 393px) {
    .header-list a {
        width: 24%;
    }
}

@media screen and (max-width: 390px) {
    .banner-date {
        width: 50%;
        right: 88px;
    }
}

@media screen and (max-width: 375px) {
    .banner-date {
        width: 55%;
        right: 72px;
    }
}

@media screen and (max-width: 320px) {
    .banner-date {
        right: 50px;
    }
}

@media screen and (max-width: 280px) {
    .header-list {
        flex-flow: wrap;
    }
    .header-list a {
        width: 21%;
    }
    .header-list a p {
        font-size: 10px;
    }
    .banner-date {
        top: 200px;
        width: 63%;
        right: 30px;
    }
}

/* Footer - Shared across all pages */
footer {
    position: relative;
    background: #000;
    padding: 75px 80px;
    display: flex;
    flex-flow: column;
}

.footer-images {
    width: 50%;
}

.footer-logo {
    margin-top: 24px;
}

.footer-copy-right {
    font-family: 'Montserrat-Regular';
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-top: 75px;
}

.footer-date {
    font-family: 'Montserrat-Regular';
    background: #1B4B56;
    opacity: .7;
    width: auto;
    padding: 20px;
    text-align: right;
    border-radius: 10px;
    line-height: .5;
    position: absolute;
    top: 80px;
    right: 80px;
}

.footer-date p:first-child {
    font-size: 18px;
    color: #3BDBEF;
    font-weight: 600;
    margin: 0;
}

.footer-date-divider {
    border-right: 3px solid #F29100;
    margin-right: 15px;
}

/* Footer Responsive */
@media screen and (max-width: 1024px) {
    footer {
        padding: 75px 48px;
    }
    .footer-date {
        right: 48px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 75px 24px;
    }
    .footer-images {
        width: 100%;
    }
    .footer-date {
        right: 24px;
    }
}

@media screen and (max-width: 540px) {
    .footer-date {
        top: 50px;
        right: 24px;
        padding: 15px;
    }
    .footer-copy-right {
        margin-top: 48px;
    }
}

/* ========================================
   Utility Classes - Reusable Components
   ======================================== */

/* Section Container Pattern */
.section-container {
    padding: 75px 80px;
}

/* Typography Utilities */
.heading-impact {
    font-family: 'Impact';
    font-size: 50px;
    margin: 0;
    color: #fff;
    border-bottom: 3px solid #F29100;
    display: inline;
}

.body-text {
    font-family: 'Montserrat-Regular';
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    margin: 0;
}

.body-text-link {
    color: #F29100;
    text-decoration: none;
}

.title-text {
    font-family: 'Montserrat-Regular';
    font-size: 19px;
    color: #F29100;
    margin-top: 0;
    margin-bottom: 30px;
}

/* Dividers */
.orange-divider {
    height: 3px;
    background: #F29100;
    width: 120px;
    margin-bottom: 75px;
}

.orange-divider-thin {
    height: 1px;
    background: #F29100;
    width: 78%;
    margin: 30px auto;
}

/* Utility Responsive Overrides */
@media screen and (max-width: 1024px) {
    .section-container {
        padding: 75px 48px;
    }
}

@media screen and (max-width: 767px) {
    .section-container {
        padding: 75px 24px;
    }

    .heading-impact {
        font-size: 35px;
    }
}

/* ========================================
   Page Banner Shared Styles
   ======================================== */

/* Banner Containers */
.experience-banner-container,
.contact-banner-container {
    padding: 200px 80px 150px;
    position: relative;
}

.experience-banner-content,
.contact-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Banner Titles */
.experience-banner-content h1,
.contact-banner-content h1 {
    font-family: 'Blade Runner Movie Font';
    font-size: 52px;
    color: #3BDBEF;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px #000000;
}

/* Banner Dividers */
.experience-banner-divider,
.contact-divider {
    height: 3px;
    background: #F29100;
    width: 450px;
    margin: 0 0 75px 0;
}

/* Banner Paragraph Text */
.experience-banner-content p {
    font-family: 'Montserrat-Regular';
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    margin: 0;
}

/* Banner Responsive Styles */
@media screen and (max-width: 1024px) {
    .experience-banner-container,
    .contact-banner-container {
        padding: 180px 48px 150px;
    }
}

@media screen and (max-width: 768px) {
    .experience-banner-container,
    .contact-banner-container {
        padding: 160px 24px 100px;
    }

    .experience-banner-divider,
    .contact-divider {
        width: 300px;
    }
}

@media screen and (max-width: 540px) {
    .experience-banner-content h1,
    .contact-banner-content h1 {
        font-size: 40px;
    }

    .experience-banner-divider,
    .contact-divider {
        width: 200px;
    }
}
