/* Root color variables */
:root {
  --main-color: #c3154c;
  --secondary-color: #f5f5f5;
  --dark: #1e1e1e;
  --light: #ffffff;
  --accent: #ffc107;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--secondary-color);
  color: var(--dark);
  scroll-behavior: smooth;
}

.text-main {
  color: var(--main-color); /* Uses your defined --main-color */
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-lg {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.border-main {
  border-color: var(--main-color);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* Hero Section */
#hero {
  position: relative;
  min-height: 100vh; /* allow it to grow if needed */
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.herologo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  max-width: 90vw;
  height: auto;
  z-index: 99;
  opacity: 0.95;
  pointer-events: none;
  display: block;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
  font-size: 3rem;
  color: var(--light);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--light);
}

/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 150px; /* was 20px */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 1.8s infinite;
  opacity: 0.9;
  transition: opacity 0.3s;
  text-decoration: none;
}

.scroll-down:hover {
  opacity: 1;
}

.scroll-down svg {
  width: 40px;
  height: 40px;
  stroke: var(--light);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}


/* Sticky Menu */
#sticky-menu {
  background: #111;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: all 1.0s ease;
}

#sticky-menu.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  background: #111;
  height: 80px; /* match your actual menu height */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



/* Nav Container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo img {
  height: 50px;
}

/* ─── Hamburger Button (Mobile) ───────────────────────────── */
#hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── Navigation Links ────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a,
.dropdown-toggle {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: #f06;
}

/* ─── Dropdown Wrapper ────────────────────────────────────── */
.dropdown {
  position: relative;
}

/* ─── Dropdown Menu (Desktop Default Hidden) ─────────────── */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #333;
}

/* ─── Desktop Hover Behaviour ─────────────────────────────── */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ─── Mobile Navigation Styles ────────────────────────────── */
@media (max-width: 768px) {
  #hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #111;
    padding: 1rem;
    display: none;
    z-index: 99;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: none;
    box-shadow: none;
    padding-left: 1rem;
    flex-direction: column;
  }

  .dropdown.show .dropdown-menu {
    display: flex;
  }
}

/* Content Sections */


.services-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form input, form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form button {
  background: var(--main-color);
  color: var(--light);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #a00f3b;
}

footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 2rem 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--dark);
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  #hamburger {
    display: block;
  }
}

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .grid-2-cols {
    grid-template-columns: 1fr; /* Stack columns vertically */
  }

  .intro-text-wrapper {
    margin-top: 2rem;
    text-align: left;
  }

  .service-tiles {
    grid-template-columns: repeat(2, 1fr); /* Keep 2x2 tile layout on mobile */
  }
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2x2 */
  gap: 1rem;
  justify-items: center;
}

@media (max-width: 480px) {
  .service-tiles {
    grid-template-columns: 1fr; /* For very small screens (phones) */
  }
}

  .intro-text {
    max-width: 90%;
  }
}

.service-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
 
.tile {
  position: relative;
  text-align: center;
}

.tile img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.tile h3 {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
}

  .service-tiles {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .tile h3 {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }

  .intro-text {
    text-align: left;
  }

  .intro-text img {
    width: 150px;
    height: auto;
    margin: 1rem auto 0;
    display: block;
  }
}
.dj-photo {
  width: 180px;
  border-radius: 12px;
  margin-top: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.content-section {
  padding: 4rem 1rem;
}

.intro-text-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.intro-text {
  flex: 1 1 500px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}

.intro-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-image {
  flex: 0 0 300px;
  max-width: 100%;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive mobile adjustment */
@media (max-width: 768px) {
	.intro-text-wrapper {
	  max-width: 1100px;
	  margin: 2rem auto;
	  padding: 1rem;
	}

	.intro-text {
	  text-align: left;
	  font-size: 1rem;
	  line-height: 1.7;
	}

	.intro-text h2 {
	  font-size: 2rem;
	  font-weight: 700;
	  margin-bottom: 1rem;
	}
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cc0044;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  color: #facc15; /* gold */
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}

footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  max-width: 100px;
}

.footer-contact {
  text-align: right;
  min-width: 250px;
}

.footer-contact a {
  color: #f06;
  text-decoration: none;
}

.footer-social a {
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
}

.footer-social svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}

.djep-wrapper * {
  all: revert;
  font-family: inherit;
  box-sizing: border-box;
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.tile-link {
  text-decoration: none;
  color: inherit;
}

.tile {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.tile:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.dj-photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}

.dj-photo-hover {
  width: 250px; /* Resize to smaller width */
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dj-photo-hover:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

#about {
  padding-top: 80px; /* Or try 60px if that's too much */
}
