@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: end;
    text-decoration: none;
}

.logo a img {
    width: 70px;
    margin: 10px 0;
}

.logo a h3 {
    padding: 5px 10px;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #333;
    text-decoration: none;
}

nav a:hover {
    color: #D7B468;
}

.menu-toggle {
    display: none;
}

/* Header Section */

section {
    padding: 50px 0;
    top: 0;
}

#header {
    background-color: #f4f9ff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content img {
    position: relative;
    max-width: 50%;
    bottom: -50px;
}

.header-text {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    gap: 50px;
}

h1 {
    font-size: 2rem;
    color: #D7B468;
}

.header-text p {
    font-size: 1.2rem;
    color: #333;
}

p span {
    color: #D7B468;
    font-weight: bold;
}

/* Products Section */

#products {
    padding: 50px 0 0;
    background-color: #fff;
}

.products-content {
    text-align: center;
}

.products-content h2 {
    font-size: 2rem;
    color: #D7B468;
}

.products-content .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.card {
    background: #f4f9ff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.card:hover {
    transform: scale(1.05);
    border-radius: 5px;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.card h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
    transition: 0.5s;
}

.card:hover h3 {
    color: #D7B468;
    transition: 0.5s;
}

.card p {
    font-size: 1rem;
    color: #666;
    transition: 0.5s;
}

.card:hover p {
    color: #333;
    font-weight: 400;
    transition: 0.5s;
}

.card a {
    display: block;
    text-decoration: none;
    color: #333;
    opacity: 0;
    transition: 0.5s;
}

.card:hover a {
    opacity: 1;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #D7B468;
    color: #fff;
    border-radius: 5px;
    transition: 0.5s;
}

/* About Us Section */

#about-us {
    padding-bottom: 0;
}

#about-us h2 {
    font-size: 2rem;
    color: #D7B468;
    text-align: center;
}

#about-us p {
    font-size: 1.2rem;
    color: #333;
    margin-top: 50px;
}

/* Contact Us Section */

.contact-us-content h2 {
    text-align: center;
}

.contact-us-content h2 {
    font-size: 2rem;
    color: #D7B468;
}

.contact-us-main {
    display: flex;
    justify-content: space-between;
    align-items: top;
    margin-top: 50px;
}

.contact-us-info {
    max-width: 50%;
}

.contact-us-info h3 {
    color: #333;
}

.contact-us-info p {
    font-size: 1rem;
    color: #333;
    margin-top: 20px;
}

.form {
    max-width: 50%;

}

.form h3 {
    color: #333;
}

form {
    padding: 20px;
    background-color: #f4f9ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 20px;
}

.form label {
    font-size: 1rem;
    color: #D7B468;
    text-align: center;
    margin-top: 50px;
}

form input,
textarea {
    outline: none;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #D7B468;
    border-radius: 5px;
}

.submit {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #D7B468;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

/* Footer Section */

footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f9ff;
}

/* Media Queries */

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 5%;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        background: rgba(0, 0, 0, 0.7);
        gap: 30px;
        z-index: 999;
    }

    nav a {
        color: #fff;
        ;
    }

    .header-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .header-text {
        max-width: 100%;
        padding-top: 100px;
    }

    .header-content img {
        max-width: 100%;
        display: block;
    }

    .menu-toggle {
        display: inline-block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .menu-toggle:hover {
        color: #D7B468;
    }

    .show-menu {
        display: flex;
    }

    .contact-us-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .contact-us-info {
        max-width: 100%;
    }

    .form {
        max-width: 100%;
    }
}