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

@media (max-width: 969px) {
  .divider {
    display: none;
  }
  .about-divider {
    display: none; 
  }
}

.about-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

html, body {
  height: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff;
  background: url('NeonLounge.png') center/cover no-repeat;
}

h2 {
  text-align: center;
  padding: 0.3rem;
  border-radius: 12px;
  font-size: 4rem;
  width: 97.3%;
  margin-left: 1.3vw;
  margin-bottom: 2rem;
  font-weight: bold;
  background: #111;
}

.BG {
  background: url('NeonLounge.png') center/cover no-repeat;
}

.startersbg {
  background: url('NL1.png') center/cover no-repeat;
}

.mainsbg {
  background: url('NL2.png') center/cover no-repeat;
}

.dessertsbg {
  background: url('NL3.png') center/cover no-repeat;
}

.drinksbg {
  background: url('NL4.png') center/cover no-repeat;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  z-index: 3000;
}

.logo-text img {
  height: 4rem;
}

.nav-links {
  z-index: 30000;
  display: flex;
  list-style: none;
  gap: 1.14em;
  justify-content: right;
  margin-right: 0vw;
}

@media (max-width: 800px) {
  .nav-links {
    margin-right: -5vw;
  }
}

.nav-links li a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-black {
  color: #000; 
  background: #fff; 
  padding: 0.5rem 0.8rem; 
  border-radius: 5px; 
}
.nav-gold {
  color: #FFB612; 
  padding: 0.5rem 0.8rem; 
  border-radius: 5px; 
}
.nav-green {
  color: #007A4D; 
  padding: 0.5rem 0.8rem; 
  border-radius: 5px; 
}
.nav-red {
  color: #DE3831;
  padding: 0.5rem 0.8rem; 
  border-radius: 5px; 
}
.nav-blue {
  color: #002395;
  padding: 0.5rem 0.8rem; 
  border-radius: 5px; 
}

.nav-links li a:hover {
  transform: scale(1.2);
}

.hero {
  background: url('NeonLounge.png') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  z-index: 1000;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 4rem;
  border-radius: 12px;
  width: 80%;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  color: #FFB612;
}

.hero-overlay p {
  font-size: 1.3rem;
  margin: 1rem 0;
}

.cta {
  display: inline-block;
  background: #007A4D;
  color: #fff;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #DE3831;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5rem 2rem;
  background: #111;
}

.about-text {
  flex: 1;
  padding: 1rem;
}

.about-text h2 {
  color: #FFB612;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  padding: 1rem;
}

