body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.92);
}

/* HEADINGS = LUXURY SERIF */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* HERO TITLE */
.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
}

/* SECTION TITLES */
h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

/* SMALL TEXT */
p {
  color: rgba(255,255,255,0.7);
}
body {
  margin:0;
  font-family: Inter;
  background:#000;
  color:#fff;
}

.container {
  width:90%;
  max-width:1200px;
  margin:auto;
}

.header {
  position:fixed;
  width:100%;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
  z-index:100;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}

.logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
}

.nav-links a {
  margin-left:20px;
}

.hero {
  height:100vh;
  overflow:hidden;
  position:relative;
}

.hero video {
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
}

.hero h1 {
  font-family:Playfair Display;
  font-size:60px;
}

.hero span {
  color:gold;
}

.portfolio {
  padding:100px 0;
}

.portfolio-grid {
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:20px;
}

.card {
  grid-column:span 4;
  aspect-ratio:16/9;
  position:relative;
  overflow:hidden;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.card:hover {
  transform:scale(1.05);
}

.card video {
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay {
  position:absolute;
  bottom:0;
  width:100%;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding:10px;
}

.modal {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  justify-content:center;
  align-items:center;
}

.modal.active {
  display:flex;
}

.modal-bg {
  position:absolute;
  width:100%;
  height:100%;
  background:black;
  opacity:0.9;
}

.modal video {
  width:80%;
  max-width:1000px;
  z-index:2;
}

.contact {
  padding:60px 0;
  text-align:center;
}
.contact h2 {
  margin-top: 10px;
}
/* CONTACT FORM */
.form {
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:15px;
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
}

.form input,
.form textarea {
  padding:12px;
  background:#111;
  border:1px solid #333;
  color:#fff;
  border-radius:6px;
}

.form button {
  background:gold;
  color:#000;
  padding:12px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}

.form button:hover {
  opacity:0.85;
}

/* SOCIAL LINKS */
.socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;

  color: white;
  font-size: 18px;

  transition: all 0.3s ease;
}

/* HOVER = GOLD */
.socials a:hover {
  background: #d4af37;
  color: black;
  transform: translateY(-3px);
  border-color: #d4af37;
}

.socials a {
  padding:10px 15px;
  border:1px solid #444;
  border-radius:20px;
  transition:0.3s;
}

.socials a:hover {
  background:gold;
  color:#000;
}
/* NAV LINK FIX */
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* HOVER = GOLD */
.nav-links a:hover {
  color: #d4af37;
}

/* REMOVE PURPLE VISITED LINK */
.nav-links a:visited {
  color: rgba(255,255,255,0.85);
}

/* ACTIVE CLICK */
.nav-links a:active {
  color: #d4af37;
}
.nav-links a {
  position: relative;
}

/* GOLD UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
/* SECTION SPACING */
section {
  padding: 120px 0;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ADD BREATHING ROOM */
.portfolio h2,
.contact h2 {
  margin-bottom: 40px;
  text-align: center;
}
.hero-overlay {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: #d4af37;
}
.portfolio-grid {
  gap: 30px;
  margin-top: 60px;
}

.card {
  border-radius: 16px;
}

.overlay h3 {
  font-size: 18px;
  font-weight: 400;
}
.contact {
  text-align: center;
}

.contact p {
  margin: 8px 0;
  font-size: 18px;
}

.form {
  margin-top: 40px;
}

.form input,
.form textarea {
  padding: 14px;
  font-size: 15px;
}

.form button {
  font-size: 16px;
  letter-spacing: 0.5px;
}
.logo {
  height: 60px;
}

.nav-links a {
  font-size: 15px;
  letter-spacing: 0.5px;
}
.brand-footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 190px;
  opacity: 0.9;
}
.hero-cta {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary {
  background: #d4af37;
  color: black;
  padding: 13px 24px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;

  box-shadow: 0 10px 30px rgba(212,175,55,0.25); /* 👈 THIS MAKES IT POP */
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}
}
.hero h1 {
  text-shadow:
    0 2px 10px rgba(0,0,0,0.4),
    0 10px 40px rgba(0,0,0,0.6);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 20px;
  border-radius: 30px;
}
.logo {
  height: 80px;
  width: auto;
  object-fit: contain;

  /* 👇 THIS FIXES IT */
  position: relative;
  z-index: 999;
}
.header {
  position: fixed;
  width: 100%;
  z-index: 1000; /* 👈 higher than everything */
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
.urgency {
  margin-top: 10px;
  color: #d4af37;
  font-size: 14px;
}
.portfolio-sub {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
.btn-secondary {
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 12px 20px;
  border-radius: 30px;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;   /* 👈 THIS FIXES PURPLE */
}

.btn-secondary:visited {
  color: #d4af37;          /* 👈 stops purple after click */
}

.btn-secondary:hover {
  background: #d4af37;
  color: black;
}
}
a {
  text-decoration: none;
}
/* 🔒 FORCE BUTTON LINK COLORS (OVERRIDE EVERYTHING) */
.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited,
.btn-secondary:active {
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  text-decoration: none !important;
}

/* HOVER */
.btn-secondary:hover {
  background: #d4af37 !important;
  color: black !important;
}
/* REMOVE DEFAULT LINK COLORS */
a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
.btn-secondary {
  border: 1.5px solid #d4af37;
  color: #d4af37;
  padding: 12px 22px;
  border-radius: 30px;
  background: rgba(0,0,0,0.4); /* 👈 KEY FIX */
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #d4af37;
  color: black;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero video {
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.1); }
}
background: rgba(0,0,0,0.35);
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);

  pointer-events: none; /* 👈 THIS IS THE FIX */ !important
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}
.hero-overlay {
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero video {
  position: absolute;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
}

.hero-cta a {
  position: relative;
  z-index: 11;
  pointer-events: auto;
}
.hero-overlay,
.hero::before,
.hero::after {
  pointer-events: none;
}
.hero video {
  pointer-events: none;
}
.btn-primary, .btn-secondary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary:hover {
  border-color: #d4af37;
  color: #d4af37;
}
html {
  scroll-behavior: smooth;
}
.offer {
  max-width: 700px;
  margin: 100px auto;
  text-align: center;
  padding: 0 20px;
}
.offer h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.offer p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}
.offer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.offer li {
  margin: 8px 0;
  color: rgba(255,255,255,0.8);
}
section {
  padding: 80px 20px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 16px;
  }
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  margin-bottom: 10px;
}

