html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; 
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    
    color: #333;
} 
.container {
    /* max-width: 1200px; */
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Variable Concept';
    src: url('fonts/Acumin-BdItPro.otf') format('opentype');
    font-weight: 900; 
    font-style: italic;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-SemiBold.otf') format('opentype');
    font-weight: 600; 
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont-Heavy.otf') format('opentype');
    font-weight: 900; /* Typically heavy is 900 */
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.otf') format('opentype');
    font-weight: 400; /* Regular is typically 400 */
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Light.otf') format('opentype');
    font-weight: 300; /* Light is typically 300 */
    font-style: normal;
}
/* MONT BOLD */
.nav-links li a{
    font-family: 'Mont', Arial, sans-serif;
    font-weight: bold;
}

/* MONT REGULAR */
p{
    font-family: 'Mont', Arial, sans-serif; /* Fallback to Arial and sans-serif */
    font-weight: 400; /* Default to Mont Regular */
}

/* ACUMIN VARIABLE CONCEPT */
h3{
    font-family: 'Acumin Variable Concept', Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
}

header {
    color: #000000;
    padding: 15px 0;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}
.logo{
    display:flex;
    max-width: 150px;
}
nav {
    display: flex;
    justify-content: space-between; 
    padding: 0 10px;               
    /* align-items:center; */
}
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center; 
    flex-grow: 1; 
    padding: 0;
}
.nav-links li {
    margin: 0 30px; 
    margin-top: 40px; 
}
.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 11px;
    display: flex;
    align-items: center;
    padding: 5px 0; 
    transition: color 0.3s, transform 0.3s; 
}
.nav-links li a:hover {
    color: #60adff; 
    transform: translateY(-5px); 
    transition: transform 0.3s, box-shadow 0.3s;

}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 0; 
    height: 2px;
    background-color: #60adff; 
    transition: width 0.3s ease; 
}

.nav-links li a:hover::after {
    width: 100%; 
}
.product {
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 59.8%;
    margin-left: 30px;
}
.container{
    display: flex;
    gap: 100px;
    flex-direction: row;
}

.container2 {
    text-align: center;
    background-color: #95A1A7;
    width: 47%;
    margin-left: 50px;
    margin-top: -90px;
    padding: 20px;
}

.container2 h2 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.container3 {
    background-size: cover;
    background-position: center;
    height: 350px;
    margin-left: 50px;
    margin-top: 15px;
    width: 25.23%;
    float: left;
}
.container4 {
    height: 350px;
    background-size: cover;
    margin-top: 15px;
    margin-left: 20px;
    width: 23.4%;
    background-color: #00baff;
    float: left;
}
.container5 {
    clear: both;
    background-size: cover;
    background-position: center;
    margin-top: 15px;
    float: left;
    margin-left: 50px;
    height: 350px;
    width: 50.23%;
}

.text-and-button {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 40%;
}

.text-and-button p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.order-button {
    display: flex;
    font-weight: bolder;
    align-items: center;
    padding: 10px 20px;
    color: #000000;
    border: line;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-button i {
    margin-left: 10px;
}

.order-button:hover {
    background-color: #0088cc;
}
.main-container {
    display: flex;
    justify-content: space-between; /* Space between image and text/button */
    align-items: flex-start; /* Align items at the start */
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.menu-icon {
    display: none;
}

@media (max-width: 768px) {
    .container{
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;

    }
    .container .product,
    .container2,
    .container3,
    .container4,
    .container5 {
        width: 100%;
        height: 250px;
    }
    .container .product{
        height: 350px;
    }
.container4{
    margin-left: 50px;
}
    nav {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px; 
        right: 0;
        background-color: rgb(255, 255, 255); 
        flex-direction: column;
        width: 250px; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        padding: 20px; 
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-links .logo {
        display: none;
    }

    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: rgb(0, 0, 0); 
        position: absolute;
        right: 20px;
        top: 20px;
    }

    nav.active .nav-links {
        display: flex;
    }
}