/* =========================================================
   MAIN CSS – Imports
========================================================= */

@import url("./base.css");
@import url("./layout.css");
@import url("./components.css");
@import url("./sections.css");
@import url("./utilities.css");

/* =========================================================
   GLOBAL RESET
========================================================= */

body {
  margin: 0;
  padding: 0;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  background: #ffffff;
  margin: 0;
  padding: 0;
  border-bottom: none;
}

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

  min-height: 110px;          /* clean professional height */
  padding: 16px 40px;
}

/* =========================================================
   LOGO (FINAL SAFE SIZE)
========================================================= */

.site-logo {
  height: 85px;
  width: auto;
  object-fit: contain;

} 
@media (max-width: 768px) {
  .header-inner {
    min-height: 80px;
    padding: 12px 20px;
  }

  .site-logo {
    height: 60px;
  }
}
/* =========================================================
   MAIN / HERO (NO GAP GUARANTEE)
========================================================= */

main#home {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

main#home > section:first-child,
.hero,
.hero-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}





.hero-actions .btn-primary {
  background: #e0b43c;
  color: #111;
}

.hero-actions .btn-primary:hover {
  background: #cfa532;
  transform: translateY(-1px);
}

.hero-actions .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn-ghost {
  background: transparent;
  color: #d6d6d6;
}

.hero-actions .btn-ghost:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}