/* Variables */
:root {
  --rainbow-gradient: linear-gradient(-90deg,
    #adfbda 0,
    #35c3ff 30%,
    #fda399 50%,
    #76d880 70%,
    #ebf38b 90%,
    #adfbda 100%
  );

  /* background-image: var(--rainbow-gradient, #fff); */
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Roboto", "Aria", sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 20px;
  padding-top: 3em;
}

/* Header */
header {
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
  background-size: 400% 400%;
  animation: gradientShift 4s ease infinite;
  padding: 2px;
  margin-bottom: 3em;
  border-radius: 20px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header-content {
  background: #1a1a2e;
  padding: 2rem;
  text-align: center;
  position: relative;
  border-radius: 20px;
}

.header-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 3s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 2rem; */
  margin-top: 1rem;
  flex-direction: column;
}

.logo-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vinyl Record with Headphones */
.vinyl-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.vinyl-record {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a365d, #2d5a87);
  border-radius: 50%;
  position: relative;
  border: 3px solid #4a90a4;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
  animation: spin 6s linear infinite;
  overflow: hidden;
}

.vinyl-record::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #ff8c00;
  border-radius: 50%;
  border: 2px solid #ff6b00;
  z-index: 3;
}

.vinyl-record::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  z-index: 4;
}

/* Radial lines for vinyl record */
.vinyl-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vinyl-lines::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 255, 0.4) 20%,
    rgba(0, 255, 255, 0.6) 80%,
    transparent 100%
  );
  transform-origin: bottom center;
  transform: translate(-50%, -100%);
  box-shadow: 0 0 0 0 currentColor, 0 0 0 0 currentColor;
}

.vinyl-lines::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 255, 0.4) 20%,
    rgba(0, 255, 255, 0.6) 80%,
    transparent 100%
  );
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(90deg);
}

.radial-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 45%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 255, 0.3) 30%,
    rgba(0, 255, 255, 0.5) 70%,
    transparent 100%
  );
  transform-origin: bottom center;
  transform: translate(-50%, -100%);
}

.line-1 { transform: translate(-50%, -100%) rotate(30deg);  }
.line-2 { transform: translate(-50%, -100%) rotate(60deg);  }
.line-3 { transform: translate(-50%, -100%) rotate(120deg); }
.line-4 { transform: translate(-50%, -100%) rotate(150deg); }
.line-5 { transform: translate(-50%, -100%) rotate(210deg); }
.line-6 { transform: translate(-50%, -100%) rotate(240deg); }
.line-7 { transform: translate(-50%, -100%) rotate(300deg); }
.line-8 { transform: translate(-50%, -100%) rotate(330deg); }

.vinyl-grooves {
  position: absolute;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.groove1 {
  width: 80px;
  height: 80px;
}
.groove2 {
  width: 60px;
  height: 60px;
}
.groove3 {
  width: 40px;
  height: 40px;
}

.headphones {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 170px;
  height: 170px;
  pointer-events: none;
}

.headphone-band {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 149px;
  height: 90px;
  border: 6px solid #00ffff;
  border-radius: 160px 160px 0 0;
  border-bottom: none;
  /* transform: rotate(-10deg); */
  /* box-shadow:
    0 0 10px rgba(0,255,255,0.3),
    inset 0 0 10px rgba(0,255,255,0.1); */
  /* background: linear-gradient(180deg,
    rgba(0,255,255,0.1) 0%,
    rgba(0,255,255,0.05) 50%,
    transparent 100%); */
}

.headphone-band::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -8px;
  /* right: -3px; */
  /* bottom: 50%; */
  border: 4px solid rgba(255, 0, 255, 0.65);
  border-radius: 158px 158px 0 0;
  border-bottom: none;
  width: 158px;
  height: 90px;
}

