/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2c5aa0;
  --primary-dark: #1e3f8f;
  --secondary-color: #d4af37;
  --accent-color: #ffd700;
  --text-dark: #333;
  --text-light: #777;
  --bg-light: #f9f9f9;
  --white: #fff;
  --black: #000;
  --gray: #e0e0e0;
  --header-bg: linear-gradient(135deg, #2c5aa0, #1e3f8f);
  --footer-bg: linear-gradient(135deg, #1a2a6c, #2c5aa0);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: #d4af37;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Header and Navigation Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(44, 90, 160, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo h1 {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 3px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 800;
  transition: var(--transition);
  position: relative;
  color: var(--white);
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 2px 0;
  transition: var(--transition);
  transform-origin: center;
  display: block;
}

/* Hamburger Animation - Transform to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: var(--accent-color);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: var(--accent-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/Background-images/Hero-Background.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Animation for background image changes */

/* .hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
  z-index: 1; /* Ensure content stays above background */

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 0 15px;
    background-position: 65% center;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .typing-container {
    height: 50px;
    margin-bottom: 1.5rem;
  }

  .typing-text {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .typing-container {
    height: 40px;
    margin-bottom: 1.2rem;
  }

  .typing-text {
    font-size: 1rem;
  }

  .hero-buttons {
    max-width: 250px;
  }

  .btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .hero-scroll {
    bottom: 20px;
  }

  .hero-scroll i {
    font-size: 1.2rem;
  }

  /* Optimize background animation for mobile */
  @keyframes backgroundChange {
    0%,
    28% {
      opacity: 1;
    }
    33%,
    61% {
      opacity: 0;
    }
    66%,
    94% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-container {
  min-height: 60px;
  margin-bottom: 2rem;
}

.typing-text {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 500;
  overflow: hidden;
  border-right: 2px solid var(--accent-color);
  white-space: nowrap;
  animation: typing 1.5s steps(10, end) forwards, blink 0.8s infinite;
  width: 0;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from {
    border-color: transparent;
  }
  to {
    border-color: var(--accent-color);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  animation: bounce 2s infinite;
}

.hero-scroll i {
  margin-top: 0.5rem;
}

/* Our Hotel Section */
.branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.branch-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.branch-image {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: var(--transition);
}

.branch-card:hover .branch-image img {
  transform: scale(1.05);
}

.branch-info {
  padding: 1.5rem;
}

.branch-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.branch-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  color: var(--text-light);
}

.mini-map {
  height: 150px;
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* Rooms Section */
.rooms-gallery {
  position: relative;
  margin-top: 2rem;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.control-btn {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 1rem;
}

.control-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.rooms-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none;
}

.rooms-container::-webkit-scrollbar {
  display: none;
}

.room-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: var(--transition);
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-details {
  padding: 1.5rem;
}

.room-details h3 {
  margin-bottom: 0.5rem;
}

.room-features {
  margin: 1rem 0;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.room-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray);
}

.room-price .price {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* Food & Drinks Section */
.food-drinks {
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
}

.food-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.food-menu-toggle:hover {
  background-color: var(--primary-dark);
}

/* Food Categories Section Styles */
.food-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 15px;
  background: linear-gradient(
    to right,
    rgba(44, 90, 160, 0.1),
    rgba(212, 175, 55, 0.1)
  );
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.food-category-btn {
  padding: 12px 24px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(44, 90, 160, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.food-category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.food-category-btn:hover::before {
  left: 100%;
}

.food-category-btn:hover,
.food-category-btn.active {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--accent-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(44, 90, 160, 0.3);
}

.food-category-btn.active {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 90, 160, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(44, 90, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(44, 90, 160, 0);
  }
}

.food-categories-header {
  display: none;
}

.food-gallery {
  position: relative;
}

.food-gallery .gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.food-gallery .control-btn {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 1rem;
}

.food-gallery .control-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.food-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none;
}

.food-container::-webkit-scrollbar {
  display: none;
}

.food-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.food-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.food-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  align-items: center;
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: var(--transition);
}

.food-card:hover .food-image img {
  transform: scale(1.05);
}

.food-details {
  padding: 1.5rem;
}

.food-details h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.food-price {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 0.5rem;
  display: block;
}

/* Amenities Section */
.amenities-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.amenity-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  flex: 0 0 calc(33.333% - 30px);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(44, 90, 160, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

/* Booking Section */
.booking-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.booking-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.booking-summary {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--white);
  align-self: start;
  position: sticky;
  top: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.booking-summary h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  font-weight: 500;
}

.summary-value {
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}

.summary-item.total {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(44, 90, 160, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Find Us Section */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.location-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.location-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.map-container {
  height: 300px;
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* Enhanced Footer Styles */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 4rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  opacity: 1;
  visibility: visible;
}

.footer-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.footer-section.animated {
  opacity: 1;
  transform: translateY(0);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.footer-section ul li:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  max-width: 400px;
  margin: 1rem auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  padding: 0 1.5rem;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--accent-color)
  );
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.powered-by:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.powered-by-btn {
  color: inherit;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.telegram-icon {
  font-size: 1.2rem;
  transition: var(--transition);
}

.powered-by:hover .telegram-icon {
  transform: translateX(3px);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.floating-btn.whatsapp-btn {
  background-color: #25d366;
}

.floating-btn.phone-btn {
  background-color: var(--primary-color);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%
    );
    transition: all 0.4s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
  }

  .nav.active ul li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.active ul li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav.active ul li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav.active ul li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav.active ul li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav.active ul li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav.active ul li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .nav.active ul li:nth-child(7) {
    transition-delay: 0.7s;
  }
  .nav.active ul li:nth-child(8) {
    transition-delay: 0.8s;
  }

  .nav-link {
    color: var(--white);
    font-size: 1.2rem;
    display: block;
    padding: 15px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
  }

  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    transform: translateX(5px);
  }

  .nav-link::after {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .food-menu-toggle {
    display: flex;
    align-self: flex-end;
  }

  .food-categories {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .food-categories.active {
    right: 0;
  }

  .food-categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
  }

  .food-categories-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
  }

  .food-category-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .room-card,
  .food-card {
    flex: 0 0 85%;
  }

  .food-gallery .control-btn,
  .rooms-gallery .control-btn {
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
    display: flex;
  }

  .booking-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Mobile view for food categories */
  .food-categories {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
  }

  .food-category-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
    justify-content: center;
  }

  .locations {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
  }
  /* Mobile-specific footer enhancements */
  .footer {
    padding: 3rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-section {
    padding: 0 1rem;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.8rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 50px;
    width: 100%;
  }

  .footer-bottom {
    padding: 1.5rem 1rem 0;
  }

  .powered-by {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Amenities mobile view */
  .amenity-card {
    flex: 0 0 calc(100% - 20px);
    margin: 10px auto;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .branches {
    grid-template-columns: 1fr;
  }

  .room-card,
  .food-card {
    flex: 0 0 100%;
  }
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .locations {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .location-card h3 {
    padding: 15px;
    font-size: 1.3rem;
  }

  .location-card p {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .map-container iframe {
    height: 300px;
    width: 400px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 300px;
    width: 350px;
  }
}
/* Mobile-specific styles */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* For very small screens, ensure buttons are always visible */
@media (max-width: 360px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Debug helper to show screen size */
.screen-size {
  position: fixed;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 1000;
}

.instructions {
  background: #e9f7fe;
  border-left: 4px solid #0d3b66;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}

.instructions h3 {
  color: #0d3b66;
  margin-bottom: 10px;
}
.branch-image {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: var(--transition);
}
