* {
    margin: 0;
    padding: 0;
}
input {
    display: block;
}

video {
    position: relative;   /* or absolute */
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    object-fit: cover; /* makes it fill nicely */
    z-index: -1;       /* pushes it behind everything */
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.089);
}

html {
    scroll-behavior: smooth;
}

body {
    background: #1A1A1D;
    font-family: "Poppins", sans-serif;
}

ul {
    list-style: none;
}


/* HEADER SECTION */
/* -------------------------------------------------------------------------------- */

.header {
    display: flex;
    background: #14032438;
    backdrop-filter: blur(10px);
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 10;       /* keeps nav above video */
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.089);
    padding-inline: 100px;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-weight: 300;
}

.nav ul {
    margin-right: 6rem;
}
.nav a{               /* this is for the navigation buttons */
    color: rgb(231, 231, 231);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    margin: 16px;
    font-weight: 300;
    transition: 0.5s;
    position: relative;
}

.nav #span-text {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}
.nav #span-text:hover {
    background: rgb(202, 41, 81);
    border-radius: 20px;
}

#contact-btn {
    color: black;
    font-weight: 700;
}
#contact-btn:hover {
    color: black;
    font-weight: 700;
}
#contact-btn::after {
    display: none;
    content: '';
}

.nav a::after {
    content: '';
    position: absolute;
    background: rgb(255, 175, 175);
    height: 3px;
    width: 0%;
    bottom: 0;
    left: 0;
    transition: 0.2s ease-in-out;
}

.nav a:hover::after {
    z-index: -1;
    width: 100%;
}

.nav a:hover {
    color: rgb(255, 175, 175);
}


/* HOVER SECTION */
/* -------------------------------------------------------------------------------- */  

.hover-text-box {
    position: absolute;
    background: transparent;
    backdrop-filter: blur(3px);
    height: 230px;
    width: 470px;
    top: 50vh;
    left: 100px;
    z-index: 2;
    border-radius: 20px;
}

.hover-text-box-container {
    display: flex;
    margin-left: 1rem;
    align-items: center;
}
.hover-text-box-container h1 {
    font-weight: 500;
    margin-top: 15px;
    color: rgb(255, 255, 255);
}

.hover-paragraph-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hover-paragraph-container p {
    margin-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: rgb(153, 153, 153);
}

.hover-btn-2 {
    border: none;
    border-radius: 50px;
    height: 65px;
    width: 200px;
    background-color: rgb(202, 41, 81);
    transition: 0.2s ease-in-out;
}
.hover-btn-2:hover {
    background-color: rgb(255, 255, 255);
}
.hover-btn-2:hover p {
    color: black;
}

.hover-btn-1 {
    border: 0.1rem, solid;
    border-color: rgb(255, 255, 255);
    border-radius: 50px;
    height: 65px;
    width: 200px;
    background-color: transparent;
    transition: 0.2s ease-in-out;
}
.hover-btn-1:hover {
    background-color: rgb(131, 131, 131);
}
.hover-btn-1:hover p{
    color: black;
}
.hover-btn-1 p {
    color: white;
    font-weight: 600;
    font-size: large;
}
.hover-btn-2 p {
    color: white;
    font-weight: 100;
    font-size: medium;
}

.hover-btn-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px;
}

/* OFFERS SECTION ( need to fix the naming mixed with about)*/
/* -------------------------------------------------------------------------------- */  

.testing {
    display: flex;
    justify-content: center;
    background: #1A1A1D;
    min-height: 80vh;
    width: 100%;
}

.offer-heading {
    text-align: center;
    color: rgb(235, 235, 235);
    font-size: 2rem;
    font-weight: 900;
    margin: 1.5rem;
}

.offer-p {
    color: rgb(61, 61, 61);
    text-align: center;
    padding-inline: 100px;
}

.box-containers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.box-containers h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.heading-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}
.text-box-container p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.box {
    background: rgba(206, 206, 206, 0.452);
    height: 350px;
    width: 350px;
    margin: 30px;
}
.box p {
    text-align: center;
}

/* ABOUT SECTION */
/* -------------------------------------------------------------------------------- */  

.about-page {
    display: flex;
    justify-content: space-around;
    background: #26262b;
    min-height: 80vh;
    width: 100%;
}

.about-container {
    margin-top: 100px;
    display: flex;
}

