/* ======================
   ROOT COLOURS
====================== */
:root {
  --primary: #0b1f3a;
  --secondary: #d4af37;
  --dark: #000000;
  --light: #ffffff;
}

/* ======================
   RESET
====================== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  scroll-behavior: smooth;
}

/* ======================
   HEADINGS
====================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

h2 {
  position: relative;
  font-size: 34px;
}

h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--secondary);
  display: block;
  margin: 10px auto 0;
}

/* ======================
   HEADER
====================== */
.header {
  position: sticky;
  top: 0;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  height: 80px;
  z-index: 1000;
}

.logo {
  height: 70px;
  object-fit: contain;
}

nav a {
  color: white;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--secondary);
}

/* ======================
   HERO (VIDEO FIXED)
====================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1521335629791-ce4aec67dd53') center/cover no-repeat;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 52px;
  letter-spacing: 1px;
  font-weight: 600;
}

.subtitle {
  font-size: 18px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.trust {
  color: var(--secondary);
  margin-bottom: 25px;
}

/* ======================
   BUTTON
====================== */
.btn {
  background: var(--secondary);
  color: black;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn:hover {
  background: #b8962e;
  transform: translateY(-2px);
}

/* ======================
   SECTIONS
====================== */
.section {
  padding: 100px 20px;
}

.section p {
  line-height: 1.6;
}

.dark {
  background: var(--primary);
  color: white;
}

/* ======================
   GRID
====================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* ======================
   CARDS
====================== */
.card {
  padding: 20px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.card:hover {
  border-color: var(--secondary);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ======================
   GALLERY
====================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.3s;
}

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

/* ======================
   WHATSAPP BUTTON
====================== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

/* ======================
   MOBILE OPTIMISATION
====================== */
.hero-video {
  background: black;
}

  .hero {
    background: url('https://images.unsplash.com/photo-1521335629791-ce4aec67dd53?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  }
}
/* HERO FADE-IN */
.hero-content {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.hero-content h2 {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.subtitle {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.trust {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.btn {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* SOCIAL ICONS - LUXURY */
.socials {
  display: flex;
  gap: 18px;
  align-items: center;
}

.socials a {
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.socials a:hover {
  color: var(--secondary);
  opacity: 1;
  transform: translateY(-2px);
}
.socials {
  margin-left: 20px;
}
