/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Main Container */
.main {
    width: 100%;
    max-width: 100vw;
    height: auto;
    overflow-x: hidden;
}


.head {
    border: none;
    /* background-image: url(images/back.jpeg); */
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow: hidden;
}

.header {
    height: 80px;
    width: 100%;
    max-width: 100vw;
    position: fixed;
    background-color: white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
}

.header-left {
    height: 50px;
    width: 30%;
    max-width: calc(30% - 20px);
}

.menu-toggle {
    display: none;
}

.header-right {
    width: 65%;
    max-width: calc(65% - 20px);
    color: goldenrod;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

}

/* Navigation Links */
a {
    font-size: 18px;
    color: whitesmoke;
    padding: 5px 15px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

a:hover {
    color: white;
    border-bottom-color: red;
}

.home,
.about,
.gallery,
.menu,
.update,
.contact {
    border-bottom: 3px solid goldenrod;
    padding-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    color: goldenrod;
}

.home:hover,
.about:hover,
.gallery:hover,
.menu:hover,
.update:hover,
.contact:hover {
    border-bottom-color: gold;

}

/* Hero Content */
.cont {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 80px;
    margin-left: 0;
    color: #fefefe;
    box-sizing: border-box;
}

/* HOMEPAGE SLIDER */

.slider {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slide 12s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 70px;
    left: 80px;
    color: white;
    font-size: 45px;
    font-family: 'Philosopher';
    letter-spacing: 3px;
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 30px;
    border-radius: 6px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(-100%);
    }

    65% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Philosopher', sans-serif;
    line-height: 1.6;
}

button {
    text-align: center;
    height: 50px;
    width: 200px;
    max-width: 100%;
    font-size: 1rem;
    font-weight: 800;
    background-color: #f07800;
    border: none;
    border-radius: 7px;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

button:hover {
    background-color: #d96b00;
}





/* product Section */
.cont-6 {
    height: fit-content;
    width: 100%;
    max-width: 100vw;
    background-image: url(images/coffee_menu_bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 30px 0;
    overflow: hidden;
    box-sizing: border-box;
}

#our4-menu {
    text-align: center;
    margin-bottom: 30px;
    color: black;
    font-family: 'Philosopher', sans-serif;
}

.menu-content {
    width: 90%;
    max-width: calc(90% - 20px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    box-sizing: border-box;
}

.menu-left,
.menu-right {
    flex: 1;
    min-width: 400px;
    max-width: calc(50% - 15px);
    box-sizing: border-box;
}

.left-top,
.left-mid,
.left-bottom,
.right-top,
.right-mid,
.right-bottom {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.menu-img {
    margin-right: 20px;
    flex-shrink: 0;
}

.menu-1 {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.menu-text {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.menu-text h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Philosopher', sans-serif;
}

.menu-text p {
    font-size: 1rem;
    color: #626467;
    font-family: 'Poppins', sans-serif;
}

/* Media Queries for Responsive Design */

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
    .header {
        padding: 0 3%;
    }

    .header-right {
        font-size: 1rem;
        gap: 15px;
    }

    a {
        font-size: 16px;
        margin-right: 15px;
    }

    .cont {
        width: 70%;
        max-width: calc(70% - 40px);
        margin-left: 15%;
        margin-top: 300px;
    }

    .menu-left,
    .menu-right {
        min-width: 350px;
        max-width: calc(50% - 15px);
    }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 15px;
        position: relative;
    }

    .header-left,
    .header-right {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .header-right {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        background-color: white;
        padding: 20px;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .header-right.active {
        display: flex;
    }

    a {
        font-size: 14px;
        margin: 5px 0;
        display: block;
    }

    .head {
        height: 70vh;
    }

    .cont {
        width: 90%;
        max-width: calc(90% - 20px);
        margin: 50px auto;
        text-align: center;
    }

    .menu-content {
        flex-direction: column;
    }

    .menu-left,
    .menu-right {
        min-width: 100%;
        max-width: 100%;
    }

    .left-top,
    .left-mid,
    .left-bottom,
    .right-top,
    .right-mid,
    .right-bottom {
        flex-direction: column;
        text-align: center;
    }

    .menu-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}