.about-image img {
  width: 70%;
  border: 6px solid #FFB612;
  border-radius: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.item {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.item img {
  width: 100%;
  display: block;
}

.item h3 {
  padding: 1rem;
  font-size: 1.5rem;
}

.item:hover {
  transform: scale(1.05);
}

.contact {
  background: url(NeonLounge.png) center / cover no-repeat;
  text-align: center;
  padding: 5rem 2rem;
  background: #222;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #002395;
}

footer {
  background: #000;
  text-align: center;
  padding: 2rem 0rem;
  font-size: 0.9rem;
  color: #ccc;
  width: 100%;
  margin-bottom: 0;
}

.divider {
  width: 100%;
  margin-left: -2rem;
  line-height: 0;
  margin-top: -20rem
}

.divider svg {
  display: block;
  width: 100vw;
  height: auto;
}

.about-divider {
  width: 100vw;
  margin-left: -2rem;
  line-height: 0;
  margin-top: -20rem
}

.about-divider svg {
  display: block;
  width: 100vw;
  height: auto;
}

section {
  position: relative;
  padding: 5rem 2rem;
}

.about, .coastaltable, .atmosphere, .contact {
  text-align: center;
}

.about {
  background: #111; 
}
.coastaltable {
  background: #222;
}
.atmosphere {
  background: #111;
}
.contact {
  background: url(NeonLounge.png) center / cover no-repeat;
}

.contact-overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 200;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.card, .card2 {
    flex: 1 1 calc(30% - 20px);
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.card {
  display: inline-block;
  grid-template-areas:
    "title"
    "image"
    "text";
  grid-template-columns: 1.6fr 0.2fr;
  gap: 0.4rem;
  max-width: 30vw;
  margin: 0rem auto;
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
  background: rgb(0, 0, 0, 0.7);
  margin: 2vw;
}

.card-title {
  grid-area: title;
  text-align: center;
  padding: 0.3rem;
  border-radius: 12px;
  font-size: 4rem;
  width: 100%;
  margin-left: 0vw;
  margin-bottom: 2rem;
  font-weight: bold;
  background: #111;
}

.card-image {
  grid-area: image;
  width: 21.5vw;
  height: 21.5vw;
}

.card-image img {
  width: 21.5vw;
  height: 21.5vw;
  border-radius: 10px;
  display: block;
  border: 6px solid #007A4D;
}

.card-text {
  grid-area: text;
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 2vh;
  width: 100%;
}

.card-link a {
  display: inline-flex;     
  justify-content: center;  
  align-items: center;       
  padding: 2vw 20vw;     
  background: #FFB612;       
  color: #000;              
  border-radius: 8px;           
  font-weight: 700;
  text-decoration: none;     
  min-width: 150px;      
  text-align: center;
  transition: background 0.3s;
}

.card-link {
  z-index: 20000;
  grid-area: link;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.card-link a:hover {
  background: #DE3831;
  transform: scale(1.1);
}

.card2 {
  display: inline-block;
  grid-template-areas:
    "title"
    "image"
    "text";
  grid-template-columns: 1.6fr 0.2fr;
  gap: 0.4rem;
  max-width: 20vw;
  margin: 0rem auto;
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
  background: rgb(0, 0, 0, 0.7);
  margin: 2vw;
}

.card2-title {
  grid-area: title;
  text-align: center;
  padding: 0.3rem;
  border-radius: 12px;
  font-size: 4rem;
  width: 100%;
  margin-left: 0vw;
  margin-bottom: 2rem;
  font-weight: bold;
  background: #111;
}

.card2-image {
  grid-area: image;
  width: 15vw;
  height: 15vw;
}

.card2-image img {
  width: 15vw;
  height: 15vw;
  border-radius: 10px;
  display: block;
  border: 6px solid #007A4D;
}

.card2-text {
  grid-area: text;
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 2vh;
  width: 100%;
}


.card2-link {
  z-index: 2000;
  grid-area: link;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.card2-link a {
  display: inline-flex;     
  justify-content: center;  
  align-items: center;       
  padding: 2vw 20vw;     
  background: #FFB612;       
  color: #000;              
  border-radius: 8px;           
  font-weight: 700;
  text-decoration: none;     
  min-width: 150px;      
  text-align: center;
  transition: background 0.3s;
}

.card2-link a:hover {
  background: #DE3831;
  transform: scale(1.2);
}

@media (max-width: 1223px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    gap: 1rem;
    border-radius: 8px 0 0 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .card-title {
    font-size: 10vh;
  }
}

@media (max-width: 762px) {
  .card-title {
    font-size: 2rem;
  }
  .about-image {
    width: 50vw;
  }
  .about {
    min-height: 100vh; 
    height: auto;     
  }
  .card2-title {
    font-size: 2rem;
  }

  .card {
    grid-template-areas:
      "title title title"
      "image image image"
      "text text text";
    grid-template-columns: 1fr;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .card-title {
    font-size: 1.8rem;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.5rem;
  }
  
  .card-image {
    width: 80vw;
    height: 80vw;
    margin: 0 auto;
  }
  
  .card-image img {
    width: 80vw;
    height: 80vw;
  }
  
  .card-text {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  .card2 {
    grid-template-areas:
      "title title title"
      "image image image"
      "text text text";
    grid-template-columns: 1fr;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .card2-title {
    font-size: 1.8rem;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.5rem;
  }
  
  .card2-image {
    width: 80vw;
    height: 80vw;
    margin: 0 auto;
  }
  
  .card2-image img {
    width: 80vw;
    height: 80vw;
  }
  
  .card2-text {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .hero-overlay {
    width: 90%;
    padding: 2rem;
  }
  
  .hero-overlay h1 {
    font-size: 2.5rem;
  }
  
  .hero-overlay p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 1rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }

  .logo-text img {
    height: 3rem;
  }
  
  .navbar {
    padding: 0.5rem 1rem;
  }

  .contact-overlay {
    padding: 1.5rem;
  }
  
  .contact-overlay h2 {
    font-size: 2rem;
  }

  .divider {
    display: none;
  }
  
  .about-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .logo-text {
    height: 2rem;
    margin-top: -2rem;
  }
  .navbar {
    padding: 2rem 3.5rem;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }
  
  .card-title, .card2-title {
    font-size: 1.5rem;
  }
  
  .card-text, .card2-text {
    font-size: 0.9rem;
  }
}



.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  transition: background 0.4s ease;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
}

.header-logo img {
  height: 3.5rem;
  transition: transform 0.3s ease;
}
.header-logo img:hover {
  transform: scale(1.05);
}

.site-nav__desktop {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav__item a {
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-nav__item a:hover {
  transform: translateY(-3px);
}

.header-dropdown {
  z-index: 10000;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 6px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 0.5rem 0;
}

.header-dropdown__link {
  padding: 0.6rem 1rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}
.header-dropdown__link:hover {
  background: #FFB612;
  color: #000;
}

.header-dropdown--has-dropdown {
  position: relative;
}
.header-dropdown--has-dropdown:hover .header-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4000;
}
.header__hamburger-box {
  width: 28px;
  height: 22px;
  position: relative;
}
.header__hamburger-inner,
.header__hamburger-inner::before,
.header__hamburger-inner::after {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  transition: 0.3s ease;
}
.header__hamburger-inner::before,
.header__hamburger-inner::after {
  content: "";
  left: 0;
}
.header__hamburger-inner::before { top: -8px; }
.header__hamburger-inner::after { top: 8px; }

.header__hamburger.active .header__hamburger-inner {
  transform: rotate(45deg);
}
.header__hamburger.active .header__hamburger-inner::before {
  transform: rotate(90deg);
  top: 0;
}
.header__hamburger.active .header__hamburger-inner::after {
  opacity: 0;
}

@media (max-width: 900px) {
  .site-nav__desktop {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1rem;
    border-radius: 0 0 0 12px;
  }
  .site-nav__desktop.active {
    display: flex;
  }
  .header__hamburger {
    display: block;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 4000;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .site-nav__desktop {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1rem;
    border-radius: 0 0 0 12px;
    width: 200px;
  }

  .site-nav__desktop.active {
    display: flex;
  }
}
