:root {
  --gold: #FFCC00;
  --black: #000000;
  --white: #ffffff;
  --beige: #F5F0E6;
  --muted: #555;
}

/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

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

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

/* HEADER */
header {
  background: var(--gold);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img { width: 70px; height: 70px; }
.logo-title { font-size: 32px; font-weight: 800; }

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--black);
  transition: 0.2s ease-in-out;
}

nav a:hover { opacity: 0.7; }

/* HERO VIDEO */
.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  margin-bottom: 40px; /* space under hero video */
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text {
  color: var(--white);
  padding: 20px 40px;
  border-radius: 8px;
}

.hero-text h2 { font-size: 2.8rem; margin-bottom: 12px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 20px; }

/* BUTTON */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

/* HERO DESCRIPTION */
.hero-description {
  padding: 50px 20px;
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  margin-top: 60px; /* increased space under hero */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-description h2 { font-size: 28px; margin-bottom: 20px; }
.hero-description p { max-width: 800px; margin: 0 auto; color: var(--muted); line-height: 1.6; }

/* SERVICES */
.services { padding: 60px 0; text-align: center; }
.services h2 { margin-bottom: 35px; color: var(--black); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* WHY US */
.about { 
  padding: 80px 0; /* increased spacing */
  background: #f7f7f7; 
  text-align: center; 
}
.about h2 { margin-bottom: 30px; } /* spacing between title and text */
.about ul { 
  max-width: 700px; 
  margin: 0 auto; 
  text-align: left; 
  list-style: disc inside; 
  line-height: 1.8; /* more spacing between list items */
}

/* GALLERY */
.gallery { padding: 80px 0; text-align: center; }
.gallery h2 { margin-bottom: 35px; } /* spacing between title and photos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.gallery-item {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.gallery-item:hover { transform: scale(1.05); }

/* CONTACT */
.contact { 
  padding: 80px 0; /* more spacing around section */
  text-align: center; 
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  margin-bottom: 60px; /* space between contact section and footer */
}

.contact h2 { 
  font-size: 32px; 
  margin-bottom: 25px; 
}

.contact p { 
  font-size: 20px; 
  margin-bottom: 20px; 
  font-weight: 600;
  color: var(--black);
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px; /* wider form */
  margin: 20px auto;
}

.contact input, .contact textarea {
  padding: 16px;
  font-size: 16px; /* bigger input text */
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact button {
  background: var(--gold);
  color: var(--black);
  padding: 16px 24px; /* bigger button */
  font-size: 18px; /* bigger button text */
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.contact button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


/* FOOTER */
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 15px 0;
   margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .hero-text h2 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  nav ul { flex-direction: column; gap: 16px; margin-top: 10px; }
}
