:root {
  --text: #ffffff;
  --background: #000000;
  --primary: #ab2525;
  --secondary: #333333;
  --accent: #cccccc;
}
@font-face {
  font-family: erraxosOutline;
  src: url(Exarros_Outline.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333333;
  background: var(--background);
  overflow-x: hidden;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.logo-svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
  transform: rotate(5deg) scale(1.1);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--background) 15%,
    #111111
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="500" cy="500" r="200" fill="none" stroke="%23222222" stroke-width="2" opacity="0.1"/><circle cx="500" cy="500" r="300" fill="none" stroke="%23333333" stroke-width="2" opacity="0.1"/><circle cx="500" cy="500" r="400" fill="none" stroke="%23444444" stroke-width="2" opacity="0.05"/></svg>')
    center/cover;
  animation: rotate 20s linear infinite;
}

.hero-logo {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(107, 107, 107, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(
    45deg,
    var(--primary),
    rgb(from var(--primary) r g b / 0.2)
  );
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 30px rgba(107, 70, 70, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 40px var(--primary);
}

/* Sections */
.section {
  padding: 5rem 0;
  background: #fff;
}

.section:nth-child(even) {
  background: #f4f4f4;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image {
  text-align: center;
}

.dj-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #111111, #222222);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
}

/* Plans Section */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.plan-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 1rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #444444;
  font-weight: bold;
}

/* Past Gigs Section */
.gigs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gig-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gig-card:hover {
  transform: translateY(-5px);
}

.gig-image {
  height: 200px;
  background: linear-gradient(45deg, #222222, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.gig-content {
  padding: 1.5rem;
}

.gig-content h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.gig-content p {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background: #111111;
  color: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
}

.submit-btn {
  background: linear-gradient(
    45deg,
    var(--primary),
    rgb(from var(--primary) r g b / 0.2)
  );
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 5px 30px rgba(107, 70, 70, 0.3);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 40px var(--primary);
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
.colcontainer {
  display: flex;
  flex-direction: row;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
  .hero-content {
    transform: scale(0.6);
  }
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .dj-placeholder {
    width: 200px;
    height: 200px;
    font-size: 2rem;
  }
}