.hero h2 {
  margin-bottom: 20px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.hero-cta {
  margin-top: 20px;
}
.offer {
  max-width: 700px;
  margin: 100px auto;
  text-align: center;
  padding: 0 20px;
}

.offer h2 {
  margin-bottom: 15px;
}

.offer p {
  margin-bottom: 20px;
}

.offer ul {
  margin-bottom: 25px;
}
.contact {
  text-align: center;
}

.contact h2 {
  margin-bottom: 15px;
}

.contact p {
  margin-bottom: 10px;
}

.contact form {
  margin-top: 25px;
}

.contact button {
  margin-top: 15px;
}
.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
}
header {
  padding: 18px 40px;
}
Apple / Netflix level
.hero-content h1,
.hero-content h2 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s ease forwards;
}

.hero-content h2 {
  animation-delay: 0.3s;
}

.hero-cta {
  opacity: 0;
  animation: heroFade 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.btn-primary,
.btn-secondary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.btn-secondary:hover {
  border-color: #d4af37;
  color: #d4af37;
}
.hero video {
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }

}
header {
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.6);
}
html {
  scroll-behavior: smooth;
}
.contact form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
  font-size: 14px;
}

.contact textarea {
  min-height: 120px;
  resize: none;
}

.contact button {
  width: 100%;
  margin-top: 10px;
}
.contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}