/* ==============
   Base
   ============== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #050914;
  color: #e5ecf7;
  line-height: 1.6;
}

/* Containers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Links */

a {
  color: #ffb86c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==============
   Header / Nav
   ============== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    to right,
    rgba(5, 9, 20, 0.96),
    rgba(5, 9, 20, 0.96)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-sub {
  font-size: 0.8rem;
  opacity: 0.7;
}

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

.nav a {
  font-size: 0.9rem;
  color: #e5ecf7;
  opacity: 0.8;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.1rem;
}
.hero {
  padding-bottom: 4rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb86c, #ff956c);
  transition: width 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

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

/* ==============
   Hero
   ============== */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(5, 9, 20, 0.95), rgba(8, 18, 40, 0.9)),
    url("images/hero.jpg") center center / cover no-repeat;
  color: #f5f7ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 184, 108, 0.25),
    transparent 55%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 4rem 0;
  max-width: 650px;
}
.hero-content {
  padding-top: 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 9, 20, 0.7);
  margin-bottom: 0.9rem;
}
.hero h1 br {
  display: block;
}
.hero h1 {
  font-size: clamp(2.1rem, 3vw + 1.8rem, 3.1rem);
  margin: 0 0 0.8rem;
  line-height: 1.1;
}

.hero h1 .accent {
  color: #ffb86c;
}

.hero-sub {
  font-size: 0.98rem;
  max-width: 520px;
  color: rgba(230, 235, 250, 0.9);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 18, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c5d2eb;
}

/* ==============
   Buttons
   ============== */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb86c, #ff956c);
  color: #1b1210;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-ghost {
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #e5ecf7;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.btn-full {
  width: 100%;
}

/* ==============
   Sections
   ============== */

main {
  background: radial-gradient(circle at top, #0a1020 0, #050914 40%, #04060c 100%);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #060b19 0, #050914 45%, #04060c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section h2 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-intro {
  font-size: 0.95rem;
  max-width: 560px;
  color: rgba(220, 230, 250, 0.85);
  margin-bottom: 1.7rem;
}

/* Two-column layout */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 1.75rem;
  align-items: flex-start;
}

/* Cards / Features */

.card {
  border-radius: 1rem;
  background: radial-gradient(circle at top left, #141b33 0, #090f20 55%, #060914 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem 0.75rem;
  align-items: flex-start;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 108, 0.1);
  border: 1px solid rgba(255, 184, 108, 0.4);
  font-size: 1.1rem;
}

.feature h3 {
  font-size: 1rem;
  margin: 0 0 0.15rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(215, 226, 250, 0.85);
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.9rem;
}

.checklist li::before {
  content: "•";
  color: #ffb86c;
  display: inline-block;
  width: 1rem;
  margin-left: 0;
}

.checklist li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.small-note {
  font-size: 0.85rem;
  color: rgba(204, 214, 240, 0.8);
}

/* ==============
   Forms
   ============== */

.contact-form {
  max-width: 520px;
  margin-top: 1.2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
}

label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  color: rgba(199, 210, 238, 0.9);
}

input,
textarea {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 9, 20, 0.85);
  color: #e5ecf7;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(149, 161, 196, 0.9);
}

input:focus,
textarea:focus {
  border-color: #ffb86c;
  box-shadow: 0 0 0 1px rgba(255, 184, 108, 0.55);
  background: rgba(5, 9, 20, 0.98);
}

/* ==============
   Gallery
   ============== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  display: block;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, #141b33 0, #070b17 55%, #05070f 100%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item .caption {
  display: block;
  font-size: 0.85rem;
  padding: 0.5rem 0.6rem 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(214, 224, 245, 0.92);
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 184, 108, 0.55);
  text-decoration: none;
}

/* ==============
   Footer
   ============== */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #040611;
  padding: 1.2rem 0;
  margin-top: 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(168, 181, 213, 0.9);
}

/* ==============
   Responsive
   ============== */

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .nav {
    gap: 0.9rem;
  }

  .hero {
    min-height: 65vh;
  }

  .hero-content {
    padding: 3rem 0 3.5rem;
  }
/* --- Mini Homepage Gallery --- */

.mini-showcase {
  padding: 2rem 0 3rem 0;
}

.mini-title {
  text-align: center;
  font-size: 1.4rem;
  color: #eee;
  margin-bottom: 1rem;
  font-weight: 400;
}

.mini-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mini-gallery img {
  width: 30%;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mini-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-card {
    margin-top: 0.75rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badge {
    font-size: 0.72rem;
  }
}
