/* styles.css — mobile-first, modern, accessible, animated */

/* Variables */
:root {
  /* EAZI Music Premium Palette */
  --primary-deep-blue: #0B1A33;
  /* Deep Midnight Blue - Primary */
  --secondary-gold: #D4AF37;
  /* Gold Accent - Secondary/Accent */
  --highlight-coral: #E85C4A;
  /* Vibrant Coral Red - Highlight/CTA */
  --text-primary: #2B2B2B;
  /* Charcoal Gray - Main Text */
  --text-secondary: #5A5A5A;
  /* Slate Gray - Subtext/Muted */
  --bg-light: #F9F7F4;
  /* Ivory White - Light Background */
  --bg-dark: #0B1A33;
  /* Use Primary for dark sections like Footer/Hero */
  --optional-accent-green: #2E8B57;
  /* Emerald Green */

  /* Existing utility variables updated */
  --bg: var(--primary-deep-blue);
  --card: #0E1F3B;
  /* Slightly lighter than deep blue for cards */
  --muted: #BDBDBA;
  /* Lighter shade of Slate Gray for dark background contrast */
  --accent: var(--secondary-gold);
  --accent-2: var(--highlight-coral);
  /* Using coral for gradient emphasis */
  --white: #FAFAFF;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.03);
  --radius: 14px;
  --max-width: 1100px;
  --shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reset / base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%
}

body.uf-body {
  margin: 0;
  /* Dark Blue Gradient for main background */
  background: linear-gradient(180deg, var(--primary-deep-blue) 0%, #09101a 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  font-size: 15px;
}

/* Container */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(6px);
  /* Dark Blue Gradient for a premium header */
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.7), rgba(8, 10, 14, 0.25));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white)
}

.brand img.logo {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 11px
}

/* Hamburger */
.hamburger {
  background: none;
  border: 0;
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 100
}

.hamburger span {
  display: block;
  height: 3px;
  width: 22px;
  background: var(--white);
  border-radius: 3px;
  opacity: 0.9;
  transition: all 0.25s ease
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px)
}

/* Nav (desktop) */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center
}

.nav a {
  color: var(--white);
  text-decoration: none;
  padding: 9px;
  border-radius: 10px
}

/* Primary Button: Gold with white text */
.nav a.btn-primary {
  background: var(--secondary-gold);
  color: var(--text-primary);
  /* Dark text on light gold button */
  padding: 9px 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Primary Button Hover: Coral Red with white text (from Style Guide) */
.nav a.btn-primary:hover {
  background: var(--highlight-coral);
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--white)
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06)
}

.muted {
  color: var(--muted);
  font-size: 13px
}

/* Mobile nav behavior */
@media(max-width:719px) {
  .hamburger {
    display: flex
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: var(--primary-deep-blue);
    /* Solid Deep Blue mobile background */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    padding: 40px 20px;
    transition: right 360ms cubic-bezier(.22, .9, .2, 1);
    z-index: 95;
  }

  .nav.open {
    right: 0
  }

  .nav ul {
    flex-direction: column;
    gap: 12px
  }
}

/* Hero */
.hero {
  padding: 2.2rem 0;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/work4.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  filter: blur(6px);
  transform: scale(1.03);
  z-index: 0
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.4rem;
  align-items: start;
  position: relative;
  z-index: 2;
  padding: 1rem 0
}

.hero-left h1 {
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.5px
}

.lead {
  color: var(--muted);
  margin-bottom: 1rem
}

.hero-cta {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem
}

.badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0
}

.badges li {
  background: var(--glass);
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted)
}

/* Profile card */
.profile-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 12px;
  padding: 0.6rem;
  box-shadow: var(--shadow)
}

.profile-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px
}

.card-body {
  padding: 0.6rem
}

/* Section spacing & separators (increased padding) */
.section {
  padding: 3.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative
}

.section:first-of-type {
  border-top: none
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  /* Gold to Coral gradient for separator */
  background: linear-gradient(90deg, var(--secondary-gold), var(--highlight-coral));
  border-radius: 10px;
  transform: translate(-50%, -50%)
}

