/* =========================
   SEVEN GEN APPAREL STYLES
   ========================= */

html,
body {
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    background-color: #f4f4f4;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #222;

    margin: 0;
    padding: 0;

    font-size: 1rem;
}

/* =========================
   BRAND HEADER
   ========================= */

.brand-header {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, #111111, #1f3d2b);

    padding: 2rem;

    text-align: center;
}

.logo img {
    width: 350px;
    max-width: 90%;
    height: auto;
}

.brand-text h2 {
    margin: 0;
    color: white;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-text p {
    margin-top: 0.3rem;
    color: #d4d4d4;
    font-size: 1rem;
}

/* =========================
   HEADINGS
   ========================= */

h1 {
    text-align: center;
    color: #1f3d2b;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    color: #1f3d2b;
}

h3 {
    color: #111111;
}

/* =========================
   NAVIGATION
   ========================= */

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    background: #111111;
    padding: 1rem;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #1f3d2b;
    border-radius: 5px;
}

/* =========================
   MAIN LAYOUT
   ========================= */

main {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 1rem;

    box-sizing: border-box;
}

/* =========================
   GENERAL SECTIONS
   ========================= */

section {
    background: white;
    border-top: 5px solid #1f3d2b;

    margin: 1rem 0;
    padding: 1.5rem;

    border-radius: 8px;

    width: 100%;
    max-width: 100%;

    box-sizing: border-box;
    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
    background: linear-gradient(
        135deg,
        #111111,
        #1f3d2b
    );

    color: white;
    text-align: center;

    padding: 5rem 2rem;

    border-radius: 8px;
}

.hero h1 {
    color: white;
}

.hero p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* =========================
   CARDS
   ========================= */

.about-card,
.interest-item,
.split-image,
.split-text,
.link-card {
    background: white;
}

/* =========================
   IMAGE STYLING
   ========================= */

img {
    max-width: 100%;
    height: auto;

    display: block;
    margin: 0.75rem auto;

    border-radius: 8px;
}

.interest-item img {
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.interest-item img:hover {
    transform: scale(1.03);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =========================
   INTEREST GRID
   ========================= */

.interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    margin: 1rem 0;
    width: 100%;
}

.interest-item {
    flex: 1;
    min-width: 250px;

    padding: 1.5rem;

    border-radius: 8px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}

.interest-item:hover {
    transform: translateY(-8px);
    background: #fafafa;
}

/* =========================
   SPLIT SECTION
   ========================= */

.split-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin: 1rem 0;
    width: 100%;
}

.split-image,
.split-text {
    padding: 1.5rem;
    border-radius: 8px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* =========================
   ABOUT CARD
   ========================= */

.about-card {
    padding: 1.5rem;
    margin: 1rem 0;

    border-radius: 8px;

    text-align: center;
}

/* =========================
   LINK CARD
   ========================= */

.link-card {
    padding: 1.5rem;
    margin: 1rem 0;

    border-radius: 8px;

    text-align: center;
}

/* =========================
   FEATURE LIST
   ========================= */

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-weight: 500;
}

/* =========================
   CONTACT FORM
   ========================= */

form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

input,
textarea,
select {
    width: 100%;

    padding: 0.8rem;
    margin-top: 0.3rem;

    border: 1px solid #ccc;
    border-radius: 5px;

    box-sizing: border-box;

    font-family: inherit;
}

textarea {
    resize: vertical;
}

/* =========================
   BUTTONS
   ========================= */

button {
    background: #1f3d2b;
    color: white;

    border: none;

    padding: 0.9rem 1.5rem;

    border-radius: 5px;

    cursor: pointer;

    font-weight: bold;
    font-size: 1rem;

    transition: 0.3s ease;
}

button:hover {
    background: #2e5a41;
}

/* =========================
   FOOTER
   ========================= */

footer {
    background: #111111;

    color: white;

    text-align: center;

    padding: 2rem;
    margin-top: 1rem;
}

footer a {
    color: #7fc89b;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: white;
}

/* =========================
   MOBILE DESIGN
   ========================= */

/* =========================
   MOBILE DESIGN
   ========================= */

@media (max-width: 767px) {

    main {
        padding: 0.5rem;
        width: 100%;
    }

    section {
        width: 100%;
        max-width: 100%;

        margin: 0.5rem 0;
        padding: 1.25rem;

        border-radius: 6px;

        overflow: hidden;
        box-sizing: border-box;
    }

    .about-card,
    .link-card,
    .interest-item,
    .split-image,
    .split-text,
    .interest-grid,
    .split-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .hero,
    .about-card,
    .link-card,
    .interest-item,
    .split-image,
    .split-text {
        border-radius: 6px;
    }

    nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    nav a {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .interest-grid {
        margin: 0;
        gap: 0.75rem;
    }

    .interest-item {
        min-width: 100%;
    }

    .split-section {
        margin: 0;
    }

    .split-image,
    .split-text {
        width: 100%;
    }

    section:hover,
    .interest-item:hover {
        transform: none;
    }
}

/* =========================
   DESKTOP DESIGN
   ========================= */

@media (min-width: 768px) {

    nav {
        flex-direction: row;
        justify-content: center;
    }

    .split-section {
        flex-direction: row;
        align-items: center;
    }

    .split-image,
    .split-text {
        flex: 1;
    }
}