@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&family=Inter:wght@400;500;700&display=swap');

h1, h2, h3, .hero-logo {
  font-family: 'Roboto', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.01em;
}

:root {
  --black: #101010;
  --white: #f5f5f5;
  --grey: #212121;
  --accent: #b891fa;
  --radius: 18px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.blurred-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.blur-dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.32;
  animation: moveBlobs 14s linear infinite alternate;
  will-change: transform, opacity;
  transition: opacity 0.2s;
}

/* Customise your colour palette here */
.blur-dot-purple {
  width: 540px; height: 540px;
  background: #B891FA;
  left: -180px; top: 6vh;
  animation-delay: 0s;
}
.blur-dot-blue {
  width: 400px; height: 400px;
  background: #59d2f6;
  right: -160px; top: 13vh;
  animation-delay: 4s;
}
.blur-dot-green {
  width: 380px; height: 380px;
  background: #63fa91;
  left: 40vw; bottom: -130px;
  animation-delay: 7s;
}
.blur-dot-pink {
  width: 500px; height: 500px;
  background: #fc76c6;
  right: -180px; bottom: -100px;
  animation-delay: 11s;
}

@keyframes moveBlobs {
  0% { transform: scale(1) translateY(0) translateX(0); opacity: 0.30; }
  20% { transform: scale(1.07) translateY(-40px) translateX(24px); opacity: 0.38; }
  40% { transform: scale(1.11) translateY(20px) translateX(-22px); opacity: 0.32; }
  60% { transform: scale(0.95) translateY(32px) translateX(16px); opacity: 0.27; }
  80% { transform: scale(1.09) translateY(-26px) translateX(8px); opacity: 0.36; }
  100% { transform: scale(1) translateY(0) translateX(0); opacity: 0.32; }
}


.hero-video-container {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  aspect-ratio: 16 / 7;
  background: #000;
}

.hero-video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  background: #000;
}

.overlay-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: linear-gradient(0deg, rgba(10,10,10,0.84) 0%, rgba(10,10,10,0.07) 100%);
  padding: 0 6vw 5vh 6vw;
  box-sizing: border-box;
}

.hero-logo {
  display: block;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.3rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 24px #000a;
  font-family: 'Roboto', serif;
  font-weight: 900;
}

.overlay-title h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.7rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.overlay-title p {
  font-size: 1.2rem;
  margin: 0 0 2.4vh 0;
  color: var(--white);
  opacity: 0.88;
}

main {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 3vh 6vw 6vh 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black);
}

/* Intro section */
.intro-section {
  width: 100%;
  max-width: 1080px;
  margin: 38px auto 46px auto;
  background: var(--grey);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px #000a;
  padding: 42px 38px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.intro-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 38px;
}

.intro-img img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 18px #000c;
  border: 3px solid var(--accent);
  background: #181818;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  font-weight: 900;
}

.intro-text p {
  font-size: 1.08rem;
  opacity: 0.96;
  margin-bottom: 0;
  line-height: 1.5;
}

.services {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 60px auto;
}

.services h2 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 900;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--grey);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px #0007;
  padding: 30px 22px 24px 22px;
  color: var(--white);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1.2px solid #252525;
  transition: transform 0.16s, box-shadow 0.18s, border-color 0.14s;
  cursor: pointer;
  text-decoration: none;
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 12px 32px #222b;
  border-color: var(--accent);
  background: #181018;
  outline: none;
}

.service-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.29rem;
  color: var(--accent);
  font-weight: 900;
}

.service-card p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.88;
}

