:root {
  --bg-void: #fdf2f7; /* Soft Light Pink */
  --bg-deep: #ffffff;
  --neon-pink: #e91e63; /* Deep Pink for contrast */
  --neon-purple: #9c27b0;
  --neon-blue: #00bcd4;
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 192, 203, 0.3);
  --glass-blur: blur(12px);
  --text-main: #2d2d2d; /* Dark Grey for readability */
  --text-sec: #666666;
  --font-display: "Outfit", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none; /* Hide default cursor for custom one */
}

body {
  background-color: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-display);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-pink);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--neon-pink);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}

body:hover .cursor-outline {
  opacity: 1;
}

/* Dynamic Background Orbs */
.ambient-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  filter: blur(80px);
}

.light-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: drift 20s infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
  top: -20%;
  left: -10%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

/* Typography & Layout */
.container {
  width: 90%;
  max-width: 1400px; /* Wider for editorial look */
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-weight: 300;
}

.header {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: 0.4s ease;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text-main);
}

.logo .dot {
  color: var(--neon-pink);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

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

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

.btn-nav {
  border: 1px solid var(--neon-pink);
  padding: 8px 25px;
  color: var(--neon-pink) !important;
}

.btn-nav:hover {
  background: var(--neon-pink);
  color: white !important;
  box-shadow: 0 0 20px var(--neon-pink);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  z-index: 2;
  flex: 1;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 3rem;
  color: var(--text-sec);
  border-left: 2px solid var(--neon-purple);
  padding-left: 20px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 18px 40px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.4s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-deep);
  font-weight: 600;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(233, 30, 99, 0.3); /* Pink shadow */
}

.btn-outline {
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

/* Hero Visual - Floating Elements */
.hero-visual {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 40vw;
  height: 70vh;
  z-index: 1;
}

.circle-frame {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  position: relative;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

.floating-card {
  position: absolute;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  animation: float 6s infinite ease-in-out;
}

.top-right {
  top: 10%;
  right: -5%;
}

.bottom-left {
  bottom: 15%;
  left: -10%;
  animation-delay: 2s;
}

.floating-card i {
  color: var(--neon-pink);
  font-size: 1.2rem;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-main), transparent);
}

/* Sections General */
.section-padding {
  padding: 120px 0;
}

.section-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--neon-pink);
  margin-bottom: 20px;
  display: block;
}

.section-heading {
  font-size: 3.5rem;
  font-family: var(--font-serif);
  margin-bottom: 30px;
  line-height: 1.1;
}

/* Concept Section */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text p {
  color: var(--text-sec);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-box {
  padding: 30px;
  border-radius: 0; /* Sharp edges for raw tech feel */
  transition: 0.4s ease;
  border-left: 2px solid transparent;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--neon-pink);
  transform: translateX(10px);
}

.feature-box i {
  font-size: 2rem;
  color: var(--neon-purple);
  margin-bottom: 20px;
}

.feature-box h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.concept-image {
  position: relative;
}

.concept-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  filter: grayscale(80%);
  transition: 0.5s ease;
}

.concept-image:hover img {
  filter: grayscale(0%);
}

.glow-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border: 2px solid var(--neon-pink);
  border-radius: 50%;
  z-index: -1;
  animation: spin 10s linear infinite;
}

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

/* Gallery Slider Look */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.gallery-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 40px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.gallery-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.gallery-card {
  min-width: 350px;
  height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover .card-inner {
  transform: scale(0.95);
}

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

.gallery-card:hover img {
  transform: scale(1.1);
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
}

/* Location */
.location-container {
  display: flex;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
}

.location-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-list {
  list-style: none;
  margin: 40px 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.info-list i {
  color: var(--neon-pink);
  font-size: 1.5rem;
}

.map-visual {
  flex: 1;
  position: relative;
}

/* Final CTA */
.cta-final {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.center {
  text-align: center;
}

.big-text {
  font-size: 6rem;
  line-height: 1;
  font-family: var(--font-serif);
  margin-bottom: 50px;
}

.btn-giant {
  position: relative;
  font-size: 2rem;
  color: var(--text-main);
  text-decoration: none;
  padding: 40px 80px;
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: 100px;
  display: inline-block;
  overflow: hidden;
  transition: color 0.4s ease;
}

.btn-giant span {
  position: relative;
  z-index: 2;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--neon-pink);
  transition: width 0.5s ease;
  z-index: 1;
}

.btn-giant:hover .btn-bg {
  width: 100%;
}

.btn-giant:hover {
  color: white;
  border-color: var(--neon-pink);
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text-main);
}

.socials {
  display: flex;
  gap: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  text-decoration: none;
  transition: 0.3s;
}

.social-link:hover {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  transform: scale(1.1);
}

.copy {
  color: var(--text-sec);
  font-size: 0.8rem;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 900px) {
  /* Hide custom cursor on touch devices */
  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  * {
    cursor: auto; /* Restore default cursor */
  }

  .container {
    width: 90%;
    padding: 0 10px;
  }

  /* Header & Mobile Menu */
  .header {
    padding: 15px 0;
  }

  .logo a {
    font-size: 1.2rem;
    z-index: 1001; /* Above menu overlay */
    position: relative;
  }

  .menu-toggle {
    display: block;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .bar {
    height: 2px;
    width: 100%;
    background: var(--text-main);
    transition: 0.3s;
  }

  /* Hamburger Animation */
  .nav-links.active + .menu-toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-links.active + .menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-links.active + .menu-toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-void); /* Uses theme background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%); /* Hidden by default */
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateY(0); /* Visible */
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--text-main);
  }

  /* Hero Section Adjustment */
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
  }

  .hero-visual {
    display: block;
    position: relative;
    width: 80vw;
    height: 350px;
    margin: 30px auto;
    transform: none;
    top: auto;
    right: auto;
    z-index: 1;
  }

  .circle-frame {
    border-radius: 150px 150px 20px 20px;
  }

  .floating-card {
    display: none;
  }

  .hero-title {
    font-size: 3rem; /* Smaller for mobile */
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-left: 0;
    border-left: none;
    border-bottom: 2px solid var(--neon-purple);
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn {
    width: 100%; /* Full width buttons on mobile */
    padding: 15px;
  }

  /* Sections Spacing */
  .section-padding {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 2.5rem;
  }

  /* Concept Grid */
  .concept-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .concept-image {
    order: -1; /* Image first on mobile */
    margin-bottom: 30px;
  }

  /* Gallery */
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gallery-card {
    min-width: 280px; /* Smaller cards */
    height: 400px;
  }

  /* Location */
  .location-container {
    flex-direction: column;
    height: auto;
  }

  .location-content {
    padding: 40px 20px;
  }

  .map-visual {
    width: 100%;
    height: 300px;
  }

  /* CTA & Footer */
  .big-text {
    font-size: 3rem;
  }

  .btn-giant {
    font-size: 1.2rem;
    padding: 20px 40px;
    width: 80%;
  }

  .footer-flex {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  /* Tablet / Small Laptop Adjustments */
  .hero-title {
    font-size: 4rem;
  }

  .hero-visual {
    width: 35vw;
    right: 2%;
  }

  .container {
    max-width: 95%;
  }
}
