body {
  margin: 0;
  font-family: Arial;
  background: #05070f;
  color: white;
  scroll-behavior: smooth;
}

/* SNAP SCROLL */
.snap {
  scroll-snap-align: start;
}
html {
  scroll-snap-type: y mandatory;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 100;
  background: rgba(0,0,0,0.4);
}
.logo { color: gold; }

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.4), #05070f);
}

/* PARALLAX */
.parallax-layer {
  position: absolute;
  inset: 0;
}

.layer-1 { background: rgba(212,175,55,0.05); }
.layer-2 { background: rgba(255,255,255,0.03); }
.layer-3 { background: transparent; }

/* HERO TEXT */
.hero-content {
  position: relative;
  text-align: center;
  top: 40%;
  
}
.hero-content h1 {
  color: gold;
  transition: all 0.4s ease;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  cursor: default;
}

.hero-content h1:hover {
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.6),
    0 0 25px rgba(212, 175, 55, 0.4),
    0 0 45px rgba(212, 175, 55, 0.3);
  transform: scale(1.02);
}

/* SECTIONS */
.section {
  padding: 120px 20px;
  text-align: center;
}

/* GLASS CARDS */
.glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  backdrop-filter: blur(10px);
  padding: 20px;
  margin: 10px;
  transition: 0.3s;

  border-radius: 18px; /* 👈 smooth luxury corners */
}
.glass-card:hover {
  transform: scale(1.05);
  border-color: gold;
}

/* GRID */
.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PRICING */
.pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 2s ease forwards 2s;
}

.brand { color: gold; font-size: 2rem; }

.line {
  height: 2px;
  width: 0;
  background: gold;
  animation: line 1s forwards;
}

@keyframes line {
  to { width: 200px; }
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* CANVAS */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
}
/* =========================
   CONTACT FORM UPGRADE
========================= */

.form-card {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;

  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

/* INPUTS */
.form-card input,
.form-card textarea {
  width: 100%;
  margin: 10px 0;
  padding: 14px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);

  background: rgba(255,255,255,0.03);
  color: white;

  outline: none;
  transition: all 0.3s ease;
}

/* PLACEHOLDER */
.form-card input::placeholder,
.form-card textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* FOCUS EFFECT */
.form-card input:focus,
.form-card textarea:focus {
  border: 1px solid gold;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* TEXTAREA */
.form-card textarea {
  min-height: 120px;
  resize: none;
}

/* BUTTON */
.form-card button {
  width: 100%;
  margin-top: 15px;
}

/* CONTACT TEXT */
.form-card p {
  margin-top: 15px;
  opacity: 0.8;
}
button {
  margin-top: 20px;
  padding: 14px 32px;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;

  border: none;
  border-radius: 30px;

  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;

  transition: all 0.3s ease;

  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* HOVER EFFECT */
button:hover {
  transform: translateY(-3px) scale(1.03);

  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.6),
    0 0 40px rgba(212, 175, 55, 0.3);

  background: linear-gradient(135deg, #f5d76e, #d4af37);
}

/* CLICK FEEDBACK */
button:active {
  transform: scale(0.97);
}
/* -----------------------
   HOUSE BACKGROUND IMAGE
------------------------ */

.house-bg {
  position: fixed;
  inset: 0;

  background: url("house-hologram.png") center/cover no-repeat;

  opacity: 0.15; /* 👈 subtle luxury look */
  z-index: -2;   /* behind particles */
  pointer-events: none;

  filter: blur(1px) brightness(0.7);
}
/* -----------------------
   CLEAN FLIP CARDS
------------------------ */

.flip-card {
  width: 350px;
  height: 200px;
  perspective: 1000px;
  margin: auto;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;

  transform-style: preserve-3d;
  transition: transform 1.0s ease;
}

/* smooth flip */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* front + back */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;

  border-radius: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* FRONT */
.flip-front {
  font-weight: 600;
}

/* BACK */
.flip-back {
  transform: rotateY(180deg);
  font-size: 0.85rem;
  padding: 10px;
}

/* tighten list */
.flip-back ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.flip-back li {
  margin: 4px 0;
  opacity: 0.9;
}
.flip-card:hover  .flip-front,
.flip-card:hover .flip-back {
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}
.flip-front,
.flip-back {
  pointer-events: none;
}
/* -----------------------
   HAMBURGER MENU
------------------------ */

.menu-toggle {
  position: fixed;
  top: 20px;
  right: 30px;

  font-size: 1.8rem;
  cursor: pointer;

  color: gold;

  z-index: 1000;

  transition: 0.3s ease;
}

/* subtle glow on hover */
.menu-toggle:hover {
  text-shadow: 0 0 10px gold;
  transform: scale(1.1);
}


/* hidden menu */
#menu {
  position: fixed;
  top: 0;
  right: -250px;

  width: 250px;
  height: 100%;

  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: 0.4s ease;
}

/* active menu */
#menu.active {
  right: 0;
}

/* menu links */
#menu a {
  color: gold;
  text-decoration: none;
  margin: 20px 0;
  font-size: 1.2rem;
  transition: 0.3s;
}

#menu a:hover {
  text-shadow: 0 0 10px gold;
}
/* AMBIENT LIGHT FLOW */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.08), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 40%);

  z-index: -1;
  animation: moveLights 12s ease-in-out infinite alternate;
}

@keyframes moveLights {
  0% { transform: translate(0,0); }
  100% { transform: translate(-50px, 50px); }
}
