
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

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

   .close-menu {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    color: #c9a03d;
    cursor: pointer;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;

    background: linear-gradient(180deg, #000080, #02024f);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 30px;

    transition: 0.4s ease;
    z-index: 999;
  }

  /* 🔥 THIS IS MISSING */
  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 20px;
    letter-spacing: 2px;
    border: none;
    position: relative;
  }

  .nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #c9a03d;
  margin-top: 5px;
  transition: 0.3s;
}



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

}
.menu-toggle.active {
  display: none;
}



.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 32px;
  color: #c9a03d;
  cursor: pointer;
  display: none;
}


.menu-toggle {
  margin-right: 10px;
  display: none;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
header {
  background: rgba(0, 0, 128, 0.9);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #c9a03d;
}

header.scrolled {
  padding: 10px 0;
  background: #000080;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

.logo-text h1 {
  font-size: 20px;
  color: #c9a03d;
  margin: 0;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.logo-text p {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 2px;
  margin: 3px 0 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c9a03d;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Banner */
.hero {
  min-height: 70vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.5)), url('../images/Urban Hero Image.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding: 80px 0;
}

@media (max-width: 768px) {

   .close-menu {
    display: block;
  }
  .hero {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

.hero-content h2 {
  font-size: 18px;
  letter-spacing: 6px;
  margin-bottom: 16px;
  color: #c9a03d;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.hero-tagline {
  font-size: 20px;
  letter-spacing: 4px;
  word-spacing: 8px;
  margin: 20px 0;
}

.hero-tagline span {
  color: #c9a03d;
}

.hero-address {
  font-size: 14px;
  margin: 15px 0;
  opacity: 0.9;
}

.service-tag {
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.service-tag:hover {
  color: #c9a03d;
  transform: translateY(-2px);
  text-shadow: 0 0 5px rgba(201, 160, 61, 0.5);
}

.service-tag:active {
  transform: translateY(0);
}

.btn {
  display: inline-block;
  background: #c9a03d;
  color: #0a0a0a;
  padding: 14px 38px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0;
  transition: 0.3s;
  letter-spacing: 2px;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 5px 15px rgba(201,160,61,0.4);
}

.btn:hover {
  background: #a07e2c;
  color: white;
   box-shadow: 0 10px 30px rgba(201,160,61,0.6);
}

section {
  padding: 100px 0;
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.section-sub {
  text-align: center;
  color: #c9a03d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 48px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
  transition: transform 0.3s ease;
}

.card-content i {
  color: #d4af37;
  font-size: 32px;
  margin-bottom: 12px;
   position: absolute;
  z-index: 2;
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 12px;
  line-height: 1.5;
}

.card-link {
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}

.service-card:hover {
   transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: 0.3s;
}

.service-card:hover::after {
  border-color: #c9a03d;
}

.service-card:hover .card-link {
  letter-spacing: 2px;
}

/* Service Card Backgrounds */
.catering { background-image:url('../images/urban catering image.png'); }
.music { background-image: url('../images/Urban Music.png'); }
.events { background-image: url('../images/Urban Event.png'); }
.photo { background-image: url('../images/urban photography.png'); }
.speaker { background-image: url('../images/urban speaker.png'); }
.location { background-image: url('../images/urban location.png'); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 { font-size: 32px; margin-bottom: 20px; }
.about-text p { margin-bottom: 20px; color: #444; line-height: 1.8; }
.signature { margin-top: 20px; font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: #c9a03d; }
.about-image img { width: 100%; border-radius: 8px; height: 450px; object-fit: cover; }

/* Gallery Filter Buttons */
.gallery-filter {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #c9a03d;
  color: #c9a03d;
  padding: 8px 24px;
  margin: 5px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c9a03d;
  color: #0a0a0a;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 20px;
  color: white;
  transition: 0.3s ease;
  text-align: center;
}

.portfolio-item:hover .overlay {
  bottom: 0;
}

.overlay i {
  font-size: 24px;
  margin-top: 10px;
  color: #c9a03d;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

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

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #c9a03d;
  font-size: 45px;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover {
  color: white;
}

#lightbox-caption {
  color: white;
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}

/* Contact Bar */
.contact-bar {
  background: #0a0a0a;
  padding: 50px 0;
  margin: 40px 0;
}

.contact-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.contact-card { color: white; }
.contact-card i { font-size: 38px; color: #c9a03d; margin-bottom: 15px; }
.contact-card p { margin: 8px 0; font-size: 14px; }
.contact-card a { color: #c9a03d; text-decoration: none; }

/* Contact Form */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-details p {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-details i { width: 30px; color: #c9a03d; font-size: 20px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
}

/* Footer */
footer {
  background: #0a0a0a;
  color: #aaa;
  text-align: center;
  padding: 50px 0;
}

.footer-logo { font-size: 28px; color: #c9a03d; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.social-icons a { color: #c9a03d; margin: 0 12px; font-size: 20px; transition: 0.3s; }
.social-icons a:hover { color: white; }

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

.modal-content {
  background: white;
  max-width: 600px;
  width: 90%;
  border-radius: 16px;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  color: #c9a03d;
  transition: 0.3s;
  z-index: 10;
}

.close-modal:hover { color: #0a0a0a; }

#modal-body { padding: 40px 35px; }
#modal-body h2 { font-size: 32px; margin-bottom: 15px; color: #c9a03d; }
#modal-body h3 { font-size: 20px; margin: 20px 0 10px; }
#modal-body p { margin-bottom: 15px; line-height: 1.6; color: #444; }
#modal-body ul { margin: 15px 0 20px 25px; }
#modal-body li { margin: 8px 0; color: #555; }
.modal-btn {
  background: #c9a03d;
  color: #0a0a0a;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  border-radius: 30px;
}
.modal-btn:hover { background: #a07e2c; color: white; }
.modal-icon { font-size: 50px; color: #c9a03d; margin-bottom: 15px; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }

/* Responsive */
@media (max-width: 768px) {
   .menu-toggle {
    display: block;
  }
  .container { padding: 0 20px; }
  .hero-content h1 { font-size: 42px; }
  .about-grid, .contact-main { grid-template-columns: 1fr; }
  .hero-tagline { font-size: 12px; letter-spacing: 1px; flex-wrap: wrap; }
  .logo-img { max-height: 45px; }
  .logo-text h1 { font-size: 14px; }
  .logo-text p { font-size: 8px; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 280px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 26px; bottom: 20px; right: 20px; }
  .filter-btn { padding: 6px 16px; font-size: 12px; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}