html, body {
    overflow-x: hidden;
    width: 100%;
}

/* #region FRONT PAGE */
.section1 {
    position: fixed;
    background: url('Aero_and_Defence/aero-and-defence.jpg') no-repeat center center/cover;
    background-size: cover; 
    color: black;
    flex-direction: column;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.section1 h1 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(44px, 12vw, 120px);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    background-color: rgb(255, 255, 255,0.4);
    text-align: center;
}

.section1 h2 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12.5px, 3.75vw, 37.5px);
    border-radius: 20px;
    animation: text-grow-shrink 3s ease-in-out infinite;
    text-shadow: 0px 5px 20px rgb(0, 0, 0);
}

@keyframes text-grow-shrink {
    0% {
        font-size: clamp(12.5px, 3.75vw, 37.5px); 
    }
    50% {
        font-size: clamp(13.75px, 4.125vw, 41.25px); 
    }
    100% {
        font-size: clamp(12.5px, 3.75vw, 37.5px);
    }
}


.scroll-down {
    position: absolute;
    bottom: 25%;
    color: rgb(0, 0, 0);
    font-size: 16px;
    cursor: pointer;
}

.section2 {
    z-index: 2;
    background-color: white;
    position: absolute; 
    top: 100vh; 
    left: 0;
    width: 100%; 
    height: fit-content; 
    padding: 20px; 
}
/* #endregion */


.main-paragraph {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10%;
    margin-top: 70px;
    margin-bottom: 70px;
}

.h1-background {
    background-image: url('Aero_and_Defence/helicopter.jpg');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
    position: relative;
    height: auto;
    width: 45%;
    box-shadow: 5px 5px 20px black;
    padding: 10px;
}
.h1-background h1 {
    font-family: 'Arial', sans-serif;
    color: rgb(255, 255, 255);
    z-index: 2;
    position: relative; 
    font-size: clamp(10px, 8.8vw, 100px);
    text-align: center;
}

/* White overlay effect */
.h1-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; 
}

.main-paragraph .paragraph {
    margin-right: 5%;
    width: 40%;
    font-family: 'Arial', sans-serif;
    font-size: clamp(5px,2.5vw,25px);
}

.orange-text {
    color: rgb(237,85,35);
}