.headphone-left,
.headphone-right {
  position: absolute;
  width: 28px;
  height: 38px;
  background: linear-gradient(45deg, #1a365d, #2d5a87);
  border-radius: 15px;
  border: 2px solid rgba(255, 0, 255, 0.65);
  /* box-shadow:
    0 0 8px rgba(0,255,255,0.3),
    inset 0 0 5px rgba(0,255,255,0.1); */
}

.headphone-left {
  top: 64px;
  left: -6px;
  transform: rotate(-20deg);
  border-right: 8px solid orange;
}

.headphone-right {
  top: 64px;
  right: -6px;
  transform: rotate(20deg);
  border-left: 8px solid orange;
}

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

/* Musical Notes scattered around */
.header-notes {
  position: absolute;
  color: rgba(255, 0, 255, 0.6);
  font-size: 1.2rem;
  animation: float 4s ease-in-out infinite;
}

.note-1 { /* top left */
  top: 30px;
  left: 70px;
  animation-delay: 0s;
  color: #ff00ff;
}
.note-2 { /* top right */
  top: 60px;
  right: 60px;
  animation-delay: 1s;
  color: #00ffff;
}
.note-3 { /* bottom left */
  bottom: 20px;
  left: 30px;
  animation-delay: 2s;
  color: #ffff00;
}
.note-4 { /* bottom right */
  bottom: 30px;
  right: 50px;
  animation-delay: 3s;
  color: #ff00ff;
}

/* Stars */
.star {
  position: absolute;
  color: #ffff00;
  font-size: 1.5rem;
  animation: twinkle 2s ease-in-out infinite;
}

.star-1 { /* top left */
  top: 40px;
  left: 30px;
  animation-delay: 0s;
}
.star-2 { /* top right */
  top: 20px;
  right: 20px;
  animation-delay: 1s;
}
.star-3 { /* bottom left */
  bottom: 50px;
  left: 60px;
  animation-delay: 2s;
}
.star-4 { /* bottom right */
  bottom: 10px;
  right: 80px;
  animation-delay: 1.5s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.logo-text {
  text-align: center;
}

.dj-title {
  font-size: 4rem;
  font-weight: 500;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
  /* margin-bottom: 1rem; */
  position: relative;
  z-index: 2;

}

.tagline {
  font-size: 1.2rem;
  color: #68f0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  text-wrap-style: pretty;
}

/* Main Content */
.hero {
  text-align: center;
  padding-bottom: 0.5rem;
  background: rgba(255, 0, 255, 0.05);
  border-radius: 20px;
  margin-bottom: 3em;
  border: 2px solid rgba(255, 0, 255, 0.5);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #deea5a;
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
  font-weight: 500;
  letter-spacing: 0.7px;
}

.hero p {
  font-size: 1.2rem;
  color: #68f0ff;
  margin-bottom: 1.5rem;
  text-wrap-style: pretty;
  padding: 0 8px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: #1a1a2e;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

/* Sections */
.section {
  margin-bottom: 3em;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 0, 255, 0.2);
  border-color: rgba(255, 0, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
  border-radius: 15px 15px 0 0;
  transition: all 0.3s ease;
}

.section:hover::before {
  height: 4px;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.section h2 {
  color: #deea5a;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
  font-weight: 500;
  letter-spacing: 0.7px;
}

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

.card {
  background: rgba(255, 0, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 255, 0.2);
  border-color: #ff00ff;
}

.card h3 {
  color: #68f0ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 0.3rem 0;
  color: #ffffff;
  position: relative;
  padding-left: 1.5rem;
}

.card li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: #ffff00;
  font-weight: 700;
}

.card p {
  text-wrap-style: pretty;
}

/* Contact Form */
.contact-form {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(0, 255, 255, 0.5);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00ffff;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(255, 0, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #dedede;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
  text-align: left;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.form-group select {
  padding-right: 20px;
}

.submit-btn {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: #1a1a2e;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(255, 0, 255, 0.3);
  margin-top: 3rem;
}

footer p {
  margin: 0;
  text-wrap-style: pretty;
}

.footer-content {
  color: #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    margin-bottom: 1em;
  }

  footer {
    font-size: 12px;
    margin-top: 0;
    padding: 15px 20px;
  }

  .dj-title {
    font-size: 2.5rem;
  }

  .hero {
    padding-top: 0.5rem;
    margin-bottom: 1em;
  }

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

  .section {
    margin-bottom: 1em;
    box-shadow: 0 15px 35px rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
  }

  .grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .container {
    padding: 15px 15px 0 15px;
  }

  .logo {
    flex-direction: column;
    gap: 1rem;
  }

  .vinyl-container {
    width: 100px;
    height: 100px;
  }

  .headphones {
    width: 150px;
    height: 150px;
    top: -20px;
    left: -25px;
  }

  .headphone-band {
    width: 124px;
    height: 90px;
    left: 8px;
    top: 6px;
  }

  .headphone-band::before {
    width: 131px;
    height: 90px;
    left: -7px;
    top: -7px;
  }

  .section h2 {
    font-size: 1.7rem;
  }
}

/* Animations */
.section {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating elements */
.floating-notes {
  position: fixed;
  font-size: 1.5rem;
  color: rgba(255, 255, 0, 0.3);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.note1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.note2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.note3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

/* Utility classes */
.hidden {
  display: none;
}

.link {
  color: #deea5a;
}

.required {
  color: #f0f;
  font-size: 0.9em;
  font-weight: 300;
  margin-left: 4px;
}

/* Show/Hide contact form */
.cta-button,
.contact-form {
  display: none;
}

.show-form {
  .contact-form {
    display: block;
  }
  .cta-button {
    display: inline-block;
  }
  .hero {
    padding-bottom: 2.5rem;
  }
}

