* {
    margin: 0;
    padding: 0;
    font-family: "Lexend Deca", sans-serif;
}

html {
    scroll-behavior: smooth;
    cursor: default;
}

/* HEADER ----------------------------------------------------- */
.header {
    display: block;
    width: 100%;
    height: 70vh;
    background-image: url(images/ANOWheader2.png);
    background-size: 60%;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
}

/* BODY SECTION 1 --------------------------------------------- */
.body1 {
    width: 100%;
    background-color: #000;
    padding-bottom: 40px;
    text-align: center;
}

h1 {
    width: 55%;
    color: rgb(253, 164, 0);
    font-size: 21px;
    text-align: left;
    margin: 0 auto;
}

.chrome-text {
    font-family: "Lexend Deca", sans-serif;
    font-size: 21px; /* adjust as needed */
    text-align: left;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #494949, #0a0a0a, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0); /* optional for depth */
    margin: 0 auto;
    padding-top: 10px;
    transition: color 2.0s ease, -webkit-text-fill-color 2.0s ease;
}

h2 {
    width: 55%;
    color: rgb(255, 255, 255);
    font-size: 12px;
    text-align: left;
    margin: 0 auto;
}

h4 {
    width: 40%;
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    padding-top: 40px;
}

.point {
    transition: 0.35s ease;
    cursor: pointer;
}

/* GRADIENT HOVER */
.point:hover {
    background: linear-gradient(45deg, rgb(255, 255, 255), rgb(97, 97, 97));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: .5px;
    text-shadow: 0 0 2px rgba(248, 133, 1, 0.1);
}

.body1 p {
    width: 55%;
    color: rgb(0, 217, 255);
    font-size: 18px;
    text-align: left;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 40px;
}

/* BODY SECTION 2 --------------------------------------------- */
.body2 {
    width: 100%;
    height: 540px;
    background-image: url(images/body4a2.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
}

/* FOOTER ------------------------------------------------------ */
footer {
    width: 100%;
    height: 450px;
    background-image: url(images/body4a2.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;

    /* NEW CODE ↓↓↓ */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* pushes h3 + h4 to bottom */
    align-items: center;
    padding-bottom: 60px;
}

footer img {
    width: 3%;
    margin: 0 auto;
}

footer h3,
footer h4 {
    width: 49%;
    color: #fff;
    font-size: 10px;
    text-align: center;

    /* Reduced margins so spacing stays tight at bottom */
    margin: 10px auto;
}

footer h4 {
    margin-bottom: 0;
}


/* SOCIAL ICONS ------------------------------------------------ */
.social-icons {
    width: 20%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
}

.fa-instagram,
.fa-youtube {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.3);
}

.fa-instagram:hover {
    color: rgb(132, 0, 255);
}

.fa-youtube:hover {
    color: rgb(255, 0, 0);
}
