html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #055347;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.header-bar {
    display: flex;
    align-items: center;
    position: fixed;
    height: 60px;
    padding: 0 15px;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background-color: #055347;
}

.progress-bar-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #055347;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #033029;
    transition: width 0.2s ease-out;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding-top: 2px;
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

.branding {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 1.3rem;
}

.top-bar-link-container {
    display: flex;
    gap: 30px;
    font-weight: 500;
    font-size: 1.2rem;
    padding-top: 2px;
    margin-left: auto;
    margin-right: 20px;
}

.top-bar-link {
    color: #e7e7e7;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.top-bar-link:hover {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #e7e7e7;
    transition: all 0.3s ease;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #055347;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    z-index: 999;
    text-align: center;
}

.mobile-menu.active {
    display: flex;
    text-align: center;
}

.mobile-menu-link {
    color: #e7e7e7;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
    width: auto;
    text-align: center;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: white;
}

.landing-container {
    margin-top: 150px;
    text-align: center;
    min-height: 750px;
}

.landing-title {
    font-size: 100px;
    margin-bottom: 1px;
}

.landing-title.animate .word {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.landing-title.animate.active .word {
    opacity: 1;
    transform: translateY(0);
}

.landing-title.animate.active .word:nth-child(1) {
    transition-delay: 0s;
}

.landing-title.animate.active .word:nth-child(2) {
    transition-delay: 0.5s;
}

.buttons-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.landing-button {
    background-color: transparent;
    cursor: pointer;
    border: 2.5px solid #e7e7e7;
    color: #e7e7e7;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.landing-button:hover {
    color: white;
    border-color: white;
}

.landing-arrow-button {
    margin-top: 200px;
    background: none;
    border: none;
    line-height: 0;
    transition: transform 0.3s ease;
}

.landing-arrow-element {
    display: block;
    width: 100%;
    height: auto;
    max-width: 75px;
}

.landing-arrow-button:hover {
    transform: translateY(10%);
}

.about {
    background-color: #033029;
    color: white;
    min-height: 400px;
    padding-top: 60px;
    padding-bottom: 30px;
    width: 100%;
}

.about-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 50px;
}

.about-text {
    width: 30%;
    align-items: flex-start;
    flex-direction: column;
}

.about-h1 {
    font-size: 50px;
    margin-bottom: 5px;
}

.about-acquisitions {
    width: 40%;
    align-items: flex-start;
    flex-direction: column;
}

.about-p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
}

.about-acq-p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
}

.about-acq-h1 {
    font-size: 50px;
    margin-bottom: 5px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    padding: 20px;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.word {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.reveal.active .word {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .word:nth-child(1) {
    transition-delay: 0s;
}
.reveal.active .word:nth-child(2) {
    transition-delay: 0.1s;
}
.reveal.active .word:nth-child(3) {
    transition-delay: 0.2s;
}
.reveal.active .word:nth-child(4) {
    transition-delay: 0.3s;
}
.reveal.active .word:nth-child(5) {
    transition-delay: 0.4s;
}
.reveal.active .word:nth-child(6) {
    transition-delay: 0.5s;
}

.contact {
    height: 500px;
    width: 100%;
    background-color: #033029;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 0 15px;
}

.contact-text-cont {
    display: flex;
    flex-direction: column;
}

.contact-text-h1 {
    font-size: 50px;
    margin-bottom: 5px;
}

.contact-checkmark {
    height: 15px;
    width: auto;
}

.contact-content-cont {
    display: flex;
    flex-direction: column;
}

.contact-email-cont {
    width: 600px;
    padding: 20px;
    color: white;
    border-radius: 12px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
}

.contact-modle {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    flex: 1 1 45%;
    min-width: 200px;
}

.contact-field.full-width {
    flex: 1 1 100%;
}

.contact-modle label.contact-title {
    font-weight: 600;
    margin-top: 15px;
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-label {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1rem;
    padding: 8px 4px 4px 0;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-label:focus {
    border-bottom-color: white;
}

.contact-label::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

textarea.contact-label {
    resize: vertical;
    min-height: 80px;
    line-height: 1.4;
}

.form-submit-button {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.form-submit-button:hover {
    background-color: white;
    color: #033029;
}

.form-submit-button .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.form-submit-button:hover .arrow {
    transform: translateX(5px);
}

footer {
    background-color: #033029;
    height: 140px;
}

.footer-container {
    display: flex;
    justify-content: center;
}

.footer-branding {
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-weight: 800px;
}

#footer-closing {
    font-size: 15px;
}

.footer-roblox {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.footer-icon:hover {
    transform: translateY(-10%);
}

.footer-icon {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.portfolio {
    text-align: center;
    min-height: 500px;
}

.portfolio-h1 {
    font-size: 50px;
    margin-bottom: 1px;
    padding-bottom: 1px;
}

.portfolio-p {
    max-width: 50%;
    margin: 1px auto;
    text-align: center;
}

.portfolio-trc {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

#trc_img {
    border-radius: 10px;
    height: 350px;
    width: auto;
    display: block;
}

#trc-button {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}

.trc-playercount {
    position: absolute;
    top: 5px;
    left: 10px;
    color: white;
    padding: 1px 10px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.active-players {
    height: 20px;
    width: auto;
}

.portfolio-trc-p {
    font-weight: 500;
    font-size: 15px;
}

.trc-visits {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    padding: 1px 10px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.visits-img {
    height: 15px;
    width: auto;
}

@media (max-width: 480px) {
    .landing-title { font-size: 40px; }
    .about-h1, .about-acq-h1, .contact-text-h1 { font-size: 24px; }
    .contact-field { min-width: 100%; }
    .about-p, .about-acq-p { font-size: 14px; }
    .header-bar { padding: 0 5px;}
    .mobile-logo { height: 30px; }
    .portfolio-p { max-width: 400px; margin-left: 0; margin-right: 0;}
}

@media (max-width: 768px) {
    .header-bar {
        justify-content: space-between;
        padding: 0 10px;
    }

    .branding {
        margin-left: 0;
        flex: 0 0 auto;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        height: 40px;
    }

    .top-bar-link-container {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-right: 0;
        flex: 0 0 auto;
    }

    .landing-title { font-size: 40px; }
    .about-h1, .about-acq-h1, .contact-text-h1 { font-size: 36px; }
    .contact-email-cont { width: 100%; padding: 10px; }
    .about-container { flex-direction: column; align-items: flex-start; }
    .about-text, .about-acquisitions { width: 100%; }
    .about-p, .about-acq-p { font-size: 16px; max-width: 350px; }
    .portfolio-p { max-width: 400px; margin-left: 0; margin-right: 0;}
    .portfolio-trc {
        max-width: 100%;
    }
    #trc_img {
        max-width: 100%;
        width: 95%;
        height: auto;
        margin: 0 auto;
        border-radius: 10px;
    }
}