:root {
  --color-black: #111111;
  --color-dark-gray: #f5f5f5;
  /* Renamed to act as a light gray for backgrounds */
  --color-gold: #b37a00;
  --color-gold-hover: #d49200;
  --color-white: #ffffff;
  --color-text-main: #333333;
  --color-text-light: #666666;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-white);
  color: var(--color-text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-gold);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-black);
  letter-spacing: 1px;
}

.logo .highlight {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-black);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.banner {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  border: 3px solid var(--color-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gold);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
  gap: 2rem;
  /* Slight off-white for the hero area */
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content .highlight {
  color: var(--color-gold);
}

.hero-image {
  flex: 1;
  height: auto;
  min-height: 400px;
  /* Ensure some height */
  max-height: 80vh;
  object-fit: cover;
  border-radius: 8px;
  /* Optional: adds a nice touch like the other image */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Optional: adds depth */
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.hero-actions .btn {
  min-width: 180px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Light border */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Subtle shadow for depth on white */
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.feature-card h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

/* Full Service Section */
.full-service {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
}

.full-service-image-container {
  flex: 1;
}

.full-service-img {
  border-radius: 8px;
  border: 2px solid var(--color-gold);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.full-service-content {
  flex: 1;
}

/* Footer */
footer {
  background-color: #f9f9f9;
  padding: 3rem 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-info h4 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}



/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Space between image and text */
}

/* Logo Image Styling */
.logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero {
    height: auto;
    padding: 6rem 0 4rem;
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
    height: 300px;
    margin-top: 2rem;
    order: -1;
    flex: none;
    /* Reset flex */
  }

  .navbar {
    padding: 0.25rem 0.5rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .logo-img {
    max-height: 40px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0;
    align-items: center;
  }

  .nav-links a:not(.btn) {
    padding: 0.25rem;
    font-size: 0.9rem;
  }

  .nav-links .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .hero-content {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    margin: 0 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .full-service {
    flex-direction: column;
    gap: 2rem;
  }

  .full-service-image-container {
    width: 100%;
  }

  .full-service-content {
    width: 100%;
  }

  section {
    padding: 3rem 0;
  }
}