/* ============================================================
   Events by Sotia — Custom Stylesheet
   Colors: Navy #1a1a6e | Purple #6633cc | Cream #f9f7f4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a1a6e;
  --purple: #6633cc;
  --purple-light: #8b5cf6;
  --cream: #f9f7f4;
  --beige: #ede8e0;
  --dark: #2a2a2a;
  --muted: #888;
  --white: #ffffff;
  --light-bg: #efe5fc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--light-bg);
  overflow-x: hidden;
}

/* ─── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--light-bg);
  padding: 8px 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.top-bar a {
  color: var(--navy);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--purple);
}

.top-bar .social-icons a {
  margin-left: 12px;
  font-size: 0.85rem;
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: var(--light-bg);
  padding: 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 100px;
  transition: height 0.3s;
  mix-blend-mode: multiply;
}

.navbar.scrolled .navbar-brand img {
  height: 75px;
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy) !important;
  padding: 28px 18px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--purple);
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover {
  color: var(--purple) !important;
}

/* ─── NAV DROPDOWN ────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-icon {
  font-size: 0.65rem;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu li a i {
  color: var(--purple);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.nav-dropdown-menu li a:hover {
  background: #f8f4ff;
  color: var(--purple);
}

.nav-dropdown-menu li:not(:last-child) a {
  border-bottom: 1px solid #f0f0f0;
}


/* ─── HERO SLIDER ─────────────────────────────────────────── */
#heroCarousel {
  position: relative;
}

.hero-slide {
  height: 92vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 26, 110, 0.25) 0%,
      rgba(26, 26, 110, 0.45) 100%);
}

.hero-slide--plain {
  background-image: none;
  background: var(--light-bg);
}

.hero-slide--plain::after {
  display: none;
}

.hero-slide--plain .btn-hero {
  border-color: var(--navy);
  color: var(--navy);
}

.hero-slide--plain .btn-hero:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 20px;
  background: var(--light-bg);
}

.hero-caption .pre-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.hero-caption h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-caption .tagline {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.btn-hero {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.btn-hero:hover {
  background: var(--white);
  color: var(--purple);
}

.hero-logo {
  height: clamp(120px, 17vw, 220px);
  width: auto;
  margin-bottom: 25px;
  mix-blend-mode: multiply;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  color: var(--navy);
  max-width: 850px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 400;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0) !important;
  width: 20px;
}

/* ─── SECTION COMMONS ─────────────────────────────────────── */
section {
  padding: 90px 0;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--purple);
  margin: 20px auto;
}

/* ─── ABOUT ───────────────────────────────────────────────── */
#about {
  background: var(--light-bg);
}

.about-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img--portrait img {
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: top;
}

.about-img img {
  position: relative;
  z-index: 1;
}

.quote-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--purple);
  border-left: 2px solid var(--purple);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.6;
}

/* ─── SERVICES ────────────────────────────────────────────── */
#services {
  background: var(--light-bg);
}

/* Services list (bullet-point style) */
.services-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.services-list-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.services-list li:hover .services-list-icon {
  background: var(--purple);
  color: var(--white);
}

.services-list strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.services-list p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #555;
  margin: 0;
}


/* ─── TAGLINE BANNER ──────────────────────────────────────── */
.tagline-banner {
  background: var(--navy);
  padding: 60px 20px;
  text-align: center;
}

.tagline-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.tagline-banner .dots {
  color: var(--purple-light);
  font-size: 1.2rem;
  margin: 0 10px;
}

/* ─── GALLERY ─────────────────────────────────────────────── */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:first-child img {
  height: 320px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(102, 51, 204, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(102, 51, 204, 0.25);
}

/* ─── CONTACT ─────────────────────────────────────────────── */
#contact {
  background: var(--light-bg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item .label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}

.contact-info-item .value {
  font-size: 0.9rem;
  color: var(--dark);
}

.contact-info-item a {
  color: var(--dark);
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--purple);
}

.form-control,
.form-select {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 0;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: transparent;
  transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: none;
  background: transparent;
}

.form-control::placeholder {
  color: #bbb;
  letter-spacing: 0.05em;
}

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn-primary-custom {
  display: inline-block;
  text-decoration: none;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px 42px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary-custom:hover {
  background: var(--purple);
  color: var(--white);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 30px;
}

footer h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

footer p,
footer li {
  font-size: 0.8rem;
  line-height: 1.9;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--purple-light);
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-right: 8px;
  font-size: 0.85rem;
  transition: border-color 0.3s, color 0.3s;
}

.footer-social a:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── SCROLL TO TOP ───────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s;
  font-size: 1rem;
}

#scrollTop:hover {
  background: var(--navy);
}

#scrollTop.visible {
  display: flex;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.15s;
}

.fade-up-delay-2 {
  transition-delay: 0.3s;
}

.fade-up-delay-3 {
  transition-delay: 0.45s;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .navbar-nav {
    padding: 16px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
  }

  .navbar-nav .nav-link::after {
    display: none !important;
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 8px 0 8px 20px !important;
    background: transparent !important;
    min-width: auto !important;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: block !important;
  }

  .nav-dropdown-menu li a {
    padding: 8px 0 !important;
    white-space: normal !important;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    height: 70vh;
    min-height: 450px;
  }

  .hero-caption h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem) !important;
  }

  .btn-hero {
    padding: 10px 28px;
    font-size: 0.65rem;
  }

  .service-hero {
    padding: 120px 0 80px !important;
  }

  .service-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: 1 / 3;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: auto;
  }
}

/* ─── PRIVACY MODAL ───────────────────────────────────────── */
.privacy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 110, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.privacy-overlay.active {
  opacity: 1;
  visibility: visible;
}

.privacy-card {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 32px;
  animation: slideUpModal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpModal {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.privacy-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.privacy-body {
  overflow-y: auto;
  padding-right: 12px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #444;
}

.privacy-body::-webkit-scrollbar {
  width: 6px;
}

.privacy-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.privacy-body::-webkit-scrollbar-thumb {
  background: var(--purple-light);
  border-radius: 10px;
}

.privacy-section {
  margin-bottom: 24px;
}

.privacy-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 10px;
}

.privacy-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.privacy-section li {
  margin-bottom: 4px;
}

.privacy-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.btn-reject-modal {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(26, 26, 110, 0.25);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-reject-modal:hover {
  background: rgba(26, 26, 110, 0.05);
  border-color: var(--navy);
}

.btn-accept-modal {
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(102, 51, 204, 0.2);
}

.btn-accept-modal:hover {
  background: #5227a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 51, 204, 0.35);
}