.about {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 30px auto;
  text-align: center;
  color: var(--white);
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.about p {
  font-size: 1.09rem;
  opacity: 0.92;
  margin-bottom: 2.2rem;
}

.cta-container {
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 18px 54px;
  background: linear-gradient(93deg, var(--accent) 45%, #fff 100%);
  color: #18102c;
  font-weight: bold;
  font-size: 1.18rem;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 24px #a986fb55;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.13s;
}

.cta-button:hover,
.cta-button:focus {
  background: linear-gradient(90deg, #fff 40%, var(--accent) 90%);
  color: var(--black);
  transform: scale(1.045);
  outline: none;
}

footer {
  background: #151515;
  color: #a2a2a2;
  padding: 28px 0 24px 0;
  font-size: 1rem;
  text-align: center;
  margin-top: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  border-top: 1.2px solid #262626;
  letter-spacing: 0.03em;
}

/* Responsive styles */
@media (max-width: 1050px) {
  .intro-section {
    padding: 34px 16px;
    gap: 24px;
  }
  .intro-inner {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  main {
    padding: 2vh 2vw 5vh 2vw;
  }
  .services {
    padding: 0 0.5vw;
  }
}

@media (max-width: 700px) {
  .intro-section {
    flex-direction: column;
    padding: 30px 2vw;
    align-items: flex-start;
  }
  .intro-inner {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: center;
  }
  .intro-img img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .hero-logo {
    font-size: 1.3rem;
  }
  .overlay-title h1 {
    font-size: 1.15rem;
  }
  .overlay-title p {
    font-size: 0.88rem;
  }
  .intro-text h2,
  .services h2,
  .about h2 {
    font-size: 1.18rem;
  }
  .cta-button {
    padding: 13px 32px;
    font-size: 1.04rem;
  }
  .service-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  main {
    padding: 1.6vh 1.2vw 3vh 1.2vw;
  }
  .about {
    padding: 0 2vw;
  }
}

.vip-section {
  width: 100%;
  max-width: 620px;
  margin: 56px auto 38px auto;
  background: linear-gradient(135deg, rgba(40,14,72,0.80) 50%, rgba(0,0,0,0.70) 100%);
  border-radius: 32px;
  box-shadow:
    0 8px 40px 0 #b891fa44,
    0 1.5px 12px 0 #000c;
  text-align: center;
  padding: 52px 28px 40px 28px;
  z-index: 3;
  position: relative;
  border: 1.5px solid rgba(184,145,250,0.30);
  backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow 0.2s;
  overflow: hidden;
}

.vip-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -60px; left: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 40% 60%, #b891fa88 0%, transparent 80%);
  filter: blur(40px);
  opacity: 0.42;
  pointer-events: none;
}

.vip-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -55px; right: -55px;
  width: 140px; height: 140px;
  background: radial-gradient(circle at 60% 40%, #59d2f677 0%, transparent 75%);
  filter: blur(38px);
  opacity: 0.38;
  pointer-events: none;
}

.vip-section h2,
.vip-section p,
.vip-section .cta-container {
  position: relative;
  z-index: 2;
}

.vip-section h2 {
  color: #d6c8ff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px #54299255;
}

.vip-section p {
  color: #ece8fa;
  font-size: 1.13rem;
  margin-bottom: 2rem;
  opacity: 0.98;
  text-shadow: 0 1px 8px #431f5a33;
}

.cta-button.vip {
  background: linear-gradient(100deg, #b891fa 15%, #59d2f6 90%);
  color: #161629;
  font-weight: bold;
  border: none;
  font-size: 1.12rem;
  padding: 15px 50px;
  border-radius: 26px;
  box-shadow: 0 2px 18px #b891fa66, 0 2px 10px #fff2;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.cta-button.vip:hover,
.cta-button.vip:focus {
  background: linear-gradient(95deg, #59d2f6 30%, #b891fa 85%);
  color: #161629;
  transform: scale(1.05);
  outline: none;
}

.cta-button.vip {
  background: linear-gradient(93deg, #B891FA 35%, #59d2f6 90%);
  color: #161629;
  font-weight: bold;
  border: none;
  font-size: 1.12rem;
  padding: 15px 50px;
  border-radius: 26px;
  box-shadow: 0 2px 16px #b891fa88;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.cta-button.vip:hover,
.cta-button.vip:focus {
  background: linear-gradient(87deg, #59d2f6 25%, #B891FA 90%);
  color: #161629;
  transform: scale(1.05);
  outline: none;
}
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 18px 0 22px 0;
  z-index: 5;
  position: relative;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  transition: background 0.19s, box-shadow 0.13s, transform 0.13s;
  box-shadow: 0 2px 12px #b891fa55, 0 1.5px 8px #000b;
  border: 1.5px solid rgba(184,145,250,0.18);
  cursor: pointer;
}
.social-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.social-icon:hover,
.social-icon:focus {
  background: rgba(184,145,250,0.18);
  box-shadow: 0 6px 24px #b891fa77, 0 2px 8px #fff2;
  transform: translateY(-2px) scale(1.05);
  outline: none;
}
