body{
    background: linear-gradient(
        135deg,
        rgb(20,20,20),
        rgb(30, 30, 30),
        rgb(40,40,40)
    );
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    position: relative;
    color: white;
    padding-left: clamp(20px, 4vw, 50px);
    padding-right: clamp(20px, 4vw, 50px);
    margin: 0px;
}

html{
    scroll-behavior: smooth;
}

section{
    margin-top: clamp(80px, 8vw, 120px);
}

button{
    transition: transform 0.5s ease;
}

button:hover{
    transform: translateY(-3px);
}

.logo-image{
    width: 85%;
    max-width: 200px;
}

.header-div{
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    background-color: rgb(35, 35, 35);
    margin-bottom: 60px;
    z-index: 1;
}

.logo-div{
    min-width: 100px;
}

.navigation{
    margin-right: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
}

@media(max-width: 1200px){
    .navigation button{
        width: 100%;
        max-width: 500px;
        height: 50px;
        cursor: pointer;
        background: transparent;
        color: white;
        border: 1px solid rgb(45, 43, 43);
        margin-right: 0px;
        transition: opacity 2s;
    }
}

@media(max-width: 775px){
    .header-div{
        height: 100px;
    }
}

.navigation button{
   
    max-width: 150px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    color: white;
    border: none;
    margin-right: 20px;
    transition: opacity 2s;
    font-size: 18px;
}

.navigation button:hover{
    box-shadow: 4px 4px 4px rgba(50,50,50,0.8);
    background-color: rgb(20,20,20);
}

.navigation button:active{
    box-shadow: 5px 5px 5px rgba(50,50,50,0.8);
    background-color: rgba(16,14,14,0.7);
}

@media(max-width: 1000px){
    .navigation button{
        width: 100%;
        max-width: 100px;
        height: 50px;
        cursor: pointer;
        background: transparent;
        color: white;
        margin-right: 20px;
        transition: box-shadow 0.15s;
        font-size: 14px;
    }

    .home-text-div{
        padding-top: 50px;
    }
}

@media(max-width: 900px){
    body{
        padding-top: 0px;
    }

    .navigation button{
        max-width: 75px;
    }

    .home-text-div{
        padding-top: 30px;
    }
}

.hero-image-div{
    width: 100%;
    max-width: 500px;
    transition: transform 0.2s ease;
}

.hero-image-1{
    margin-top: 100px;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.hero-image-1:hover{
    transform: translateY(-5px);
}

.hero-image-2{
    width: min(18%, 220px);
    position: absolute;
    right: 0px;
    top: 500px;
    transition: transform 0.4s ease;
}

.hero-image-2:hover{
    transform: translateY(-5px);
}

.home-main-sect{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-text-div{
    font-weight: bold;
    padding-left: clamp(20px, 4vw, 50px);
}

.home-text-title{
    font-size: clamp(42px, 5vw, 65px);
}

.home-text-bullet{
    font-size: clamp(24px, 3vw, 40px);
}

.home-text-bullet{
    list-style-type: none;
}

.home-text-bullet li{
    margin-bottom: 30px;
}

.delivery-info-text{
    font-size: clamp(18px, 2vw, 25px);
    margin: 100px 0px 100px -20px;
}

.home-buttons-div{
    display: flex;
    align-items: center;
}
 button{
    width: 100%;
    max-width: 500px;
    height: 75px;
    font-size: clamp(16px, 2vw, 20px);
    border-radius: 75px;
    border: none;
    cursor: pointer;
    background-color: rgba(0,0,0,0.176);
    margin-right: 50px;
    color: white;
    transition: background-color 0.2s;
}

@media(max-width: 1700px){
    .home-buttons-div{
        margin-top: 50px;
    }
}

@media(max-width: 1600px){
    .home-buttons-div{
        margin-top: 0px;
    }
}

.home-buttons-div button:hover{
    background-color: aliceblue;
    color: black;
}

.home-buttons-div button:active{
    box-shadow: 5px 5px 5px rgb(0,0,0);
}
.contact-me-button{
    width: 200px;
    height: 70px;
    font-size: 20px
}

.hidden{
    opacity: 0;
    transform: translateY(40px);
    transition: all 2s ease;
}

.show{
    opacity: 1;
    transform: translateY(0px);
    transition: all 1s ease;
}