/* FONTS */
/* Lora */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* Urbanist */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Carattere */
@import url('https://fonts.googleapis.com/css2?family=Carattere&display=swap');
/* "Carattere", cursive; */

/* Sacramento */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
/* "Sacramento", cursive; */

/* FONTS - END */

:root {
  --yellow: #fdb813;
  --mid-yellow: #ffdc85;
  --light-brown: #ffebc6;
  --brown: #715317;
  --very-dark-brown: #140800;
  --very-very-dark-brown: #070500;
  --plain: "Urbanist", sans-serif;
  --cursive: "Lobster Two", sans-serif;
  --cursive-carrot:"Carattere", cursive;
}

/* NAVBAR */
.navbar a {
  color: white !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.navbar a:hover {
  color: var(--yellow) !important;
  font-weight: bolder;
  transform: translate(3px, -3px);

}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  font-family: "Urbanist", sans-serif;
  background-color: transparent;
  transition: background-color 0.2s linear;
  z-index: 1000;

}

.navbar-toggler {
  border-color: #fff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #070500;
    padding: 40px 0 120px;
    z-index: 1050;
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-collapse .nav-item {
    margin: 10px 0;
  }

  .navbar-toggler {
    border-color: #fff;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}

/* NAVBAR - END */

/* CAROUSEL */
.carousel-item img {
  height: 100vh;
  object-fit: cover;
}

.carousel-item {
  position: relative;
}

/* To bring the color back to black; 0, 0, 0, 1 */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(7, 5, 0, 0.55) 10%,
      rgba(7, 5, 0, 0.88) 70%,
      rgba(7, 5, 0, 1) 100%);
  z-index: 1;
  pointer-events: none;
}

.carousel-indicators [data-bs-target] {
  background-color: white;
  opacity: 0.7;
}

.carousel-indicators .active {
  opacity: 1;
}

/* CAROUSEL - END */

/* HERO OVERLAY */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: white;
  z-index: 10;
  transform: translate(-50%, -40%);
  padding: 0 20px;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;

  opacity: 0;
  animation: heroFadeUp 900ms ease-out forwards;
}

.hero-logo {
  width: 120px;
  margin-bottom: 20px;
}

.hero-head {
  font-family: var(--plain);
  font-weight: 200;
  letter-spacing: 0.5px;

}

.hero-text {
  font-family: var(--plain);
  letter-spacing: 5px;
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 20px;
  margin-top: 10px;

}

.button-dark-yellow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px 10px 30px;
  background-color: var(--yellow);
  border: none;
  border-radius: 10px;
  font-family: var(--plain);
  letter-spacing: 0.7px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.button-dark-yellow:hover {
  background-color: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* HERO OVERLAY - END */

/* SECTION #4 - Contact */
.info-section {
  background-color: var(--very-very-dark-brown);
  color: white;
  padding: 20px 10%;
  padding-bottom: 45px !important;
}

.invite-head {
  margin: 0;
  padding-top: 30px;
  font-size: 4rem !important;
  text-align: center;
  font-family: var(--cursive-carrot) !important;
  color: var(--yellow) !important;
  /* font-weight: bold; */
}

.invite-sub {
  margin-top: 10px;
  text-align: center;
  font-family: var(--plain) !important;
  color: var(--mid-yellow);
  margin-bottom: 10px;
}

.social-icons {
  text-align: center;
}

.invite-sub {
  margin-bottom: 10px !important;
}

.social-icons a,
.social-icons .whatsapp {
  color: var(--mid-yellow);
  font-size: 2rem;
  margin: 0 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.social-icons a.facebook:hover {
  color: #1877f2;
  transform: translate(3px, -3px);
}

.social-icons a.instagram:hover {
  color: transparent;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translate(3px, -3px);
}

.social-icons .whatsapp:hover {
  color: #25D366;
  transform: translate(3px, -3px);
}

.whatsapp-number {
  font-family: var(--plain);
  font-size: 1rem;
  color: #25D366;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(10px, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.whatsapp:hover .whatsapp-number {
  opacity: 1;
  font-weight: bold;
  transform: translate(15px, -50%);
}

#copy-alert {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(121, 121, 121, 0.4);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: fadeInOut 2s ease;
}


.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 10px;
}

