
* {
    text-decoration: none;
    margin: 0;
    padding: 0;
}


.header-main {
    width: 100%;
    height: 10vh;
    min-height: 90px;
    background-color: #2d2822;
    display: flex;
    justify-content: space-between;
}

.header-main a {
    cursor: pointer;
}

.header-logo {
    width: fit-content;
    height: 100%;
    padding-left: 4rem;
    padding-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    height: 8vh;
}

.header-options {
    width: fit-content;
    height: 100%;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-options ul {
    list-style: none;
    margin-left: 30px;
}

.header-options ul li {
    display: inline;
    float: left;
}


.header-options ul li a {
    padding: 0 30px;
    font-size: 30px;
    display: flex;
    align-items: center;
    color: #f7ce36;
    font-family: "Russo One", sans-serif;
}

.header-options a:hover {
    color: rgba(247,206,54,0.85);
    scale: 1.01;
}

.header-options ul li a:active {
    scale: 0.99;
}

.social-second-container {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-right: 2rem;
}


.social-section-container i {
    font-size: 50px;
    color: #f7ce36;
    cursor: pointer;
}

.social-second-container i:hover {
    color: rgba(247,206,54,0.75);
    scale: 1.01;
}

.social-section-container i:active {
    scale: 0.99;
}


/* Main section of the homepage */


.main-container {
    width: 100%;
    height: 90vh;
    background-color: rgba(44,39,35,0.90);
    overflow-x: hidden;
    z-index: -5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-container video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    z-index: -10;
    object-fit: fill;
    overflow-x: hidden;
    overflow: hidden;
}

.main-content h1 {
    font-size: 9em;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    -webkit-text-fill-color: rgba(44,39,35,0.8);
    -webkit-text-stroke: 4px #f7ce36;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 80vw;
}

.main-content h3 {
    font-size: 4em;
    font-family: "Russo One", sans-serif;
    -webkit-text-fill-color: aliceblue;
    -webkit-text-stroke: 2px #2d2822;
    text-align: center;
    max-width: 80vw;
}

.main-container-contact {
    display: flex;
    justify-content: center;
    width: 100vw;
    gap: 2rem;
    padding-top: 2rem;       
}

.main-container-phone,
.main-container-email {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f7ce36;
    background-color: rgba(44,39,35,0.80);
    padding: 1.5rem 2rem;
    border-radius: 30px;
    border-style: solid;
    border-width: 5px;
    border-color: #f7ce36;
}

.main-container-phone i,
.main-container-email i {
    font-size: 2rem;
    padding-right: 20px;
}

.main-container-phone p,
.main-container-email p {
    font-size: 2rem;
    font-weight: 900;
}

/* Hamburger Menu */

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: #f7ce36;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0rem;
    top: 10vh;
    width: 300px;
    list-style: none;
    text-decoration: none;
    background: rgb(44,39,35);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    height: 0;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu a {
    color: #f7ce36;
    font-weight: bolder;
    font-size: 20px;
}

.dropdown-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
}

.dropdown-menu-social i {
    font-size: 40px;
}

.dropdown-menu.open {
    height: 310px;
    border-color: #f7ce36;
    border-style: solid;
    border-width: 2px;
    padding: 20px 10px;
    z-index: 100;
}


/* Start of smaller computer version */

@media screen and (max-width: 2200px) {
    .header-options ul li a {
        font-size: 25px;
        padding: 0 20px;
    }

    .header-options ul {
        margin-left: 20px;
    }

    .social-second-container {
        gap: 1.5rem;
    }

    .social-section-container i {
        font-size: 40px;
    }

    .header-logo {
        padding-left: 40px;
    }

    .main-content h1 {
        font-size: 8em;
        -webkit-text-stroke: 3px #f7ce36;
    }

    .main-content h3 {
        font-size: 3.5em;
    }

    .main-container-phone,
    .main-container-email {
        padding: 1.3rem 1.5rem;
    }
}

/* Start of laptop version */

@media screen and (max-width: 1650px) {
    
    .header-logo {
        padding-left: 30px;
    }

    .header-options ul li a {
        font-size: 20px;
        padding: 0 15px;
    }

    .header-options ul {
        margin-left: 5px;
    }

    .social-second-container {
        gap: 1.3rem;
    }

    .social-section-container i {
        font-size: 33px;
    }

    .main-content h1  {
        font-size: 7rem;
    }

    .main-content h3 {
        font-size: 3rem;
    }
    
    .header-logo img {
        max-height: 80px;
    }
}


/* Start of the Small Computer version */

@media screen and (max-width: 1455px) {
    
    /* Main section */

    .main-content h1 {
        font-size: 5.8rem
    }

    .main-content h3 {
        font-size: 3rem;
    }

    .main-container-phone i,
    .main-container-email i {
        font-size: 30px;
    }

    .main-container-phone p,
    .main-container-email p {
        font-size: 20px;
    }

    .main-container-phone,
    .main-container-email {
        padding: 1.2rem 1.5rem;
        border-width: 3px;
    }
}

/* Start of Ipad version */

@media screen and (max-width: 1100px) {

    /* Hamburger Menu Section */

    .header-options,
    .social-section-container {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 3rem;
    }
    
    .dropdown-menu {
        display: block;
    }

    .header-logo img {
        max-height: 70px;
    }

    /* Main Section */
    
    .main-content h1 {
        font-size: 4.8rem;
    }

    .main-content h3 {
        font-size: 2.5rem;
        -webkit-text-stroke: 1px #2d2822;
    }

    .main-container-phone i,
    .main-container-email i {
        font-size: 30px;
    }

    .main-container-phone p,
    .main-container-email p {
        font-size: 20px;
    }
}

@media screen and (max-width: 900px) {
    
    .main-content h1 {
        font-size: 3.8rem;
        -webkit-text-stroke: 1px #f7ce36;
    }

    .main-content h3 {
        font-size: 2rem;
    }

    .main-container-phone i,
    .main-container-email i {
        font-size: 20px;
    }

    .main-container-phone p,
    .main-container-email p {
        font-size: 15px;
    }
}

@media screen and (max-width: 700px) {

    .main-container-contact {
        flex-direction: column;
        align-items: center;
    }

    .main-container-contact {
        padding-top: 2rem;
        gap: 1rem;
    }

    .main-container video {
        max-width: 100%;
    }
}

/* Start of the Iphone version */

@media screen and (max-width: 500px) {

    .main-content h1 {
        font-size: 3rem;
        font-weight: 900;
        width: 100%;
        padding-bottom: 0.1rem;
    }

    .main-content h3 {
        font-size: 1.25rem;
        -webkit-text-stroke: 0px #fff;
        font-weight: 100;
        width: 100%; 
    }
}


@media screen and (max-width: 390px) {
    
    .main-content h1 {
        font-size: 2.5rem;
    }

    .main-content h3 {
        font-size: 1.1rem;
    }

    .main-container-phone i,
    .main-container-email i {
        font-size: 15px;
    }
    
    .main-container-phone p,
    .main-container-email p {
        font-size: 14px;
    }
}