/* =========================
   Global Resets
========================= */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    color: #fff;
}

/* =========================
   Wide-screen centered layout (added)
========================= */

/* Make widths/padding more predictable */
*, *::before, *::after { box-sizing: border-box; }

/* Shared centered container behavior for main sections */
.hero-container,
.sponsors-section,
.release-section,
body.about-page .about-section {
    width: min(100% - 4rem, 1024px); /* centered column, capped */
    margin-inline: auto;            /* side gutters on wide screens */
}

/* Give more breathing room on larger screens */
@media (min-width: 1024px) {
    .hero-container,
    .sponsors-section,
    .release-section,
    body.about-page .about-section {
        width: min(100% - 4rem, 1024px);
    }
}

/* =========================
   Fixed Navigation Bar
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.9);
    padding: 15px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #c2a41d;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: #287b4b;
}

/* =========================
   Hero / Main Section
========================= */
.hero-container {
    height: 80vh; /* default home page */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* was 0 50px; moved to centered container widths above */
}

.hero-container img {
    width: clamp(300px, 75vw, 900px); /* Min image size, the 75% of view window, up to max image size */
    height: auto;
}

.hero-header {
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 10px 0; /* was 100px 50px 10px 50px */

}


.hero-text-box {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}

/* =========================
   General Image Styling
========================= */
img {
    max-width: 100%;
    object-fit: contain;
}

/* =========================
   Sponsors Section
========================= */
.sponsors-section {
    padding: 60px 0; /* was 60px 20px; container now handles side spacing */
    background-color: #000;
}

.sponsors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sponsors-container img {
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
    transition: 0.3s ease;
}

.sponsors-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================
   H2 Release Section
========================= */
.release-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0; /* was 20px 20px; container now handles side spacing */
    background-color: #000;
}

.release-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.release-section img {
    width: 80%;
    max-width: 922px;
    height: auto;
    display: block;
}

/* =========================
   H2 Page-Specific Adjustments
========================= */
body.h2-page .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    min-height: 60vh;
    padding: 100px 0 10px 0; /* was 100px 50px 10px 50px */
}

body.h2-page .hero-header img {
  width: min(30vw, 200px);
  height: auto;
}

body.h2-page .hero-text-box {
    text-align: center;
    margin-bottom: 40px;
}

body.h2-page .release-section {
    padding: 20px 0; /* keep consistent with centered container */
}

body.h2-page .release-text {
    margin-bottom: 15px;
}

/* =========================
   About Us Page Styling
========================= */
body.about-page .hero-container {
    height: auto;
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0px 0; /* was 60px 50px 20px 50px */
}

body.about-page .hero-text-box {
    text-align: center;
    margin-bottom: 40px;
}

body.about-page .about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0; /* was 80px 50px */
    gap: 40px;
}

body.about-page .strong-roots .about-text-box {
    order: 1;
}
body.about-page .strong-roots .about-image {
    order: 2;
}

body.about-page .rapid-growth .about-text-box {
    order: 2;
}
body.about-page .rapid-growth .about-image {
    order: 1;
}

body.about-page .about-text-box {
    max-width: 500px;
    color: #fff;
    text-align: left;
}

body.about-page .about-text-box h2 {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

body.about-page .about-text-box p {
    font-size: 16px;
    line-height: 1.6;
}

body.about-page .about-image img {
    width: 400px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   About Us Page - Team Hashtag
========================= */
.about-page .team-hashtag {
    text-align: center;
    margin: 60px 20px 40px 20px;
}

.about-page .team-hashtag p {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
}

/* Individual colors */
.about-page .team-hashtag .white {
    color: #ffffff;
}

.about-page .team-hashtag .green {
    color: #287b4b;
}

.about-page .team-hashtag .gold {
    color: #c2a41d;
}

/* Responsive adjustments for hashtag */
@media (max-width: 600px) {
    .about-page .team-hashtag p {
        font-size: 20px;
        letter-spacing: 0.5px;
    }
}