/* Section headers spacing */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem
}

.section-header h2 {
  margin: 0;
  font-size: 1.2rem
}












/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.card-grid .service-card {
  background: var(--card);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

/* Service Video Styling */
.service-card video {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* Card Text */
.service-card h3 {
  margin: 0;
  padding: 0.7rem 0 0 0.7rem;
}

.service-card p {
  padding: 0 0.7rem 1rem 0.7rem;
  color: var(--muted);
}







/* ==== Elias Zobo" IMAGE CAROUSEL ==== */
.carousel-container {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card);
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.95);
  transition: transform 1s ease-in-out;
}

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

.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments for smaller devices */
@media (max-width: 768px) {
  .carousel-container {
    height: 180px;
  }
}



















/* Gallery preview / marquee rows (time-based JS) */
.gallery-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1rem
}

.marquee-row {
  --gap: 12px;
  display: flex;
  gap: var(--gap);
  overflow: hidden;
  padding: 10px 0;
  border-radius: 10px;
  align-items: center;
  will-change: transform
}

.marquee-row .item {
  min-width: 220px;
  border-radius: 10px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden
}

.marquee-row .item img,
.marquee-row .item video {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 10px
}

.marquee-row.reversed {
  transform: scaleX(-1)
}

.marquee-row.reversed .item {
  transform: scaleX(-1)
}




/* Reviews List Grid for the main page */
.reviews-list {
  /* Implement the two-column layout and spacing */
  display: grid;
  /* Two equal-width columns */
  grid-template-columns: 1fr 1fr;
  /* Increased gap between cards (rows and columns) */
  gap: 30px;
  padding: 10px 0;
}

/* Review Card - Shorter Rectangle and Centralized Content */
.review-card {
  /* Reset layout properties from the old carousel style */
  min-width: unset;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow);

  /* Use flexbox to structure and center content */
  display: flex;
  flex-direction: column;
  /* Stack image, name, and text vertically */
  align-items: center;
  /* Center content horizontally */
  text-align: center;
  /* Center the text */
  height: 100%;
  /* Ensures cards in the same grid row are the same height */
}

/* Review Card Image - Centralized and Reduced Size */
.review-card img {
  /* Reduced size for a short, compact card */
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  /* Remove old float and adjust margin for centering */
  float: none;
  margin: 0 0 10px 0;
  /* Add bottom margin for space below the image */
}

.review-card h4 {
  margin: 0 0 5px 0;
  /* Adjusted margin */
}

.review-card p {
  color: var(--muted);
  margin-top: 0;
  /* Remove clear:both as float is gone and text is centered */
  /* clear: both; */
  font-size: 14px;
  text-align: center;
}

/* Media Query: Switch to single column on smaller screens for better readability */
@media (max-width: 768px) {
  .reviews-list {
    grid-template-columns: 1fr;
    /* Single column on mobile/tablet */
  }
}




/* Contact and forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem
}

.contact-form label {
  display: block;
  color: var(--white);
  margin-bottom: 8px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--white)
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px
}

/* Styling for the Send Message Button */
.contact-form button[type="submit"] {
  /* Layout and Positioning */
  display: block;
  /* Makes the button take up the full width */
  width: 100%;
  margin-top: 20px;
  /* Space above the button */

  /* Appearance - Use Coral Red for CTA */
  background-color: var(--highlight-coral);
  color: var(--white);
  padding: 12px 20px;
  border: none;
  border-radius: 10px;

  /* Typography */
  font-size: 16px;
  font-weight: 600;
  /* Bolder text for emphasis */
  text-transform: uppercase;
  /* Optional: Makes the text stand out */
  letter-spacing: 0.5px;

  /* Interaction */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover and Focus States for Interaction - Use Gold on hover */
.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus {
  background-color: var(--secondary-gold);
  color: var(--text-primary);
  /* Dark text on light gold button */
  transform: translateY(-2px);
  /* Optional: Gives a slight "lift" effect */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Active State (while clicking) */
.contact-form button[type="submit"]:active {
  transform: translateY(0);
}

/* Footer (premium) */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  /* Deep Midnight Blue background for Footer */
  background: var(--primary-deep-blue);
  backdrop-filter: blur(8px)
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  text-align: center;
  padding-bottom: 12px
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px
}

.footer-links a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.25s
}

