:root {
  --primary-color: #f8f9fa;
  --text-color: #0f452c;
  --secondary-color: #027b3b;; 
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  /* scroll-padding-top: 80px;  */
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-size: 1.3rem;
  line-height: 1.6rem;
  text-align: left;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}

.header-container {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.header-container .background-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

#logo {
  max-width: 250px;
}

.navbar-light .navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: center;
}
.nav-item {
  min-width: 135px;
}
.nav-link:hover {
  cursor: pointer;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.modal-dialog {
  margin-top: 100px !important;
  max-height: 85vh;
  overflow: hidden;
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

.modal-body {
  padding: 0;
}

section {
  background: var(--primary-color);
}

.in-flex {
  display: inline-flex;
}

.down {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.title {
  color: var(--primary-color);
  text-align: center;
  font-size: 3rem;
}

.red-title {
  color: #8B0000;
  text-shadow: 0.5px 0.5px 0 #8B0000;
}

.great-vibes {
  font-family: 'Great Vibes', cursive !important;
}

/****** My Button  ******/
.btn {
  font-size: 2rem;
  transition: background-color 0.3s ease;
  font-weight: 500;
  background-color: var(--secondary-color);
  display:inline-block;
  cursor:pointer;
  color: var(--primary-color);
  padding:5px 24px;
  margin-top: 1rem;
  text-decoration:none;
  text-transform: capitalize;
  border-radius: 0;
  border: 1px solid var(--secondary-color);
  min-width: 280px;
  line-height: 2.5rem;
}
.btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
/****** My Button End  ******/

.intro {
  font-size: 1.4rem;
  line-height: 1.7rem;
  padding: 4rem;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
}
a:hover {
  color: var(--text-color);
}
a.nav-link {
  color: var(--secondary-color);
}

/* Styles for About Us */

.about-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 4rem;
}

.about-header h1 {
  font-size: 2rem;
}

.about-header .five-star {
  width: 125px;
  height: auto;
  margin-bottom: 0.75rem;
}

.about-content {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.bold {
  font-family: monospace;
  font-weight: 700;
}

.menu-card {
  background-color: white;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Baloo 2', sans-serif;
}

/* .menu-card li {
  color: green;
} */

#menu-container .column {
  display: flex;
  flex-direction: column; /* Stack images in a column */
  gap: 10px; /* Adds space between each image */
  align-items: center; /* Centers images within the column */
}

#menu-container .column img {
  width: 100%; /* Ensure images span the full width of their container */
  max-width: 500px; /* Optional: limit the maximum width of each image */
  object-fit: cover; /* Ensures images maintain aspect ratio */
}

h2 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: var(--green);
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
  margin-bottom: 10px;
  padding: 0;
}

.gallery-section img {
  max-width: 350px;
  height: 450px;
  object-fit: cover;
  object-position: center;
  margin: auto;
}

img.full-size {
  height: auto;
  object-fit: contain;
}

.image-description {
  text-align: center;
  margin: 10px auto;
  font-size: 1rem;
  font-style: italic;
  color: var(--secondary-color);
  max-width: 350px;
}

.additional {
  font-size: 0.9rem;
  color: #757575;
  margin-top: 5px;
}

.contact-overlay {
  background: var(--primary-color);
  padding: 5rem;
  max-width: fit-content;
  margin: auto;
  gap: 20px;
  display: grid;
}

.contact-info {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 10%;
}

.social-media {
  font-size: 4rem;
}

footer {
  padding: 1.5rem;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

footer p {
  margin: 0;
}

 /***** Cookies  *****/
 .cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #8b8b8b;
  color: var(--primary-color)fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent-banner .accept-cookies-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#accept-cookies:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.hidden {
  display: none;
}

/**************************
        MEDIA QUERIES
 **************************/

 @media only screen and (max-width: 990px) {
  body {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .navbar-light .navbar-nav .nav-link {
    font-size: 1rem;
  }

  section {
    padding: 5% 1%;
    /* margin: 3rem 0; */
  }

  .about-header {
    padding: 0 1.25rem;
}

  .intro {
    padding: 1.5rem;
  }

  .about-content {
    flex-direction: column; /* 1 column on small screens */
  } 

  .menu-card {
    padding: 5px;
    margin: 10px 0;
  }

  .contact-overlay {
    padding: 0.5rem;
  }

  .mobile-only {
    display: block;
  }
}

/* For touch devices */
@media (hover: none) and (pointer: coarse) {
  .left-block:active {
    background-image: url('../images/van2.jpeg');
  }
  .right-block:active {
    background-image: url('../images/van4.jpeg');
  }
}