/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary-gold: #f4d03f;
  --primary-gold-dark: #d4ac0d;
  --primary-gold-light: #f8e071;
  --bg-dark: #0a0a0a;
  --bg-dark-secondary: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-card-hover: #252525;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  --border-color: #333333;
  --border-color-light: #404040;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 72px;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

a {
  transition: all 0.3s ease;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0.3;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  color: var(--primary-gold-light);
  letter-spacing: -0.01em;
}

/* Navigation Styles */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--primary-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

nav ul li a:hover {
  color: var(--text-primary);
  background-color: rgba(244, 208, 63, 0.08);
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

nav ul li a.active {
  color: var(--primary-gold);
  background-color: rgba(244, 208, 63, 0.1);
}

nav ul li a.active::after {
  transform: scaleX(1);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 140px 40px 120px;
  background: url('mothcastmedia_1920_600.jpg') no-repeat center center/cover;
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 10, 10, 0.6) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  z-index: 2;
}

.hero > * {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 0.8s ease-out;
  max-width: 900px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary-gold);
  display: inline-block;
}

.hero p {
  font-size: 20px;
  margin: 0 0 40px;
  color: var(--text-secondary);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  line-height: 1.6;
  font-weight: 400;
}

.hero .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--primary-gold);
  text-decoration: none;
  border-radius: 8px;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(244, 208, 63, 0.3);
  letter-spacing: 0.02em;
}

.hero .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(244, 208, 63, 0.5);
  background: var(--primary-gold-light);
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: var(--spacing-xl) 60px;
  background: var(--bg-dark-secondary);
  max-width: 1400px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 12px 40px rgba(244, 208, 63, 0.15);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.feature:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Content Section */
.content {
  padding: var(--spacing-xl) 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.03em;
}

.content h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 48px 0 24px;
  letter-spacing: -0.02em;
}

.content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  margin-top: 16px;
}

.content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.content ul {
  margin: 20px 0 28px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.content ul li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.content article {
  background: var(--bg-card);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

/* Stats Section */
.stats-section {
  padding: var(--spacing-xl) 60px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services & Products Sections */
.services, .products, .deejays {
  padding: var(--spacing-xl) 60px;
  background-color: var(--bg-dark-secondary);
}

.services h1, .products h1, .deejays h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.03em;
}

.service, .product, .deejay {
  display: flex;
  align-items: center;
  margin: 32px auto;
  padding: 40px;
  max-width: 1000px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service:hover, .product:hover, .deejay:hover {
  transform: translateX(8px);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.12);
}

.service img, .product img, .deejay img {
  width: 100px;
  height: 100px;
  margin-right: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.service:hover img, .product:hover img, .deejay:hover img {
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.service div, .deejay div {
  text-align: left;
  flex: 1;
}

.service h3, .product h3, .deejay h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service p, .product p, .deejay p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  padding: var(--spacing-xl) 60px;
  background: var(--bg-dark);
}

.pricing h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.03em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 12px 40px rgba(244, 208, 63, 0.15);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: var(--primary-gold);
  border-width: 2px;
  transform: scale(1.03);
}

.pricing-card.featured::before {
  transform: scaleX(1);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 24px 0;
  line-height: 1;
}

.pricing-card .price span {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  margin: 32px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--primary-gold);
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
}

/* Booking Form */
.booking-section {
  padding: var(--spacing-xl) 60px;
  background-color: var(--bg-dark-secondary);
}

.booking-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
}

.booking-form {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background-color: var(--bg-dark-secondary);
  box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--primary-gold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  letter-spacing: 0.02em;
  font-family: var(--font-primary);
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--primary-gold-light);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.3);
}

/* Contact Form */
.container {
  max-width: 700px;
  margin: 50px auto;
  background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 40px;
}

.container h1 {
  text-align: center;
  color: #f4d03f;
  margin-bottom: 30px;
  font-size: 36px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form label {
  font-weight: bold;
  color: #f4d03f;
  font-size: 16px;
}

form input,
form textarea,
form button {
  font-size: 16px;
  padding: 12px 15px;
  border: 2px solid #444;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #ffffff;
  transition: all 0.3s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #f4d03f;
  box-shadow: 0 0 10px rgba(244, 208, 63, 0.2);
}

form textarea {
  resize: vertical;
}

form button {
  background: linear-gradient(135deg, #f4d03f 0%, #d4ac0d 100%);
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.5);
}

/* Video Styles */
.responsive-video {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 60px 60px 30px;
  margin-top: var(--spacing-xl);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  margin: 0;
}

.social-links a:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li {
    margin: 5px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .content {
    padding: 40px 20px;
  }

  .content h1 {
    font-size: 32px;
  }

  .service, .product, .deejay {
    flex-direction: column;
    text-align: center;
  }

  .service img, .product img, .deejay img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .service div, .deejay div {
    text-align: center;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .booking-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .content h1 {
    font-size: 28px;
  }

  .container {
    padding: 25px;
  }
}