.footer-links a:hover {
  color: var(--secondary-gold)
}

/* Gold hover on footer links */
.map-wrap {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03)
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0.8rem
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  color: var(--white);
  text-decoration: none;
  font-weight: 700
}

.social-icons a:hover {
  background: var(--secondary-gold);
  color: var(--text-primary);
  transform: translateY(-3px)
}

/* Gold hover on social icons */

/* Footer grid on larger screens */
@media(min-width:720px) {
  .hero-inner {
    grid-template-columns: 1fr 360px
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr)
  }

  .contact-grid {
    grid-template-columns: 1fr 320px
  }

  .nav {
    display: flex
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left
  }

  /* NEW RULE: Push hero-right content to the top on desktop/larger screens */
  .hero-right {
    position: sticky;
    top: 2rem;
  }
}


/* Smooth animations */
.fade-in {
  animation: fadeIn 900ms ease both
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* Utilities */
.text-center {
  text-align: center
}

.hidden {
  display: none
}












/* ===== GALLERY PAGE DARK FIX ===== */
.gallery-container {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #09101a 100%);
  color: var(--white);
}

/* Section title for gallery page */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  /* Gold to Coral Gradient */
  background: linear-gradient(90deg, var(--secondary-gold), var(--highlight-coral));
  /* WebKit/Older Browser Properties */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Standard Modern Browser Properties */
  background-clip: text;
  color: transparent;
}

/* New: gallery-section and subtitle styling */
.gallery-section {
  margin-bottom: 4rem;
  padding: 0 0.2rem;
}

.gallery-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  /* Gold to Coral Gradient */
  background: linear-gradient(90deg, var(--secondary-gold), var(--highlight-coral));
  
  /* WebKit/Older Browser Properties */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Standard Modern Browser Properties */
  background-clip: text; /* Standard property for clipping the background to the text shape */
  color: transparent;    /* Standard property to make the foreground text transparent */
  
  text-align: center;
}

.gallery-intro {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 1.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

/* existing gallery-grid but keep it consistent */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}






/* gallery items */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  transition: transform 0.35s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(8px);
  will-change: transform, opacity;
}








/* fade-in for items when they are added */
.gallery-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced hover effect for a more dramatic, premium feel */
.gallery-item:hover {
  transform: translateY(-8px) rotateZ(0.5deg);
  /* Lift and slight rotation */
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.6);
  /* Deeper shadow */
}

.gallery-item img,
.gallery-item video {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

/* overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Navy/Black gradient for premium feel */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  color: #fff;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

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

  .gallery-item img,
  .gallery-item video {
    height: 180px;
  }
}




















.modal {
  background: rgba(0, 0, 0, 0.9);
}

/* ====== Gallery Modal ====== */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.gallery-modal.hidden {
  display: none;
}

.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.gallery-modal video,
.gallery-modal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-modal #modalCaption {
  color: #fff;
  margin-top: 10px;
}














































/* semi-transparent backdrop with blur */
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.6), rgba(3, 7, 13, 0.6));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  transition: opacity 280ms ease;
  opacity: 1;
}

/* shell holds content centered with subtle glass */
.gallery-modal-shell {
  position: relative;
  width: 94%;
  max-width: 980px;
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.7);
  z-index: 1000000;
  transform-origin: center center;
  animation: modalZoomIn 260ms cubic-bezier(.2, .9, .2, 1);
}

/* modal content area */
.gallery-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 6px;
}

/* media area */
.modal-media {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* caption */
.modal-caption {
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
}

/* close button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000001;
  padding: 6px;
}

/* control buttons */
.modal-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
}

.control-btn:active {
  transform: translateY(1px);
}

/* prev/next outside shell (arrow style) */
#prevBtn,
#nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--white);
  padding: 10px;
  border-radius: 50%;
  z-index: 1000002;
}

