#map {
  width: 100%;
  height: 190px;
  border-radius: 0px;
}

.contact-section {
  font-family: var(--plain);
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 7px 20px;
  background-color: #070500;
}

.contact-card {
  background-color: #18120286;
  border-radius: 7px;
  text-align: center;
  padding: 35px 25px;
  width: 230px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card i {
  font-size: 35px;
  color: var(--mid-yellow);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 18px;
  color: white;
  padding-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-card p {
  font-size: 15px;
  color: rgb(197, 194, 194);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .map-container {
    margin-top: 10px;
  }

  #map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 98%;
    height: auto;
    border-radius: 0px;
    padding: 10px 20px;
  }

  .contact-card i {
    font-size: 2rem;
  }
}

/* SECTION #4 - END */

/* SECTION #2 */
.menu-section {
  position: relative;
  background-color: #070500;
  color: #f5e8c7;
  padding: 100px 20px;
  overflow: hidden;
}

.menu-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.menu-text {
  flex: 1;
}

.menu-text h4 {
  font-family: var(--plain);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffdc85;
}

.menu-text h1 {
  font-family: var(--cursive-carrot);
  /* font-weight: bold; */
  color: var(--yellow);
  margin: 0;
  padding-top: 5px;
  padding-bottom: 10px;
  font-size: 4rem !important;
}

.menu-text p {
  font-size: 1rem;
  font-family: var(--plain);
  color: white;
  margin-bottom: 30px;
  line-height: 25px;
}


.plate-wrap {
  position: relative;
  display: inline-block;
  max-width: 500px;
  width: 100%;
  overflow: visible;
}

/* Background rectangles */
.plate-bg {
  position: absolute;
  right: 6%;
  width: 62%;
  height: 100%;
  background: transparent;
  border: 2px solid #584621;
  border-radius: 10px;
  z-index: 1;
  box-shadow:
    inset 0 0 25px rgba(113, 83, 23, 0.6),
    0 12px 30px rgba(113, 83, 23, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.5);
  filter: blur(0.2px);
  transition: transform 0.4s ease;
}

.plate-bg.two {
  transform: rotate(30deg);
}

/* Plate image */
.plate-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 90%;
  height: auto;
  border-radius: 12px;
  margin: 0;
  transition: transform 0.4s ease;
}

.plate-wrap:hover .plate-img {
  transform: scale(1.05);  
  cursor: pointer;
  z-index: 3;
}

.plate-wrap:hover .plate-bg {
  transform: translateX(-5px) translateY(-5px) rotate(0deg);
}

.plate-wrap:hover .plate-bg.two {
  transform: translateX(-8px) translateY(-8px) rotate(25deg);
}

@media (max-width: 992px) {
  .menu-content {
    flex-direction: column;
    text-align: center;
  }

  .plate-wrap {
    padding-top: 30px;
    text-align: center;
  }

  .two {
    opacity: 0;
  }

  .plate-bg {
    width: 48%;
    right: 22%;
    transform: rotate(20deg);
  }


  .plate-wrap img {
    max-width: 80%;
  }
}

/* SECTION #2 - END */

/* SECTION #3 */
.karaoke-section {
  position: relative;
  width: 100%;
  padding: 50px 3%;
  background: 
    linear-gradient(rgba(7, 5, 0, 0.85), rgba(7, 5, 0, 0.85)),
    url("../images/karaoke-bg.jpg") center/cover no-repeat;
  color: #f5e8c7;
  text-align: center;
}

.karaoke-overlay {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
  margin-bottom: 10px;
}

.karaoke-heading {
  font-family: var(--cursive-carrot);
  font-size: 4rem;
  color: var(--yellow);
  margin-bottom: 0;
  letter-spacing: 1.1px;
}

.karaoke-subtext {
  font-family: var(--plain);
  font-size: 1.1rem;
  color: var(--mid-yellow);
  margin-bottom: 30px;
}

/* Facilities grid */
.karaoke-facilities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-content: center;
  justify-items: center;
  margin-bottom: 50px;
}

.facility-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  border-radius: 7px;
  padding: 25px 25px;
  padding-bottom: 30px !important;
  width: 100%;
  max-width: 200px;
  transition: all 0.4s ease;
  cursor: default;
}

.karaoke-facilities .facility-box:nth-child(6) {
  grid-column: 2;
}

