/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff; /* Set your desired background color */
    color: #333; /* Set your desired text color */
    margin-top: 8vh; /* Ensure space for fixed header */
}

.container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 2vw;
}

/* Header styles */
header {
    background-color: #000000; /* Non-transparent header background color */
    padding: 2vh 0;
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
}

header img {
    height: 8vh; /* Adjust height as needed */
    float: left;
    margin-left: 2vw;
}

nav ul {
    list-style-type: none;
    float: right;
    margin-top: 3vh;
    margin-right: 1vw; /* Adjust margin as needed */
}

nav ul li {
    display: inline;
    margin-left: 1vw;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 1vh 1vw; /* Adjust padding as needed */
    border-radius: 0.5vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #e9afba; /* Hover background color */
    color: #000; /* Hover text color */
}

/* Hero section styles */
.hero {
    background-image: url('../images/hero.jpg'); /* Replace with your hero image */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; /* Text color on hero section */
    text-align: center;
    padding: 20vh 0; /* Adjust padding as needed */
    height: calc(100vh - 8vh); /* Full viewport height minus header height */
    margin-top: 8vh; /* Ensure space below header */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100vh;
    background-color: #e9afb9; /* Company color */
    transform: translateX(-50%);
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 60vw; /* Adjust max-width as needed */
    padding: 2vh;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background color for text box */
    text-align: center;
}

.hero h1 {
    font-size: 3vh;
    margin-bottom: 2vh;
}

.hero p {
    font-size: 1.5vh;
}

.cta-btn {
    display: inline-block;
    padding: 1vh 2vw;
    background-color: #e9afba; /* Button background color */
    color: #fff; /* Button text color */
    text-decoration: none;
    border-radius: 0.5vh;
    margin-top: 2vh;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #d999a7; /* Hover background color */
}

/* About section styles */
.about {
    background-color: #f5f5f5; /* Light background color for about section */
    padding: 8vh 0;
    padding-top: 12vh;
    text-align: center;
}

.about h2 {
    font-size: 4vh;
    margin-bottom: 2vh;
}

.about p {
    font-size: 2vh;
}

.team {
    display: flex;
    justify-content: space-around;
    margin-top: 2em;
}

.team-member {
    width: 30%;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.team-member a {
    color: #0072b1;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

/* Menu section styles */
.menu {
    padding: 12vh 0;
    text-align: center;
}

.menu h2 {
    font-size: 4vh;
    margin-bottom: 2vh;
}

.menu .menu-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu .menu-item {
    width: 30vw;
    margin-bottom: 4vh;
    background-color: #fff;
    border-radius: 0.5vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.menu .menu-item img {
    width: 100%;
    height: 20vh;
    object-fit: cover;
    border-top-left-radius: 0.5vh;
    border-top-right-radius: 0.5vh;
}

.menu .item-description {
    padding: 2vh;
}

.menu .item-description h3 {
    font-size: 3vh;
    margin-bottom: 1vh;
}

.menu .item-description p {
    font-size: 2vh;
}

.menu .menu-item:hover {
    transform: translateY(-0.5vh); /* Adjust the amount of hover lift */
    box-shadow: 0 0.5vh 1.5vh rgba(0, 0, 0, 0.2); /* Adjust box shadow on hover */
    border: 0.2vh solid #e9afba; /* Border color on hover */
}

/* Order section styles */
.order {
    background-color: rgba(233, 175, 186, 0.9); /* Fun background color for contact section */
    padding: 12vh 0;
    text-align: center;
}

.order h2 {
    font-size: 4vh;
    margin-bottom: 2vh;
}

.order p {
    font-size: 2vh;
}

.order-form iframe {
    width: 100%;
    height: 800px;
    border: none;
    margin-top: 2em;
}

/* Footer styles */
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 2vh 0;
}

footer img {
    height: 8vh; /* Adjust height as needed */
    float: center;
    margin: 2vh;
}

footer a {
    color: #d999a7;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.team-member a:hover,
footer a:hover {
    text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero {
        background-size: cover;
        padding: 15vh 0;
        height: calc(100vh - 8vh);
    }

    .hero-content {
        max-width: 90vw; /* Adjust max-width for smaller screens */
        padding: 3vh;
        top: 45vh
    }

    .hero h1 {
        font-size: 3vh;
        margin-bottom: 3vh;
    }

    .hero p {
        font-size: 1.5vh;
    }

    .cta-btn {
        padding: 1.5vh 3vw;
    }

    .menu .menu-items {
        flex-direction: column;
        align-items: center;
    }

    .menu .menu-item {
        width: 80vw;
    }

    .team {
        flex-direction: column;
    }

    .team-member {
        width: 100%;
        margin-bottom: 20px;
    }
}