* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f7f7f7;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  /* flex-wrap: wrap; */
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #caa45c;
  /* border: 2px solid #caa45c; */
  /* border-radius: 50%; */
  padding: 8px 12px;
}

.nav-links {
  background: #af1317;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  gap: 25px;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}




.menu-btn {
  display: none;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #fff;
  padding: 6px 12px;
}


/* MOBILE */
@media (max-width: 768px) {

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffc330;
    color: #af1317;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
  }
  .nav-links a {
    color: #af1317;
    padding: 10px 0;
    font-weight: bold;
  }

  .nav-links.active {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 30px;
  background-image: url("assets/img/hero/home-1/bgnew1.png");
  background-size: cover;
  background-position: center;
  height: 550px;
}

.heroabout {
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 30px;
  background-image: url("assets/img/hero/home-1/bg1.png");
  background-size: cover;
  background-position: center;
  height: 550px;
}
/* LEFT */
.hero-left {
  position: relative;
  flex: 1;
}

.hero-left img {
  width: 100%;
  border-radius: 10px;
}

/* CTA */
/* .cta-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #af1317;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
} */


.cta-group {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  background: #af1317;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #a00000;
}

/* Optional second button style */
.cta-btn.secondary {
  background: transparent;
  color: #af1317;
  border: 2px solid #af1317;
}

.cta-btn.secondary:hover {
  background: #af1317;
  color: white;
}


/* RIGHT */
.hero-right {
  flex: 1;
}

.title {
  font-size: 55px;
  color: #af1317;
  font-weight: bold;
}

.title .light {
  font-weight: 300;
}

.script {
  font-size: 70px;
  color: #af1317;
  font-family: 'Great Vibes', cursive;
  margin-top: -15px;
}

.subtitle {
  font-size: 26px;
  margin-top: 10px;
  letter-spacing: 2px;
}

.description {
  margin-top: 15px;
  color: #b58c6a;
  font-size: 15px;
  max-width: 500px;
  line-height: 1.6;
}

/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    padding: 0;
  }

  .title {
    font-size: 45px;
  }

  .script {
    font-size: 60px;
  }

  .subtitle {
    font-size: 22px;
  }

  .cta-btn {
    position: static;
    margin-top: 15px;
  }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 600px) {

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none; /* hide nav links */
  }

  .hero {
    padding: 20px;
  }

  .title {
    font-size: 32px;
  }

  .script {
    font-size: 45px;
  }

  .subtitle {
    font-size: 18px;
  }

  .description {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}



/* ========================= */
/* IGNORE BELOW */  

/* ABOUT SECTION */
.about {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px;
  background: #f4f4f4;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-left img {
  width: 70%;
  border-radius: 10px;
    float: right;
}
.about-leftt img {
  width: 100%;
  border-radius: 10px;

}

/* RIGHT */
.about-right {
  flex: 1;
}

.about-title {
  font-size: 42px;
  color: #a52a2a;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 26px;
  color: #a52a2a;
  font-family: 'Comic Sans MS', cursive; /* replace if needed */
  margin-bottom: 15px;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  max-width: 500px;
  text-align: justify;
}

/* SIGNATURE AREA */
.about-sign {
  margin-top: 20px;
}

.about-sign .meet {
  display: block;
  font-size: 20px;
  color: #a52a2a;
  letter-spacing: 2px;
}

