body {
  font-family: "Cairo", sans-serif;
  background: #fefefe;
  color: #222;
  margin: 0;
  padding: 0;
}

.carousel-item {
  height: 100vh; /* Full screen height */
  width: 100vw;  /* Full screen width */
  margin-top: 0; /* Remove top space */
  overflow: hidden;
  position: relative;
  background-color:white; /* Avoid any gap color */
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill without distortion */
}

.contact-us-container {
  position: fixed;
  bottom: 20px;
  right: 20px; /* change to left if RTL */
  z-index: 9999;
}

.contact-toggle {
  background-color: #000000dd; /* Match your website (dark theme) */
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.contact-toggle:hover {
  background-color: #333;
}

.contact-toggle img {
  width: 28px;
  height: 28px;
}

.contact-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.contact-options a {
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.contact-options a:hover {
  transform: scale(1.1);
}

.contact-options img {
  width: 28px;
  height: 28px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Shows the whole image without cutting */
}

@media (max-width: 768px) {
  .carousel-item {
    height: 250px;
  }
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: black;
}

/* Optional: add hover effect */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  color: #000;
  opacity: 0.8;
}

/* Loader */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out;
}

.loader {
  width: 60px;
  height: 60px;
  border: 8px solid #eee;
  border-top: 8px solid #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

header {
  background-color: #ffffff;
  text-align: center;
  padding: 30px 10px;
  border-bottom: 2px solid #d4af37;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.logo-box h1 {
  color: #d4af37;
  margin: 0;
  font-size: 28px;
}

header p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

/* Reservation Form */
.container {
  max-width: 600px;
  margin: 30px auto;
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.container label {
  display: block;
  margin: 15px 0 5px;
}

.container input,
.container select,
.container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  color: #333;
  font-size: 16px;
  box-sizing: border-box;
}
.container h2 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.container textarea {
  resize: none;
}

.container button {
  margin-top: 20px;
  width: 100%;
  background-color: #d4af37;
  color: white;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Services Section */
.services {
  padding: 40px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.services h2 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  color: #333;
  align-items: stretch; /* ensures equal height */
}

.service-grid a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%; /* fill the grid cell */
}

.service-grid a div {
  height: 100%; /* fill parent link */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.service-grid a div:hover {
  transform: scale(1.05);
  background-color: #fffbe6;
}

/* Marketing Section */
.marketing {
  background: #fff;
  color: #333;
  padding: 40px 20px;
  text-align: center;
}

.marketing h2 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 20px;
}

.marketing p {
  font-size: 18px;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.feature {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.feature img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.gallery {
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin-bottom: 40px; /* ✅ Pushes it away from the next section */
}

.gallery h2 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  font-family: "Cairo", sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* Ensures uniform appearance without distortion */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
.logo-box h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}


/* WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  width: 60px;
}
input[type="date"],
input[type="time"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  color: #333;
  font-size: 16px;
  box-sizing: border-box;
}


.whatsapp-float img {
  width: 100%;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #fff;
  color: #555;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #d4af37;
}

footer h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .logo-box {
    margin-bottom: 30px;
  }
}
