/* Header layout (matches your current look) */
header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 10;
}

.logo-link { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; color: inherit; }
.logo-img { display: block; width: 36px; height: 36px; border-radius: 6px; }
.logo-text { font-size: 1.25rem; font-weight: 600; color: #f5c542; }

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: color 0.3s;
}
nav a:hover { color: #f5c542; }
nav a.active::after {
  content: "";
  position: absolute; bottom: -5px; left: 0;
  width: 100%; height: 2px; background: #f5c542;
}
html { scroll-behavior: smooth; }
#about p {
  margin-bottom: 1rem; /* adjust 1–1.5rem for more breathing room */
}
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #f5c542;
  color: #0a0a0f;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 2rem;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d4a323;
  box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0f;
  color: #ffffff;
  line-height: 1.6;
}

header {
  position: fixed;
  width: 100%;
  background-color: rgba(10, 10, 15, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f5c542;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f5c542;
}

nav a:hover {
  color: #f5c542;
}

/* Hero (single source of truth) */
.hero { 
  position: relative; 
  height: 100vh; 
  overflow: hidden;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  padding: 3rem 1.5rem; 
  background: linear-gradient(rgba(10,10,15,0.5), rgba(10,10,15,0.5)), url('service-areas-hero.jpg') center/cover no-repeat; 
}
    .hero h1 { color: #fff; font-size: 2.25rem; margin-bottom: 0.75rem; }
    .hero p { max-width: 720px; margin: 0 auto 1rem; color: #e8e8e8; }
    .hero .cta-wrap { margin-top: 1rem; }

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(10, 10, 15, 0.4);
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.hero-text h1 {
  font-size: 3rem;
  color: #fff;
  padding: 1rem 2rem;
  background: rgba(10, 10, 15, 0.7);
  border-radius: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f5c542;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
}

.portfolio-item img,
.portfolio-item video {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover img,
.portfolio-item:hover video {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.cta {
  text-align: center;
  margin-top: 4rem;
}

.cta a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #f5c542;
  color: #0a0a0f;
  text-decoration: none;
  border-radius: 2rem;
  transition: background-color 0.3s;
}

.cta a:hover {
  background-color: #d4a323;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #0a0a0f;
  font-size: 0.875rem;
  color: #666;
}

.vertical-video {
  width: 100%;
  max-height: 600px;
  border-radius: 0.5rem;
  object-fit: contain;
}

.services-column {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

button[type="submit"]:hover {
  background-color: #d4a323;
  box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f5c542;
}

@media (max-width: 480px) {
  .logo-img {
    width: 28px;
    height: 28px;
  }
  .logo-text {
    font-size: 1.1rem;
  }
}
