/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* SMOOTH TRANSITION */
body {
  transition: background 0.4s ease, color 0.4s ease;
}

/* DARK MODE DEFAULT */
body {
  background: #0b0b0b;
  color: #ffffff;
}

/* LIGHT MODE */
body.light {
  background: #f5f5f5;
  color: #111111;
}

/* NAVBAR (FULL TRANSPARENT GLASS EFFECT) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Transparent glass effect */
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

body.light .navbar {
  background: #ffffff;
  backdrop-filter: none;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* LOGO */
.logo span {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #d4af37;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
}

/* UNDERLINE EFFECT */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 1px;
  background: #d4af37;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* THEME BUTTON */
.theme-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

/* LIGHT MODE BUTTON */
body.light .theme-btn {
  border: 1px solid #111;
  color: #111;
}

/* HAMBURGER */
.menu {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* LIGHT MODE HAMBURGER */
body.light .menu {
  color: #111;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    width: 220px;
    padding: 20px;
    gap: 15px;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }
}


/* MOBILE MENU DEFAULT (DARK MODE) */
.nav-links {
  color: white;
}

/* MOBILE MENU BACKGROUND LIGHT MODE FIX */
body.light .nav-links {
  background: rgba(255, 255, 255, 0.95);
}

/* MOBILE LINKS LIGHT MODE TEXT FIX */
body.light .nav-links a {
  color: #111 !important;
}

/* HOVER FIX */
body.light .nav-links a::after {
  background: #d4af37;
}



/* HERO SECTION */
.hero {
  height: 100vh;
  width: 100%;
  background: url("assests/event.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 20px;
}

/* TITLE */
.hero-content h1 {
  font-size: 50px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  animation: fadeUp 1s ease;
}

/* TEXT */
.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
  animation: fadeUp 1.5s ease;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af37;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  animation: fadeUp 2s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* LIGHT MODE ADJUSTMENT */
body.light .hero-overlay {
  background: rgba(0,0,0,0.3);
}



/* ABOUT SECTION */
.about {
  padding: 80px 20px;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* IMAGE */
.about-img img {
  width: 350px;
  border-radius: 10px;
  transition: 0.3s;
  object-fit: cover;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* TEXT */
.about-text {
  max-width: 500px;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #d4af37;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #d4af37;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.about-btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 100%;
    max-width: 300px;
  }
}



/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 40px;
  margin: 80px 0 30px;
}

/* FILTER BUTTONS */
.filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 18px;
  margin: 5px;
  border: none;
  cursor: pointer;
  background: #ddd;
  border-radius: 5px;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #d4af37;
  color: black;
}

/* GALLERY (MASONRY STYLE) */
.gallery {
  column-count: 3;
  column-gap: 15px;
  padding: 0 20px;
}

/* ITEM */
.item {
  break-inside: avoid;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

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

/* HOVER EFFECT */
.item:hover img {
  transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .gallery {
    column-count: 1;
  }
}


/* SERVICES SECTION */
.services {
  padding: 80px 20px;
  text-align: center;
}

/* CONTAINER */
.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* CARD */
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  width: 300px;
  border-radius: 10px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 10px;
  color: #d4af37;
}

.service-card p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.service-card h4 {
  margin-bottom: 20px;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #d4af37;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.service-btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}


/* TESTIMONIALS SECTION */
.testimonials {
  padding: 80px 20px;
  text-align: center;
}

/* CONTAINER */
.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* CARD */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
  width: 300px;
  border-radius: 10px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
}

/* TEXT */
.testimonial-card p {
  margin-bottom: 15px;
  font-style: italic;
  opacity: 0.9;
}

.testimonial-card h4 {
  color: #d4af37;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
}



/* CONTACT SECTION */
.contact {
  padding: 80px 20px;
  text-align: center;
}

/* CONTAINER */
.contact-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: inherit;
}

/* BUTTON */
.contact-btn {
  padding: 12px;
  background: #d4af37;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
}

/* INFO */
.contact-info {
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #d4af37;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

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


/* FOOTER */
.footer {
  padding: 60px 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 80px;
}

/* LIGHT MODE */
body.light .footer {
  background: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  color: #d4af37;
}

.footer-box p {
  opacity: 0.8;
}

/* LINKS */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box a {
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #d4af37;
  opacity: 1;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: #d4af37;
  color: black;
  border-color: #d4af37;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.7;
}

/* LIGHT MODE BOTTOM BORDER */
body.light .footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