/* Recommended CSS for the video element in the modal */
#modalMedia video {
  /* Ensures the video is never wider than its container */
  max-width: 100%;
  /* Allows the height to scale freely based on the video's aspect ratio */
  height: auto;
  /* This is CRUCIAL: it scales the video to fit within the bounds 
       of its container while preserving its aspect ratio. */
  object-fit: contain;
}

/* Also ensure your modal media container is flexible */
#modalMedia {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Give it a fixed or viewport-relative height */
  max-height: 80vh;
  width: 100%;
}





























#prevBtn {
  left: calc(50% - 520px);
}

/* positions relative to center shell width */
#nextBtn {
  right: calc(50% - 520px);
}

/* on smaller screens move arrows inward */
@media (max-width: 900px) {
  #prevBtn {
    left: 8px;
  }

  #nextBtn {
    right: 8px;
  }
}

/* modal open/close animations */
@keyframes modalZoomIn {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Utility classes */
.fade-in {
  animation: fadeIn 900ms ease both
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.text-center {
  text-align: center
}

.hidden {
  display: none;
}

/* Smooth transitions */
* {
  transition: background 180ms ease, color 160ms ease
}

/* NEW RULES: Text size and alignment for the service items in the badges list */
.badges .service-item {
  /* Match the width of your image card (350px) */
  max-width: 350px;
  /* Center the block and add space below */
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--white);
  /* Ensure color is readable */
}

.badges .service-item li {
  list-style: none;
  /* Remove default list bullet */
  font-size: 1.1rem;
  /* Increased size for main text */
  line-height: 1.6;
  text-align: center;
  padding: 0 0.5rem;
}

.badges .service-item li strong {
  font-size: 1.25rem;
  /* Makes the title stand out */
  display: block;
  margin-bottom: 0.2rem;
}

/* Contact and forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem
}

.contact-form label {
  display: block;
  color: var(--white);
  margin-bottom: 8px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--white)
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px
}

/* Services animated */
.services-animated {
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-item {
  /* This max-width is still too large for the layout, but the more specific .badges .service-item rule overrides it. */
  max-width: 1000px;
  text-align: center;
  /* Changed color from #535050 to inherit/use the more specific rule for clarity */
  color: var(--white);
}

.service-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-image {
  width: 350px;
  height: 350px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatUpDown 5s ease-in-out infinite;
}

.service-image:hover img {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-video-section {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  /* Adjust to your liking */
  pointer-events: none;
}

.about-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 1rem;
  /* Use a slight dark blue tint for the overlay */
  background: rgba(11, 26, 51, 0.4);
  color: white;
}

.about-overlay h2,
.about-overlay p {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* ===== GALLERY PREVIEW ===== */
.gallery-rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

.marquee-row {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: scroll-left 45s linear infinite;
}

.marquee-row.reversed .marquee-track {
  animation: scroll-right 70s linear infinite;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.gallery-thumb img,
.gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Optional hover effect */
.gallery-thumb:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-thumb {
    width: 160px;
    height: 110px;
  }

  .gallery-item img,
  .gallery-item video {
    height: 180px;
  }
}

/* Smooth animations */
.fade-in {
  animation: fadeIn 900ms ease both
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* Utilities */
.text-center {
  text-align: center
}

.hidden {
  display: none
}



































/* ===== MOBILE-FRIENDLY VIDEO FIXES - append to end of styles.css ===== */

/* Make inline gallery thumbnails responsive and avoid cropping */
.gallery-item video,
.gallery-video,
.gallery-thumb video {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  /* show full video without cropping */
  display: block;
  border-radius: 12px;
}

/* Ensure the modal video fills container while preserving aspect ratio */
.modal-video,
.gallery-modal video,
#modalMedia video {
  width: 100% !important;
  height: auto !important;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* Make the gallery-item use intrinsic aspect ratio to avoid jumping sizing */
.gallery-item {
  aspect-ratio: 16 / 9;
  /* keeps consistent thumbnail sizing; adjust as needed */
}

/* On very small screens prefer a slightly taller ratio but keep it contained */
@media (max-width: 480px) {
  .gallery-item {
    aspect-ratio: 12 / 7;
  }

  .gallery-item video,
  .gallery-item img {
    height: auto;
  }

  .gallery-item .overlay {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .gallery-modal-content {
    width: 96%;
    padding: 8px;
  }

  #modalMedia {
    max-height: 72vh;
  }
}

/* Fallback for older browsers without aspect-ratio support */
@supports not (aspect-ratio: 1/1) {
  .gallery-item {
    min-height: 150px;
  }

  @media (max-width: 480px) {
    .gallery-item {
      min-height: 140px;
    }
  }
}

/* Helpful utility to force videos to show controls and playsinline on iOS */
.gallery-modal video,
.gallery-item video {
  -webkit-playsinline: true;
  /*playsinline: true;*/
}

/* Avoid overflow caused by border-radius on some Android browsers */
.gallery-item video {
  background: #000;
}

/* End of mobile-friendly video fixes */










.language-switcher {
  position: fixed;
  top: 115px;
  right: 15px;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  z-index: 1000;
  transition: all 0.3s ease;
}

.language-switcher a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.language-switcher a:hover {
  background: #007BFF;
  color: white;
  box-shadow: 0 2px 12px rgba(0, 123, 255, 0.4);
}

.language-switcher a.active {
  background: #007BFF;
  color: white;
  pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .language-switcher {
    top: 10px;
    padding: 4px 8px;
    gap: 6px;
  }
  
  .language-switcher a {
    font-size: 12px;
    padding: 4px 8px;
  }
}



























/* ============================================================
   EAZI MUSIC — PREMIUM GLASSMORPHISM OVERRIDES
   (Safe to append – does NOT break existing code)
   ============================================================ */

/* ---------- Premium Palette Override ---------- */
:root {
  --primary-onyx: #05070A;
  --secondary-gold: #C5A059;
  --gold-gradient: linear-gradient(135deg, #F9E4B7 0%, #C5A059 50%, #8E6D31 100%);
  --accent-coral: #FF4D31;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-lg: 24px;
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.55);
}

/* ---------- Global Background Upgrade ---------- */
body.uf-body {
  background: radial-gradient(circle at top right, #0B1A33 0%, var(--primary-onyx) 100%);
}

/* ---------- Premium Gradient Headings ---------- */
h1, h2, .brand-text strong {
  background: linear-gradient(to right, #FFFFFF 25%, var(--secondary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---------- Floating Glass Header ---------- */
.site-header {
  position: fixed;
  top: 15px;
  left: 5%;
  width: 90%;
  backdrop-filter: blur(15px);
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: var(--shadow-premium);
  z-index: 1000;
}

.header-inner {
  padding: 0.5rem 2rem;
}

/* ---------- VIP Service Cards ---------- */
.service-card {
  background: var(--glass) !important;
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-lg) !important;
  transition: transform 0.4s cubic-bezier(.175,.885,.32,1.275),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.18);
}

.service-card img,
.service-card video {
  border-radius: 16px;
  filter: brightness(0.9);
}

.service-card:hover img,
.service-card:hover video {
  filter: brightness(1.1);
}

/* ---------- Premium CTA Buttons ---------- */
.btn-primary,
.nav a.btn-primary {
  background: var(--gold-gradient) !important;
  color: #000 !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px !important;
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
}

.btn-primary:hover,
.nav a.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.55);
  filter: brightness(1.1);
}

/* ---------- Profile Card Upgrade ---------- */
.profile-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

/* ---------- Cinematic Hero Stage Glow ---------- */
.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.12) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: stage-glow 8s infinite ease-in-out;
}

@keyframes stage-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

/* ============================================================
   END OF PREMIUM OVERRIDES
   ============================================================ */













/* ============================================================
   DARKER + WARMER BACKGROUND (SUBTLE RED UNDERTONE)
   ============================================================ */

/* Global body background refinement */
body.uf-body {
  background:
    radial-gradient(
      circle at top left,
      rgba(120, 20, 30, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(10, 10, 10, 0.9) 0%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #06070B 0%,
      #05050A 100%
    );
}

/* Section backgrounds inherit warmth */
.section,
.hero,
.site-footer {
  background-color: transparent;
}

/* Glass surfaces slightly warmer */
.profile-card,
.service-card,
.site-header,
.gallery-thumb,
.review-card {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );
}






/* ============================================================
   HEADER POLISH & FIX
   ============================================================ */

/* Improve header proportions */
.site-header {
  padding: 10px 0;
}

/* Improve internal alignment */
.header-inner {
  min-height: 64px;
  align-items: center;
}

/* Nav links breathing space */
.nav a {
  padding: 10px 16px;
}

/* Contact button refinement */
.nav a.btn-primary {
  padding: 12px 22px !important;
  font-size: 0.85rem;
}

/* Language switcher alignment fix */
.language-switcher {
  top: 110px;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Match switcher buttons to site palette */
.language-switcher a {
  color: var(--white);
}

.language-switcher a:hover,
.language-switcher a.active {
  background: var(--gold-gradient);
  color: #000;
}








/* ============================================================
   HEADER GLASS CAPSULE — PRECISION FIX
   ============================================================ */

/* Hard reset problematic effects */
.site-header {
  padding: 0;                 /* remove inflation */
  height: 68px;               /* fixed capsule height */
  border-radius: 999px;       /* true pill */
  backdrop-filter: none;      /* stop blur bleed */
  background: transparent;    /* we’ll build glass correctly */
  box-shadow: none;
  overflow: visible;
}

/* Inner glass shell (this is the key) */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.02)
    ),
    rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 18px 45px rgba(0,0,0,0.6);
  z-index: -1;
}

