/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0A0A0A;
  color: #FFF;
}

:root {
  --gold: #C5A46D;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  width: 100%;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
  z-index: 1000;
}

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

.logo img {
  height: 40px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
}

/* PREMIUM HOVER LINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s ease;
}

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

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;

  /* ADD THIS LINE */
  background: url('../img/hero.jpg') center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  font-family: 'Playfair Display';
  line-height: 1.2;
}

.hero p {
  color: #AAA;
  max-width: 600px;
  margin: 20px auto;
}

/* BUTTON */
.btn {
  background: var(--gold);
  color: #000;
  padding: 14px 30px;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 0;
  border-bottom: 1px solid #1A1A1A;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Playfair Display';
  font-size: 36px;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.service p {
  margin-top: 10px;
  color: #AAA;
  font-size: 14px;
  line-height: 1.6;
}
.service {
  background: #111;
  padding: 30px;
  border-left: 2px solid transparent;
  transition: 0.3s;
}

.service:hover {
  border-left: 2px solid var(--gold);
  transform: translateY(-5px);
}

/* ===== PORTFOLIO ===== */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.project {
  position: relative;
  overflow: hidden;
}

.project img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

.project:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
  color: #FFF;
}

/* FORCE WHITE TEXT (REMOVE BLUE LINKS) */
.project,
.project h4 {
  color: #FFF !important;
}

/* ===== CONTACT ===== */
.contact-details {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 800px;
  margin: auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px;
  background: #111;
  border: 1px solid #222;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .services,
  .portfolio {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 36px;
  }

}