.about-sign .signature {
  font-size: 34px;
  color: #a52a2a;
  font-family: 'Brush Signature', cursive;
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    margin: 0 auto;
  }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 600px) {
  .about {
    padding: 30px 20px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-sign .signature {
    font-size: 24px;
  }
}



/* SERVICES SECTION *//* SERVICES SECTION */

/* Layout */
.services-container {
  display: flex;
  gap: 20px;
  padding: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.service-card {
  position: relative;
  width: 300px;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}

/* Image */
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Slight zoom on hover */
.service-card:hover img {
  transform: scale(1.1);
}

/* Bottom Title */
.service-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #af1317;
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  z-index: 2;
  transition: 0.3s;
}

/* Hide title when hovering */
.service-card:hover .service-name {
  opacity: 0;
}

/* Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 25px;

  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover Effect */
.service-card:hover .service-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Content */
.service-overlay h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-overlay p {
  font-size: 14px;
  line-height: 1.5;
}

.service-overlay a {
  margin-top: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.service-overlay a:hover {
  text-decoration: underline;
}

/* 📱 Mobile Fix (important) */
@media (max-width: 768px) {

  /* Always show overlay on mobile (no hover) */
  .service-overlay {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    background: #af1317;
  }

  .service-name {
    display: none;
  }
}









/* PORTFOLIO SECTION */
/* SECTION */
.projects {
  padding: 60px;
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-family: 'Brush Signature', cursive;
  color: #af1317;
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* EACH SLIDE = 1/4 width */
.slide {
  min-width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

/* CARD */
.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.5);
  color: #fff;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #af1317;
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 1024px) {
  .slide {
    min-width: 50%; /* 2 per row */
  }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 600px) {
  .slide {
    min-width: 100%; /* 1 per row */
  }
}




/* APPROACH SECTION */

/* SECTION */
.approach {
  background: #ffffff;
  padding: 60px 0;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.approach-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
}

/* IMAGE */
.approach-image {
  flex: 1;
  height: 500px;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border:3px solid #af1317;
}

/* CONTENT */
.approach-content {
  flex: 1;
  padding: 40px;
}

/* TEXT */
.approach-text {
  font-size: 28px;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}

/* STEPS (OPTIONAL) */
.approach-steps {
  border-left: 2px solid #000;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: #555;
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 1024px) {
  .approach-grid {
    flex-direction: column;
  }

  .approach-image {
    width: 100%;
    height: 400px;
  }

  .approach-content {
    padding: 20px;
    text-align: center;
  }

  .approach-steps {
    border-left: none;
    padding-left: 0;
    align-items: center;
  }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 600px) {
  .approach {
    padding: 40px 0;
  }

  .approach-text {
    font-size: 20px;
  }

  .approach-image {
    height: 300px;
  }
}




/* FOOTER */
/* Base */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.footer {
    color: #fff;
}

/* Background section */
.footer-bg {
    position: relative;
    background: url("assets/img/global/bg-black.png") center/cover no-repeat;
    overflow: hidden;
    padding: 80px 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Title */
.footer-title h1 {
    text-align: center;
    font-size: 120px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Copyright */
.footer-copy {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-copy a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-copy a:hover {
    color: #f5c542;
}

/* CTA */
.footer-cta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0 80px;
    flex-wrap: wrap;
}

.cta-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    flex: 1;
}

.cta-text {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.6;
    flex: 2;
}

/* Button */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #f5c542;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    align-self: center;
}

.btn:hover {
    background: #fff;
}

/* Social grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.social-grid a {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.social-grid a:hover {
    color: #f5c542;
}

/* Shapes */
.shape {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.shape.top {
    top: 0;
    height: 100px;
    background: url("assets/img/global/shape-1.png") center/cover no-repeat;
}

.shape.bottom {
    bottom: 0;
    height: 100px;
    background: url("assets/img/global/shape-2.png") center/cover no-repeat;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-title h1 {
        font-size: 42px;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-title h1 {
        font-size: 32px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/* IGNORE BELOW */

/* tab */

/* Section wrapper */
.tab-section {
  width: 100%;
  padding: 40px 20px;
  background: #f8f8f8;
}

/* Header tabs */
.tab-header {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 25px;
  border: none;
  background: #ddd;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}

/* Body */
.tab-body {
  max-width: 1000px;
  margin: auto;
}

/* Each section */
.tab-pane {
  display: none;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Accordion */
.accordion-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* Item */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

/* Header */
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  color: #a52a2a;
}

/* + / - icon */
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.accordion-header.active::after {
  content: "−";
}

.accordion-header:hover {
  background: #af1317;
  color: white;
}

/* Content */
.accordion-content {
  display: none;
  padding: 50px;
  background: #fff;
  animation: fadeIn 0.3s ease;
}

.accordion-content.active {
  display: block;
}

/* Button */
.cta-btn {
  padding: 10px 20px;
  border: none;
  background: #af1317;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}



/* Section */
.pricing-section {
  padding: 70px 20px;
  background: #f7f7f7;
  font-family: Arial, sans-serif;
}

/* Container */
.pricing-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.pricing-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Featured */
.featured {
  background: #af1317;
  color: #fff;
  transform: scale(1.05);
}

.featured button {
  background: #fff;
  color: #111;
}

/* Badge */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
}

/* Price */
.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.pricing-card h2 {
  font-size: 40px;
  margin: 10px 0;
}

.pricing-card h2 span {
  font-size: 14px;
  font-weight: normal;
}

/* List */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Button */
.pricing-card button {
  padding: 12px 20px;
  border: none;
  background: #af1317;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.pricing-card button:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }
}



.event-details-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
   align-items: start; /* ✅ THIS FIXES IT */
}

.event-left,
.event-right {
  text-align: left;
}



/* gallery */

/* SECTION */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.gallery-title {
  font-size: 32px;
  margin-bottom: 30px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* CLOSE */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* NAV */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.prev { left: 30px; }
.next { right: 30px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}




/* contact */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ================= TOP SECTION ================= */
.contact-top {
  background: #e9e3dc;
  padding: 60px 0;
  text-align: center;
}

.contact-top h2 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.contact-top span {
  font-weight: 600;
}

.contact-top strong {
  font-weight: 800;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #f5f2ee;
  padding: 20px;
  border-radius: 6px;
  text-align: left;
}

.card h4 {
  margin-bottom: 10px;
  font-size: 14px;
}

.card p {
  font-size: 13px;
  color: #555;
}

.socials span {
  margin-right: 8px;
  font-size: 18px;
}

/* ================= FORM SECTION ================= */
.contact-form-section {
  position: relative;
  background: #BE9A83;
  color: #af1317;
  padding: 80px 0;
  overflow: hidden;
}

.contact-form-section .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent);
}

.form-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.form-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.contact-form {
  background: rgba(255,255,255,0.5);
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid #af1317;
  background: transparent;
  color: #000;
  outline: none;
}

.contact-form textarea {
  height: 100px;
  margin-bottom: 30px;
}

.contact-form button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #af1317;
  background: white;
  color: black;
  cursor: pointer;
  font-weight: bold;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}


#eventType {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #000;
  border: none;
  border-bottom: 1px solid #af1317;
  outline: none;
  font-size: 14px;
}

#eventType option {
  color: #000; /* dropdown options readable */
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-group label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-group input {
  accent-color: #fff; /* adjust to your theme */
}

.hint {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}