/* Content alignment inside capsule */
.header-inner {
  height: 68px;
  padding: 0 28px;
  display: flex;
  align-items: center;
}

/* Nav items vertical centering */
.nav a {
  line-height: 1;
  padding: 10px 14px;
}

/* Contact button fits capsule */
.nav a.btn-primary {
  padding: 10px 20px !important;
  height: auto;
}

/* Prevent blur halo overflow on small screens */
@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    height: 64px;
    padding: 0 20px;
  }
}















/* ============================================================
   LANGUAGE SWITCHER — CAPSULE INTEGRATION
   ============================================================ */

.language-switcher {
  position: static;
  display: flex;
  gap: 6px;
  margin-left: 20px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.language-switcher a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.language-switcher a.active,
.language-switcher a:hover {
  background: var(--gold-gradient);
  color: #000;
}














/* ============================================================
   GOLDEN RATIO CAPSULE DIMENSIONS
   ============================================================ */

.site-header {
  height: 62px;
}

.header-inner {
  height: 62px;
  padding: 0 32px;
}

.nav a {
  padding: 8px 14px;
  font-size: 0.85rem;
}


















/* ============================================================
   EDGE LIGHT (SCROLL-ACTIVE)
   ============================================================ */

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow:
    inset 0 1px 0 rgba(197,160,89,0.35),
    0 0 0 rgba(0,0,0,0);
}

.site-header.scrolled::after {
  opacity: 1;
}




/* ============================================================
   SHRINK ON SCROLL
   ============================================================ */

.site-header {
  transition:
    height 0.35s ease,
    transform 0.35s ease;
}

.site-header.scrolled {
  height: 54px;
}

.site-header.scrolled .header-inner {
  height: 54px;
}





/* ============================================================
   HERO TOP SPACING (UNDER FLOATING HEADER)
   ============================================================ */

/* Desktop */
.hero,
.hero-section {
  padding-top: 140px; /* increase this value if needed */
}

/* If your text is wrapped inside a content container */
.hero-content {
  margin-top: 0; /* reset if any margin exists */
}

/* Tablet */
@media (max-width: 1024px) {
  .hero,
  .hero-section {
    padding-top: 120px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero,
  .hero-section {
    padding-top: 110px;
  }
}
















































































































































































