
html, body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('../images/hero.jpg') center top / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.15));
}

.brand-area {
  position: absolute;
  top: 40px;
  left: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  align-items: center;
  max-width: 520px;
  z-index: 2;
}

.logo {
  width: 90px;
  height: auto;
}

@media (min-width: 768px) {
  .logo {
    width: 105px;
  }
}

@media (min-width: 1024px) {
  .logo {
    width: 120px;
  }
}


.brand-text h1 {
  margin: 0;
  font-size: 2.1rem;
  color: #d4af37;
}

.brand-text p {
  margin: 6px 0 0;
  font-size: 1rem;
  color: #d4af37;
  letter-spacing: 0.04em;
}

footer {
  background: #000;
  color: #d4af37;
  text-align: center;
  padding: 14px;
  font-size: 0.9rem;
}


/* ===== Black & Gold Theme Enhancements ===== */
:root {
  --gold: #d4af37;
  --black: #000000;
}

body {
  background-color: var(--black);
  color: #e6e6e6;
}

h2 {
  color: var(--gold);
  letter-spacing: 0.06em;
}

.content {
  background: #0b0b0b;
  padding: 60px 20px;
}

.content ul li {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 50px 0;
}

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

a:hover {
  text-decoration: underline;
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .brand-area {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .brand-text h1 {
    font-size: 1.7rem;
  }

  .content {
    padding: 40px 16px;
  }
}


/* ===== Footer ===== */
.site-footer {
  background: #000000;
  color: #d4af37;
  text-align: center;
  padding: 18px 12px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}


/* ===== Unified Desktop & Mobile Rendering ===== */
body {
  max-width: 480px;
  margin: 0 auto;
}

.hero {
  max-width: 480px;
  margin: 0 auto;
}

.site-footer {
  max-width: 480px;
  margin: 0 auto;
}


/* ===== Desktop Enhancement (Face-Safe) ===== */
@media (min-width: 1024px) {
  body {
    max-width: none;
    margin: 0;
  }

  .hero {
    max-width: none;
  }

  .brand-area {
    left: 80px;
    top: 60px;
    max-width: 520px;
  }

  .content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  .site-footer {
    max-width: none;
  }
}


/* ===== Logo Optical Alignment Refinement ===== */
.brand-area {
  top: 64px; /* increased top padding */
  left: 32px;
  column-gap: 20px;
  align-items: center;
}

/* tighten logo/text relationship */
.logo {
  width: 110px;
}

/* text adjustments */
.brand-text h1 {
  margin: 0;
  font-size: 2.1rem;
  color: #d4af37;
  transform: translateY(-6px); /* optical lift */
}

.brand-text p {
  margin: 2px 0 0; /* tighter gap */
  font-size: 0.95rem;
  color: #d4af37;
  letter-spacing: 0.03em;
}

/* subtle desktop animation */
@media (min-width: 1024px) {
  .brand-area {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeLift 300ms ease-out forwards;
  }

  @keyframes fadeLift {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* Desktop enhancement without breaking mobile layout */
@media (min-width: 1024px) {
  .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
  }

  .hero {
    min-height: 70vh;
  }
}


/* === Mobile logo fix (top-left, avoid face overlap) === */
.brand-area {
  position: absolute;
  top: 40px;
  left: 40px;
  right: auto;
}

@media (max-width: 600px) {
  .brand-area {
    top: 32px;
    left: 20px;
  }

  .logo {
    width: 80px;
  }

  .hero {
    background-position: 70% center;
  }
}
