/* Disco DJ Hire — visual clone of discodjhire.co.uk */

:root {
  --pink: #c36;
  --red: #c01010;
  --gold: #bea017;
  --orange: #c77d14;
  --hot-pink: #ec00aa;
  --accent: #61ce70;
  --facebook: #3b5998;
  --whatsapp: #25d366;
  --envelope: #ea4335;
  --header-max: 1140px;
  --righteous: "Righteous", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

a {
  color: var(--pink);
  text-decoration: none;
}

a:hover,
a:active {
  color: #336;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 12px 24px;
  background: #eee;
  color: #333;
}

.skip-link:focus {
  left: 5px;
  top: 5px;
}

/* Header — Hello Elementor default */
.site-header {
  position: relative;
  padding: 1rem 0;
}

.header-inner,
.footer-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 1rem;
  font-weight: 500;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-intro {
  margin: 0;
  max-width: 720px;
  font-family: var(--righteous);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.section-intro a {
  color: #fff;
  text-decoration: underline;
}

.section-intro a:hover {
  color: var(--gold);
}

.site-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-title a {
  color: var(--pink);
}

.site-title a:hover {
  color: #336;
}

/* Main page canvas */
.page-canvas {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
  background: #000 url("../images/hero.jpg") center / cover no-repeat;
  color: #fff;
}

.page-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.page-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-inner > * + * {
  margin-top: 20px;
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1.hero-title,
h2.section-title {
  margin: 0;
  font-family: var(--righteous);
  font-size: 46px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.hero-tagline {
  margin: 0;
  font-family: var(--righteous);
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
}

.section-title {
  padding-top: 50px;
}

/* Services */
.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.services li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--righteous);
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}

.services h3 {
  margin: 0;
  font: inherit;
  color: inherit;
}

.services svg {
  width: 30px;
  height: 30px;
  fill: var(--red);
  flex-shrink: 0;
}

/* Gallery */
.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery figure {
  margin: 0;
}

.gallery a {
  display: block;
  overflow: hidden;
  background: #111;
  aspect-ratio: 3 / 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery a:hover img {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox:target {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 2;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* About */
.about {
  max-width: 720px;
  font-family: var(--righteous);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
}

.about p {
  margin: 0 0 0.9rem;
}

.about p:last-child {
  margin-bottom: 0;
}

.contact-intro {
  margin: 0;
  font-family: var(--righteous);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

/* Social icons */
.socials {
  display: flex;
  justify-content: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
}

.socials a:hover {
  opacity: 0.85;
  color: #fff;
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.social-facebook { background: var(--facebook); }
.social-whatsapp { background: var(--whatsapp); }
.social-phone { background: var(--red); }
.social-email { background: var(--envelope); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact form */
.contact-form {
  width: 100%;
  padding: 0 120px;
  text-align: left;
}

.form-row {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--righteous);
  font-size: 14px;
  color: #fff;
}

.required {
  color: #ff6b6b;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: #fff;
  color: #333;
  font-family: Roboto, sans-serif;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.btn-submit {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 3px;
  padding: 12px 28px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.btn-submit:hover {
  filter: brightness(1.08);
  color: #fff;
}

.alert {
  width: 100%;
  max-width: 720px;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--righteous);
  font-size: 15px;
}

.alert-success {
  background: rgba(97, 206, 112, 0.2);
  border: 1px solid var(--accent);
  color: #fff;
}

.alert-error {
  background: rgba(192, 16, 16, 0.25);
  border: 1px solid var(--red);
  color: #fff;
}

/* Stars */
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stars svg {
  width: 43px;
  height: 43px;
  fill: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: var(--righteous);
  font-weight: 500;
  line-height: 1.2;
  border-radius: 3px;
  text-align: center;
}

.btn:hover {
  color: #fff;
  filter: brightness(1.08);
}

.btn-google {
  background: var(--orange);
  font-size: 28px;
  padding: 20px;
}

.btn-balloons {
  background: var(--hot-pink);
  font-size: 17px;
  text-transform: uppercase;
  padding: 12px 20px;
}

.btn-balloons svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.credit {
  margin: 20px 0 0;
  font-family: var(--righteous);
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}

/* Footer */
.site-footer {
  padding: 1rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.25rem;
}

.footer-brand,
.footer-contact,
.copyright {
  margin: 0;
  font-style: normal;
  font-size: 0.95rem;
}

.footer-contact a:hover {
  color: #336;
}

@media (min-width: 576px) {
  .header-inner,
  .footer-inner {
    max-width: 500px;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .header-inner,
  .footer-inner {
    max-width: 600px;
  }
}

@media (min-width: 992px) {
  .header-inner,
  .footer-inner {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .header-inner,
  .footer-inner {
    max-width: 1140px;
  }
}

@media (max-width: 767px) {
  .page-canvas {
    padding: 22px 0;
    background-image: url("../images/hero-mobile.jpg");
  }

  h1.hero-title,
  h2.section-title {
    font-size: 32px;
  }

  .services li {
    font-size: 22px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 0 10px;
  }

  .stars svg {
    width: 25px;
    height: 25px;
  }

  .btn-google {
    font-size: 22px;
    padding: 16px;
  }

  .credit {
    font-size: 14px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.75rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .services li {
    font-size: 20px;
  }
}