.profile-img{
    border: 0.1rem solid rgba(255, 255, 255, 0.281);
    height: 300px;
    width: 300px;
    margin-inline: 100px;
    border-radius: 50%;
}

.about-text-container {
    height: 350px;
    width: 500px;
    display: flex;
    flex-direction: column;
}
.about-text-container h1 {
    color: rgb(202, 41, 81);
    margin-inline: 10px;
    margin-top: 25px;
    font-size: 1rem;
}
.about-text-container h2 {
    color: rgb(136, 136, 136);
    margin-inline: 10px;
}
.about-text-container span {
    position: relative;
    top: -6px;
    color: rgb(202, 41, 81);
    font-family: "Pixelify Sans", sans-serif;
    font-size: larger;
}
.about-text-container p {
    color: rgb(165, 165, 165);
    margin-inline: 10px;
}

/* CONTACT SECTION */
/* -------------------------------------------------------------------------------- */

.contact-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.half-page-1 {
    border: 0.1rem solid rgba(255, 255, 255, 0.171);
    border-radius: 20px;
    height: 300px;
    width: 400px;
    margin: 30px;
    margin-top: 80px;
    padding: 20px;
}

.half-page-1 h1 {
    color: white;
    font-size: 300;
    font-weight: 300;
}
.half-page-1 h2 {
    color: rgba(255, 255, 255, 0.315);
    font-size: medium;
    margin-block: 5px;
    font-weight: 400;
}
.half-page-1 a {
    text-decoration: none;
    color: white;
    font-weight: 300;
}

.half-page-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    width: 600px;
    margin: 30px;
}

.contact-page {
    padding-block: 30px;
}
.contact-box, .contact-box-first-name, .contact-box-last-name {
    color: white;
    caret-color: #ffffff;
    padding-inline: 16px;
    height: 30px;
    width: 206px;
    margin: 10PX;
    margin-block: 20px;
    border-radius: 10px;
    border: 0.1rem solid rgba(255, 255, 255, 0.171);
    outline: none;
    background-color: #313136;
    transition: border-color 0.3s ease-in-out;
}
.contact-box-first-name, .contact-box-last-name {
    text-transform: capitalize;
}
.contact-box::placeholder {
    color: rgba(255, 255, 255, 0.137);
    font-weight: 100;
}

.contact-box:focus, .contact-box-first-name:focus, .contact-box-last-name:focus {
    border-color: rgb(202, 41, 81);
}

.contact-box-large {
    color: white;
    caret-color: #ffffff;
    border: 0.1rem solid rgba(255, 255, 255, 0.171);
    background-color: #313136;
    width: 500px;
    height: 200px;
    padding: 15px;
    outline: none;
    border-radius: 20px;
    resize: none;
    box-sizing: border-box;
}
.contact-box-large:focus {
    border-color: rgb(202, 41, 81);
}
.contact-box-large::placeholder {
    color: rgba(255, 255, 255, 0.137);
    font-weight: 100;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-btn {
    height: 70px;
    width: 500px;
    border: 0.1rem solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    background-color: rgb(202, 41, 81);
    transition: 0.2s ease-in-out;
}
.contact-btn:hover {
    border-radius: 50px;
    border: 0.1rem solid rgba(0, 0, 0, 0.479);
    background-color: #ffffff;
}

/*  FOOTER SECTION */


footer {
    width: 100%;
    min-height: 30vh;
    background: rgb(14, 14, 14);
}
hr {
    border: none;
    background-color: #ffffff1a;
    height: 0.1rem;
}

#footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.first-half-footer li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.second-half-footer li{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-footer ul {
    margin-right: 6rem;
}
.nav-footer a{               /* this is for the navigation buttons */
    color: rgb(231, 231, 231);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    margin: 5px;
    font-weight: 300;
    transition: 0.5s;
    position: relative;
}
.nav-footer ul {
    margin-right: 6rem;
}
.first-half-footer a{               /* this is for the navigation buttons */
    color: rgb(231, 231, 231);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    margin: 5px;
    font-weight: 300;
    transition: 0.5s;
    position: relative;
}

#footer-copyright{
    background: rgb(14, 14, 14);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.fa-copyright{
    color: #ffffff;
    font-size: 1rem;
}
#footer-copyright h1, #footer-copyright p{
    margin: 5px;
    color: white;
    font-size: 1rem;
    font-weight: 100;
}
