/* =========================
   CSS VARIABLES (THEME)
========================= */
:root {
  --bg-dark: #0f0f0f;
  --bg-dark-soft: #161616;
  --gold: #d4af37;
  --gold-soft: #b8962e;
  --text-light: #f5f5f5;
  --text-muted: #bdbdbd;
  --border-soft: rgba(212, 175, 55, 0.25);

  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* =========================
   RESET & BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #1a1a1a, var(--bg-dark));
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* NAV LINKS */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  min-height: 90vh;
  padding: 5rem 1.5rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hero {
  background:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.9)
    ),
    url("hero2.png") center/cover no-repeat;
}


.cta-button {
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

/* =========================
   SERVICES SECTION
========================= */
#services {
  padding: 5rem 1.5rem;
  background: var(--bg-dark-soft);
}

#services h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 3rem;
}

.services-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
  padding: 5rem 1.5rem;
}

.about-content {
  max-width: 900px;
  margin: auto;
}

.about h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
  padding: 5rem 1.5rem;
  background: var(--bg-dark-soft);
  text-align: center;
}

.contact h2 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact p {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-info {
  max-width: 900px;
  margin: auto auto 3rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.5rem;
}

.contact-item span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-item strong {
  color: var(--gold);
}

/* FORM */
form {
  max-width: 600px;
  margin: auto;

  display: grid;
  gap: 1rem;
}

input,
textarea {
  background: #111;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text-light);
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  margin-top: 0.5rem;
  padding: 0.9rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* =========================
   MOBILE NAV (CSS ONLY)
   JS WILL TOGGLE LATER
========================= */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f0f0f;

    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-soft);

    /* hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  nav ul li {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  /* CLASS JS WILL ADD LATER */
  nav ul.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* HAMBURGER PLACEHOLDER */
  .menu-toggle {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
  }
}
/* =========================
   FLOATING BACKGROUND
========================= */

.floating-elements {
  position: fixed;
  inset: 0;
  pointer-events: none; /* user can't click them */
  z-index: 0;
  overflow: hidden;
}

.float {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
  animation: float 14s ease-in-out infinite;
}

/* Individual positions */
.float-1 {
  top: 15%;
  left: 10%;
}

.float-2 {
  bottom: 20%;
  right: 12%;
  animation-duration: 18s;
}

.float-3 {
  top: 50%;
  left: 60%;
  animation-duration: 22s;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

nav a {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo img {
  height: 36px;          /* ideal for desktop */
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.25));
}

@media (max-width: 768px) {
  .logo img {
    height: 30px;        /* slightly smaller on mobile */
  }
}
