
/* Custom Font */
@font-face {
  font-family: 'Barthez';
  src: url('attached_assets/Barthez_1750724774020.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: #2D2D2D;
  background-color: #FFFFFF;
}

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

/* Typography */
.section-title {
  font-family: 'Barthez', 'Parisienne', cursive;
  font-size: 3rem;
  color: #000000;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-section .section-title {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-item-name {
  font-family: 'Parisienne', cursive;
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Navigation */
.navbar {
  background-color: #000000;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.hero-logo {
  height: 280px;
  width: auto;
  margin-bottom: 1rem;
  max-width: 90vw;
}

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

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #D4AF37;
}

.online-order {
  background-color: #D4AF37;
  color: #000000 !important;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.online-order:hover {
  background-color: #B8941F;
  transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: ' ▼';
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 5px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1001;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu .nav-link:hover {
  background-color: #D4AF37;
  color: #000000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero Section */
.hero {
  background-image: url('attached_assets/New Orleans Homes reduced_1750731528017_1750778383821.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  margin-top: 70px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border: 2px solid #D4AF37;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}



.hero-title {
  font-family: 'Parisienne', cursive;
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: normal;
  color: #D4AF37;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: #D4AF37;
  color: #000000;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #B8941F;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.alt-section {
  background-color: #F8F8F8;
}

.food-section,
.cocktails-section {
  background-color: #2D2D2D;
  color: #FFFFFF;
}

.food-section .section-title,
.cocktails-section .section-title {
  color: #D4AF37;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #D4AF37;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-placeholder {
  width: 300px;
  height: 400px;
  background-color: #2D2D2D;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
  border: 2px solid #D4AF37;
}

/* Menu PDF Link */
.menu-link-container {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-pdf-link {
  display: inline-block;
  background-color: #D4AF37;
  color: #000000;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.menu-pdf-link:hover {
  background-color: #B8941F;
  transform: translateY(-2px);
}

/* Menu Sections */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cocktails-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-item,
.cocktail-item {
  background-color: #FFFFFF;
  color: #2D2D2D;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #D4AF37;
  transition: transform 0.3s ease;
}

.food-section .menu-item {
  text-align: center;
}

.menu-item-image {
  width: 100%;
  height: 200px;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item-image:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.menu-item:hover,
.cocktail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.food-section .menu-item,
.cocktails-section .cocktail-item {
  background-color: #FFFFFF;
  color: #2D2D2D;
  box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.food-section .menu-item:hover,
.cocktails-section .cocktail-item:hover {
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.food-section .menu-item .menu-item-name {
  color: #000000;
}

.cocktails-image {
  display: flex;
  justify-content: center;
}

.cocktail-hero-image {
  width: 100%;
  max-width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #D4AF37;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cocktails-text {
  color: #FFFFFF;
}

.cocktails-subtitle {
  font-family: 'Parisienne', cursive;
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 1.5rem;
}

.cocktails-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.cocktails-text p:last-child {
  margin-bottom: 0;
}

.menu-item-description {
  margin-bottom: 0;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background-image: url('attached_assets/boxwoodtexture_1750725637043_1750778383820.webp');
  background-size: 300px 300px;
  background-position: center;
  background-repeat: repeat;
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.gallery-section .container {
  position: relative;
  z-index: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #D4AF37;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-item::before {
  content: '🔍';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item {
  position: relative;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 800px;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  background-color: #2D2D2D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.5rem;
  background-image: linear-gradient(135deg, #2D2D2D 0%, #000000 100%);
  border-radius: 10px;
}

.lightbox-placeholder-text {
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFFFFF;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-close:hover {
  color: #D4AF37;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.location-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: 1px solid #E5E5E5;
}

.info-card h3 {
  font-family: 'Parisienne', cursive;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #D4AF37;
  height: 300px;
}

.map-container iframe {
  height: 100% !important;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-section h4 {
  font-family: 'Parisienne', cursive;
  font-size: 1.5rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.social-links,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.social-link,
.footer-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link:hover,
.footer-link:hover {
  color: #D4AF37;
}

.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(74%) sepia(58%) saturate(1352%) hue-rotate(15deg) brightness(101%) contrast(90%);
}

.contact-details {
  text-align: center;
}

.footer-logo-container {
  text-align: center;
  margin: 2rem 0;
}

/* Reviews Section */
.reviews-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.reviews-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  flex-shrink: 0;
  padding: 0 20px;
}

.review-item {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #D4AF37;
  transition: transform 0.3s ease;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-stars {
  color: #D4AF37;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #2D2D2D;
  flex-grow: 1;
}

.review-author {
  font-weight: 600;
  color: #000000;
  font-family: 'Parisienne', cursive;
  font-size: 1.2rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D4AF37;
  color: #000000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #B8941F;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: -25px;
}

.carousel-btn-next {
  right: -25px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #CCCCCC;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: #D4AF37;
}

/* Gift Cards Section */
#gift-cards {
  background-image: url('attached_assets/Oysters 1_1750766507949_1750778383821.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#gift-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#gift-cards .container {
  position: relative;
  z-index: 2;
}

#gift-cards .section-title {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gift-cards-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gift-cards-text {
  margin-bottom: 3rem;
}

.gift-cards-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.gift-cards-cta {
  display: flex;
  justify-content: center;
}

.gift-card-button {
  display: inline-block;
  background-color: #D4AF37;
  color: #000000;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gift-card-button:hover {
  background-color: #B8941F;
  border-color: #B8941F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Footer Logo */
.footer-logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-bottom {
  border-top: 1px solid #2D2D2D;
  padding-top: 1rem;
  text-align: center;
  color: #999999;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-online-order {
  display: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #000000;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-top: 1px solid #333;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu .online-order {
    display: none;
  }

  .mobile-online-order {
    display: block;
    position: fixed;
    top: 10px;
    right: 70px;
    background-color: #D4AF37;
    color: #000000 !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    z-index: 1001;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #333;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
  }

  .online-order {
    background-color: #D4AF37;
    color: #000000 !important;
    margin: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: #333;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .hero {
    height: 70vh;
    min-height: 500px;
    background-position: center center;
    margin-top: 70px;
  }

  .dropdown-menu {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .hero-logo {
    height: 200px;
  }

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

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

  .hero-content::before {
    font-size: 1rem;
    letter-spacing: 0.3rem;
  }

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

  .location-content {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .cocktail-hero-image {
    max-width: 300px;
    height: 400px;
  }

  .image-placeholder {
    width: 250px;
    height: 300px;
  }

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

  .social-links,
  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .reviews-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-logo-container {
    margin: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    min-height: 450px;
    background-position: center center;
    margin-top: 70px;
    display: flex;
    align-items: center;
    padding-top: 0;
  }

  .hero-logo {
    height: 150px;
  }

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

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

  .menu-item-name {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 15px;
  }

  .section {
    padding: 3rem 0;
  }

  .footer {
    padding: 2rem 0 1rem;
  }
}
