/* DESKTOP */


  .row {
    margin: 0 !important;
  }

  .hiddenDesktop {
    display:none;
  }


/* Body and Fonts */

a {
  text-decoration: none !important;
}

body {
font-family: "Roboto", sans-serif;
color: #333;
line-height: 2px;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
}


.rubik {
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-weight: normal;
font-style: normal;
letter-spacing: 2px;
}

.roboto-slab {
font-family: "Roboto Slab", serif;
font-optical-sizing: auto;
font-weight: normal;
font-style: normal;
letter-spacing:3px;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing:3px;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing:3px;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:3px;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing:3px;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing:3px;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing:3px;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.scope-one-regular {
  font-family: "Scope One", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}


/* Header */
header {
  position: sticky; /* Needed for z-index to work */
  top:0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: flex-end
}

header nav ul li a {
  text-decoration: none;
  color: #333;
}

header nav ul li a:hover {
  color: #c85c5c;
}

/* Logo and Title Container */
.nav-logo-container {
display: flex; /* Align logo and title horizontally */
align-items: center; /* Vertically center logo and text */
gap: 20px; /* Space between logo and title */
}

/* Logo Styling */
.nav-logo {
height: 40px; /* Adjust the height of the logo */
width: auto; /* Maintain the logo's aspect ratio */
}

/* Website Title Styling */
.website-title {
font-size: 24px;
font-weight: bold;
color: #333;
letter-spacing: 3px;
}

.website-title:hover {
color: #c85c5c;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Makes the hero section fill the viewport height */
  background-image: url(images/crepeSalad.jpg); /* Replace with your image file */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  color: #fff; /* Makes text white for contrast against the image */
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.hero h4 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.hero button {
  padding: 10px 20px;
  background: none;
  border: solid 3px white;
  border-radius: 15px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.hero button a {
  text-decoration: none;
  color: #fff;
}

.hero button:hover {
  background-color: #ffffff83;
}


/* Featured Section */
.featured {
  padding: 50px 20px;
  background-color: #fff;
}

.feature p {
  color: #666;
}

.feature {
  padding:0px;
  align-items: center;
}


/* About Section */
.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Makes the hero section fill the viewport height */
  background-image: url(images/ambience.jpg); /* Replace with your image file */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  color: #fff; /* Makes text white for contrast against the image */
  text-align: center;
  padding: 20px;
}

.about h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.about h4 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.about button {
  padding: 10px 20px;
  background: none;
  border: solid 3px white;
  border-radius: 15px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.about button a {
  text-decoration: none;
  color: #fff;
}

.about button:hover {
  background-color: #ffffff83;
}






/* MENU PAGE */

.menuLink {
  color:#666 !important;
  text-decoration: underline !important;
}

/* Menu Content */
.menu-content {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.menu-section {
  margin-bottom: 40px;
}

.menu-section h2 {
  font-size: 28px;
  color: #c85c5c;
  border-bottom: 2px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.menu-section h3 {
  font-size: 20px;
  color: rgb(134, 134, 134);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.menu-section ul {
  list-style: none;
  color: rgb(75, 75, 75);
}

.menu-section ul li {
  font-size: 18px;
  margin-bottom: 10px;
}




.button-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
  margin-bottom: 20px;
}

.content {
  display: none;
}

/* Show content when its corresponding radio button is checked */
#btn1:checked ~ .content1,
#btn2:checked ~ .content2,
#btn3:checked ~ .content3,
#btn4:checked ~ .content4 {
  display: block;
}

/* Style the labels to look like buttons */
label {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bolder;
  transition: color 0.3s ease;
}

label:hover {
  color: #c85c5c;
  text-decoration: underline; /* Underline effect */
}

/* Add style for active buttons */
input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label {
  text-decoration: underline;
  color:#c85c5c;
}









/* ABOUT US */

#aboutUs h3 {
  color: rgb(75, 75, 75);
}

.aboutHero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Makes the hero section fill the viewport height */
  background-image: url(images/placeSetting2.jpg); /* Replace with your image file */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  color: #fff; /* Makes text white for contrast against the image */
  text-align: center;
  padding: 20px;
}

.aboutHero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.aboutHero h5 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.aboutHero button {
  padding: 10px 20px;
  background: none;
  border: solid 3px white;
  border-radius: 15px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.aboutHero button a {
  text-decoration: none;
  color: #fff;
}

.aboutHero button:hover {
  background-color: #ffffff83;
}

.aboutHero2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Makes the hero section fill the viewport height */
  background-image: url(images/table.jpg); /* Replace with your image file */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  color: #fff; /* Makes text white for contrast against the image */
  text-align: center;
  padding: 20px;
}

.aboutHero2 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.aboutHero2 h5 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.aboutHero2 button {
  padding: 10px 20px;
  background: none;
  border: solid 3px white;
  border-radius: 15px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
}

.aboutHero2 button a {
  text-decoration: none;
  color: #fff;
}

.aboutHero2 button:hover {
  background-color: #ffffff83;
}

.facebookLink {
  color:#c85c5c !important;
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
}

footer .socials a {
  color: #c85c5c;
  text-decoration: none;
  margin: 0 10px;
}

footer .socials a:hover {
  color: #fff;
}




  /* MOBIILE & TABLET */

  @media (max-width: 768px) {
    .hiddenMobile {
      display: none;
    }

    .showMobile {
      display: contents !important;
    }

    .aboutUsImage {
      margin-bottom: 50px;
    }

    .mobileMargin {
      margin-bottom: 40px;
  }

}