:root {
  --bg: #000000;
  --dark: #0b0b0b;
  --surface: #111111;
  --muted: #bdbdbd;
  --white: #ffffff;
  --card-border: rgba(255,255,255,0.06);
  --radius: 12px;
  --brand-font: "Playfair Display", serif;
  --ui-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--ui-font);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Links */
a { color: var(--white); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  padding: .75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-solid {
  background: linear-gradient(to right, rgba(255,0,0,0.726), orange, yellow);
  color: var(--white);
  border-radius: 8px;
  padding: .75rem 1.25rem;
  border: none;
  font-weight: 700;
}

/* ---------- HERO  ---------- */
.hero-carousel {
  position: relative;
  width: 100%;             
  height: 100vh;
  overflow: hidden;
}

.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(55%);
  backface-visibility: hidden;
}

.hero-1 {
  background-position: top center ;
}

.hero-2{
  background-position: center center;
}

.hero-3 {
  background-position: bottom centre;
}
 
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
}

/* Mobile viewport fix */
@media (max-width: 768px) {
  .hero-carousel {
    height: 100svh;           
  }
}
  /* Hero slide indicators  */
.hero-carousel .carousel-indicators {
  bottom: 32px;
  z-index: 5;
}

.hero-carousel .carousel-indicators button {
  width: 36px;              
  height: 4px;              
  border-radius: 3px;
  background-color: rgba(255,255,255,0.45);
  border: none;
  margin: 0 7px;
  cursor: pointer;
  transition: background-color 0.3s ease,
              transform 0.25s ease;
}

.hero-carousel .carousel-indicators button:hover {
  background-color: rgba(255,255,255,0.8);
}

.hero-carousel .carousel-indicators .active {
  background-color: #fff;
  transform: scaleX(1.25);
}
/* ---------- SERVICES ---------- */
#services {
  background: var(--white);
  color: #0b0b0b;
  padding: 3.25rem 1rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #f5f5f5;
  color: #e11414cc;
  font-size: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ---------- PRODUCTIONS ---------- */
.production-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: #fff !important;
  padding: 8px 0;
}

.navbar-scrolled {
  background: #000 !important;
  padding: 5px 0;
}

.navbar-logo {
  height: 38px;
}

.navbar-center-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  pointer-events: none;
}
 /* ---------- CONTACT & MAP ---------- */
 #send-message { background: var(--bg); color: var(--white); padding: 3.5rem 1rem 5rem; }
 .send-message {
   background: rgba(255,255,255,0.02);
   border-radius: 12px;
   padding: 1.15rem;
   border: 1px solid rgba(255,255,255,0.04);
 }
 .contact-card p, .contact-card a { color: var(--muted); }
 
 /* Map styling: ensure iframe rounded */
 .contact-map iframe { border: 0; border-radius: 10px; width: 100%; height: 260px; }
 

 .contact-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  background: #fff;
  width: 300px;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.icon {
  width: 60px;
  height: 60px;
  background: #fdecea;
  color: #e74c3c;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.contact-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
 /* ---------- FORM INPUTS ---------- */
 .form-control {
   background:#fff;
   border: 1px solid rgba(255,255,255,0.06);
   color: var(--white);
   border-radius: 8px;
   padding: .65rem .8rem;
 }
 .form-control::placeholder { color: black; }
 .form-control:focus {
   background: white;
   outline: none;
   box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   border-color: rgba(255, 255, 255, 0.958);
 }

 .underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right,rgba(255, 0, 0, 0.726), orange,yellow);
  margin: 10px auto 50px;
  border-radius: 5px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000;
  color: #bdbdbd;
  font-size: 0.9rem;
}
.developer-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.developer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1160px;
}

/* ---------- AOS ---------- */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}
 