/* CSS Variables */
:root {
    --main-bg-color: #f0f0f0;
    --header-bg-color: #f7f1f2;
    --main-color: #C99245;
    --secondary-color: #555;
    --light-color: #666;
    --white-color: white;
    --main-font: 'Avatar', 'Roboto', "Arial", sans-serif;
}

/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: var(--main-font);
    background-color: var(--main-bg-color);
}

/* Header styles */
header {
    background-color: var(--header-bg-color);
    color: var(--main-color);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ... Rest of your CSS ... */

.logo img {
    width: 150px;
    /* Adjust the width as needed */
    height: auto;
    /* Maintain aspect ratio */
}

.title-container {
    text-align: center;
    /* Center-align the title */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-title-container {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100px;
    /* Adjust the max-width as needed */
    height: auto;
    margin-right: 10px;
}

.title-container .title {
    font-size: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 2;
    /* Add this line */
}

.hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: #C99245;
    margin: 3px 0;
}

/* Navigation styles */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    margin: 0 10px;
    /* Add spacing between links */
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    background-color: #C99245;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.nav-link:hover {
    background-color: #555;
}

.image-slider {
    max-width: 100%;
    overflow: hidden;
}

.slider-content {
    display: flex;
    transition: transform 0.5s;
}

.slider-content img {
    width: 100%;
    height: auto;
}

/* Deals section */
#deals {
    padding: 20px;
    text-align: center;
}

.deals-container {
    display: flex;
    justify-content: center;
    /* Center the deals horizontally */
    flex-wrap: wrap;
}

.deal {
    width: calc(33.33% - 20px);
    /* 3 deals per row, accounting for spacing */
    margin: 10px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.deal img {
    max-width: 100%;
    height: auto;
}

.deal-validity {
    font-size: 14px;
    margin-top: 5px;
    color: #666;
}

/* Center the video */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Adjust the size of the video container as needed */
.video-container video {
    max-width: 100%;
    height: auto;
}


/* Menu Price section */
#menu-price {
    padding: 20px;
    text-align: center;
}

#menu-image {
    max-width: 100%;
    height: auto;
}

/* About Us section */
#about {
    padding: 20px;
    text-align: center;
}

/* Connect section */
#connect {
    padding: 20px;
    text-align: center;
}

.connect-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.connect-icons img {
    max-width: 40px;
    height: auto;
}

.content {
    text-align: center;
    text-decoration: underline;
}
.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f4f5f7;
    color: #191818;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f7f1f2;
    color: #C99245;
    text-decoration: underline;
    /* Underline the footer content */
}

/* Underline all h2 elements */
h2 {
    text-decoration: underline;
    font-style: italic;
}

.header-text {
    font-family: 'Avatar', sans-serif;
    /* Replace with the actual font name */
    font-size: 2em;
    /* Adjust the font size as needed */
    color: #333;
    /* Adjust the color as needed */
}
/*
.services {
    text-align: center;
    font-style: italic;
    padding: 20px;
}

.service {
    margin: 20px 0;
    background-color: #f5f5f5;
}*/
.services {
    font-family: Arial, sans-serif;
    text-align: center;
    font-style: italic;
    padding: 20px;
    font-weight: bold;
}

.service {
    cursor: pointer;
    font-size: 20px;
     margin: 20px 0;
    margin-bottom: 10px;
    background-color: #d7c8c8;
}

.details {
    display: none;
    margin-left: 20px;
}

.details ul {
    list-style-type: none;
    padding: 0;
}

.details ul li {
    font-size: 14px;
    font-weight: normal;
     margin: 5px 0;
    background-color: #f5f5f5;
}


.schedule-appointment {
    display: flex;
    justify-content: center;
    align-items: center;
}

.appt-schedule {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #C99245;
    color: #241f1f;
    border: none;
    cursor: pointer;
    text-align: center;
}


/* Apply hover effect on buttons */
.appt-schedule:hover {
    background-color: #FBE7E9;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .title-container .title {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
    }

    header {
        padding: 20px;
    }

    .deal, #menu-image {
        max-width: 100%;
        height: auto;
    }

    .deal {
        width: calc(50% - 20px);
    }

    .title-container .title {
        font-family: 'Avatar', sans-serif;
        font-size: 18px;
    }

    .logo img {
        max-width: 80px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: 1;
    }

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

    .nav-link {
        margin: 5px 0;
        color: var(--white-color);
        text-decoration: none;
    }
}

@media (max-width: 600px) {
    .service {
        font-size: 1.2em;
        font-style: italic;
    }
}