.karaoke-facilities .facility-box:nth-child(7) {
  grid-column: 3;
}


.facility-box i {
  font-size: 2rem;
  color: var(--mid-yellow);
  margin-bottom: 10px;
  display: block;
}

.material-icons {
   font-size: 2rem;
  color: var(--mid-yellow);
  margin-bottom: 10px;
  display: block;
}


.facility-box .facility-head {
  font-size: 1rem;
  color: var(--mid-yellow);
  font-family: var(--plain);
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
}

.facility-box .facility-sub {
  font-size: 0.81rem;
  color: white;
  font-family: var(--plain);
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.facility-box:hover {
  transform: translateY(-5px) !important;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .karaoke-facilities {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .karaoke-facilities .facility-box:nth-child(6),
  .karaoke-facilities .facility-box:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 576px) {
  .karaoke-facilities {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .facility-box {
    max-width: 280px;
  }

  .karaoke-heading {
    font-size: 2.5rem;
  }

  .karaoke-subtext {
    font-size: 0.95rem;
  }
}



/* SECTION #3 - END */

/* SECTION #5 */
.gallery-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background-color: #070500;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.gallery-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: calc(250%);
  animation: galleryScroll 40s linear infinite;
  height: 100%;
}

.gallery-track img {
  width: 25vw;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(50%);
  transition: all 0.6s ease;
  flex-shrink: 0;
}

.gallery-track img:hover {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.05);
  z-index: 2;
}

@keyframes galleryScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Overlay text */
.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
}

.gallery-overlay h1 {
  font-size: 4rem;
  font-family: var(--cursive-carrot);
  letter-spacing: 2px;
  color: var(--yellow);
  line-height: 30px;
}

.gallery-overlay p {
  font-family: var(--plain);
  font-size: 1.1rem;
  color: var(--mid-yellow);
}

/* Click-To-Open Viewer */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  animation: fadeIn 0.4s ease;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
  color: white;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  user-select: none;
  transition: 0.3s;
}

.lightbox .close {
  top: 30px;
  right: 40px;
}

.lightbox .prev {
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}

.lightbox .next {
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

.lightbox .close:hover,
.lightbox .prev:hover,
.lightbox .next:hover {
  color: var(--yellow);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* SECTION #5 - END */

/* Footer */
.footer {
  background-color: #070500;
  color: white;
  padding: 60px 5% 20px;
  font-family: var(--plain);
}

.footer-container {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-left {
  padding-left: 20px;
  text-align: left;
}

.footer-middle {
  text-align: center;
}

.footer-right {
  text-align: center;
}

.footer-logo {
  width: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.footer-title {
  font-family: var(--plain);
  font-weight: bold;
  font-size: 4rem;
  color: var(--yellow);
}

.footer-sub {
font-family: var(--plain);
  font-size: 1.4rem;
  /* font-weight: bold; */
  color: var(--mid-yellow);
}

.footer-tagline {
  color: white;
  font-size: 0.95rem;
  margin-top: 5px;
}

.footer-section h3 {
  font-family: var(--cursive-carrot);
  color: var(--mid-yellow);
  font-size: 2rem;
  /* font-weight: bold; */
}
.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  display: inline-block;                
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(10px);          
  will-change: transform, color;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  padding-left: 80px; 
}

.contact-info li {
  margin: 10px 0;
  display: flex;
  align-items: center;     
  gap: 12px;           
  justify-content: flex-start;
}

.contact-info i {
  color: var(--mid-yellow);
  padding-right: 10px;
}

.social-icons {
  margin-top: 30px;
}

.social {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s ease;
}

.social:hover {
  color: var(--yellow);
  transform: scale(1.2);
}



/* Align contact info properly */
.contact-info {
  padding-left: 80px; 
  text-align: left;
}

/* Icon styling */
.social {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.6rem;
  color: white;
  transition: all 0.3s ease;
}

.social:hover {
  color: var(--yellow);
  transform: scale(1.2);
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    text-align: center !important;
  }

  .footer-middle {
    display: none;
  }

  .footer-right {
    display: none;
  }

  .contact-info {
    padding-left: 40px !important; 
  }
  /* .contact-info li {
    justify-content: center;
  } */
}

/* Footer - END */