/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-page background */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #eaeaea;
    line-height: 1.6;

    /* Background image */
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.85)
        ),
        url("assets/Background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Center content */
body > * {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero logo */
section:first-of-type {
    max-width: none;
    width: 100%;
    min-height: 100vh;
    padding: 0;

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

    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    background-color: rgba(0, 0, 0, 0.35);
}

section:first-of-type img {
    width: 100vw;
    max-width: none;
    height: auto;
    object-fit: contain;
}

/* One-page scrolling sections */
section {
    min-height: 100vh;
    padding: 80px 20px;
    font-size: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Headings */
h1, h2 {
    font-size: 4rem;
    margin-bottom: 16px;
    color: #ffffff;
    border-left: 4px solid #1e90ff;
    padding-left: 14px;
}

/* Paragraphs */
p {
    margin-bottom: 14px;
    color: #d0d0d0;
    max-width: 800px;
}

/* Lists */
ul {
    list-style: none;
    margin-top: 20px;
    max-width: 900px;
}

li {
    margin-bottom: 16px;
    padding-left: 22px;
    position: relative;
    color: #dcdcdc;
}

/* Bold emphasis */
li b {
    color: #ffffff;
    font-weight: 600;
}

/* First section (logo hero spacing) */
body > img {
    margin-top: 80px;
    margin-bottom: 40px;
}

/* Contact section tightening */
section:last-child p {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 60px 15px;
    }

    h1, h2{
        font-size: 3.5rem;
    }

    p {
        font-size: 1.5rem;
    }
}
