* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(251, 241, 233, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: rgba(251, 241, 233, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-img {
  height: 30px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: #2b3a64;
}

.header.scrolled .nav-link {
  color: #333;
}

.header.scrolled .nav-link:hover {
  color: #2b3a64;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.header.scrolled .bar {
  background: #333;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(43, 58, 100, 0.9) 0%,
    rgba(43, 58, 100, 0.6) 30%,
    rgba(43, 58, 100, 0) 60%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-style: normal;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  font-style: normal;
  letter-spacing: 0.3px;
}

.cta-button {
  background: #2b3a64;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button::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: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: #1e2a4a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(43, 58, 100, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 58, 100, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(43, 58, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 58, 100, 0);
  }
}

/* Restaurants Section */
.restaurants-section {
  padding: 80px 0;
  background: #fbf1e9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  font-weight: 300;
}

.restaurants-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  will-change: scroll-position;
  transform: translateZ(0);
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
}

.restaurants-slider::-webkit-scrollbar {
  display: none;
}

.restaurant-card {
  min-width: 350px;
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  opacity: 0;
  transform: translateY(50px) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.restaurant-card.animate {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.restaurant-card:hover {
  transform: translateY(-15px) scale(1.02) translateZ(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.restaurant-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  filter: brightness(0.9);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.restaurant-card:hover .restaurant-image img {
  transform: scale(1.15) translateZ(0);
  filter: brightness(1.1);
}

.restaurant-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 40px 30px 30px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.restaurant-overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.restaurant-overlay p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.menu-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 5px;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: relative;
  overflow: hidden;
}

.menu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}

.menu-btn:hover::before {
  left: 0;
}

.menu-btn:hover {
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.slider-btn {
  background: transparent;
  border: none;
  color: #2b3a64;
  width: 60px;
  height: 60px;
  border-radius: 0;
  cursor: pointer;
  font-size: 2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slider-btn::before {
  display: none;
}

.slider-btn:hover::before {
  display: none;
}

.slider-btn:hover {
  color: #1e2a4a;
  transform: scale(1.2);
}

/* News Section */
.news-section {
  padding: 80px 0;
  background: #fbf1e9;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.news-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.news-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.news-date {
  color: #2b3a64;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.news-text {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

/* About read-more */
.news-text .more-text {
  display: none;
}

#aboutText.expanded .more-text {
  display: inline;
}

.read-more-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.read-more-btn:hover {
  background: #2b3a64;
}

.news-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #fbf1e9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fbf1e9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.contact-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.contact-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  background: #2b3a64;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.contact-form-container {
  background: #fbf1e9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.contact-form-container.animate {
  opacity: 1;
  transform: translateX(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
  background: #fbf1e9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2b3a64;
  box-shadow: 0 0 0 3px rgba(43, 58, 100, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
}

.submit-btn {
  background: #2b3a64;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.submit-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: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  background: #1e2a4a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(43, 58, 100, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* Newsletter Section */
.newsletter-section {
  background: #2b3a64;
  padding: 60px 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.newsletter-icon {
  font-size: 3rem;
  color: #2b3a64;
}

.newsletter-text {
  color: #fbf1e9;
}

.newsletter-text h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.email-input {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  min-width: 250px;
  outline: none;
}

.subscribe-btn {
  background: #2b3a64;
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #1e2a4a;
}

/* Footer */
.footer {
  background: #2b3a64;
  color: #fbf1e9;
  padding: 60px 0;
}

/* Minimal footer */
.footer-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}

/* Hide old multi-column styles if any remain */
.footer-content,
.footer-section,
.footer-bottom,
.social-links {
  display: none;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: #2b3a64;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #444;
  padding-top: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #2b3a64;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-link::after {
  display: none;
}

.footer-logo-link:hover .footer-logo-img {
  opacity: 1;
}

.footer-logo-link:hover::after {
  display: none;
}

/* Footer social and copy */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  color: #bbb;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-copy {
  margin-top: 12px;
  color: #888;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #fbf1e9;
}

.gallery-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  will-change: scroll-position;
  transform: translateZ(0);
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-width: 350px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px) translateZ(0);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

.gallery-item.animate {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.gallery-item:hover {
  transform: translateY(-15px) scale(1.02) translateZ(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  transition: all 0.4s ease;
  filter: brightness(0.9);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.gallery-item:hover img {
  transform: scale(1.15) translateZ(0);
  filter: brightness(1.1);
}

.gallery-item::before {
  display: none;
}

.gallery-item:hover::before {
  display: none;
}

.gallery-item::after {
  display: none;
}

.gallery-item:hover::after {
  display: none;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.gallery-btn {
  background: transparent;
  border: none;
  color: #2b3a64;
  width: 60px;
  height: 60px;
  border-radius: 0;
  cursor: pointer;
  font-size: 2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-btn::before {
  display: none;
}

.gallery-btn:hover::before {
  display: none;
}

.gallery-btn:hover {
  color: #1e2a4a;
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu .nav-link {
    color: #fff !important;
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .restaurant-card {
    min-width: 280px;
    height: 350px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .gallery-slider {
    gap: 20px;
    padding: 15px 15px;
  }

  .gallery-item {
    min-width: 280px;
    height: 350px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .email-input {
    min-width: auto;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .restaurant-card {
    min-width: 250px;
    height: 300px;
  }

  .restaurants-section {
    padding: 60px 0;
  }

  .news-section {
    padding: 60px 0;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 20px 15px;
  }

  .contact-item {
    padding: 15px;
    gap: 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-slider {
    gap: 15px;
    padding: 10px 10px;
  }

  .gallery-item {
    min-width: 250px;
    height: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
