/* Core Professional Styling - REDESIGNED */
:root {
  --gold: #d4af37;
  --dark-bg: #121212;
  --light-gold: #e8d9a0;
  --cream: #f8f5f0;
  --charcoal: #2c2c2c;
  --success: #28a745;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--cream);
  color: #333;
  overflow-x: hidden;
}

.playfair {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.accent {
  color: var(--gold);
}

/* Modern Hero Section */
.hero {
  background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}

.hero > div {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero h2 {
  font-size: 4.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.8rem;
  color: var(--light-gold);
  margin-bottom: 3rem;
  font-weight: 300;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Modern Search Bar */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 5px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.search-input {
  background: none;
  border: none;
  color: var(--dark-bg);
  width: 100%;
  outline: none;
  font-size: 0.95rem;
  padding: 8px 0;
}

.search-input::placeholder {
  color: rgba(44, 44, 44, 0.6);
}

.search-icon-btn {
  background: none;
  border: none;
  color: var(--gold);
  padding: 0;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.search-icon-btn:hover {
  transform: scale(1.1);
}

.search-wrapper:focus-within {
  width: 380px;
  background: white;
  border-color: var(--gold);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2);
}

/* Modern Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 2.2rem;
  background: linear-gradient(45deg, var(--gold), #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--charcoal) !important;
  padding: 0.5rem 1.2rem !important;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
  transform: translateY(-2px);
}

/* Modern Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c9a227);
  color: white !important;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #c9a227, var(--gold));
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Modern Side Navigation */
.side-nav {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.side-nav h5 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.side-nav h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.side-nav .nav-link {
  color: var(--charcoal);
  padding: 0.8rem 1rem;
  margin: 0.2rem 0;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.side-nav .nav-link::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.3s ease;
}

.side-nav .nav-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(5px);
}

.side-nav .nav-link:hover::before {
  left: 0;
}

/* Modern Menu Cards */
.menu-card .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  background: white;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.menu-card .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #f4d03f);
  z-index: 1;
}

.menu-card .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.menu-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-card:hover .card-img-top {
  transform: scale(1.15);
}

.card-body {
  padding: 1.8rem;
}

.card-title {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.card-body .accent {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

/* Modern Advertisement Section */
.ad-section {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: white;
  position: sticky;
  top: 120px;
}

.ad-section h4 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.ad-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.ad-section img {
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ad-section img:hover {
  transform: scale(1.03);
}

/* Modern Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

footer h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--gold), #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Map Container */
.ratio-21x9 {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 3.5rem;
  }

  .hero .lead {
    font-size: 1.5rem;
  }

  .search-wrapper:focus-within {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    background-attachment: scroll;
  }

  .hero h2 {
    font-size: 2.8rem;
  }

  .navbar-brand {
    font-size: 1.8rem;
  }

  .side-nav,
  .ad-section {
    position: static;
    margin-bottom: 2rem;
  }
}

/* Animation for page load */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), #c9a227);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#c9a227, var(--gold));
}
