/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  padding-top: 0px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;

  /* ✅ YELLOW LINE */
  border-bottom: 2px solid orange;
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: bold;
}

/* NAV */
nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
}

nav a.active {
  color: orange;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* IMAGE FULL WIDTH */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY TEXT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* TEXT */
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  background: orange;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  font-weight: bold;
}

/* 🔥 ADD THIS JUST BELOW */
.btn:hover {
  background: #cc8400 !important;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,165,0,0.4);
}

/* SECTIONS */
.section {
  padding: 80px 40px;
  text-align: center;
}

.section h2 {
  margin-bottom: 25px;
}

/* CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px; /* slightly improved spacing */
}

.card {
  background: #111;
  padding: 25px;
  width: 260px;
  border: 1px solid #222;

  display: block;            /* 🔥 makes full card clickable */
  text-decoration: none;     /* remove underline */
  color: #fff;               /* keep text white */
  text-align: center;        /* cleaner look */

  transition: all 0.3s ease; /* smooth hover */
  cursor: pointer;           /* UX improvement */
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-6px);
  border: 1px solid #f5a000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
/* FORM */
form input,
form textarea {
  width: 300px;
  padding: 10px;
  margin: 8px 0;
  border: none;
}

form textarea {
  height: 100px;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  background: #111;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  nav a {
    margin-left: 10px;
    font-size: 12px;
  }

  .hero-content {
    width: 90%;
  }
}

/* ===== PREMIUM HOVER & UI (SAFE ADDITION) ===== */

/* Smooth feel */
* {
  transition: all 0.3s ease;
}

/* NAV HOVER */
nav a:hover {
  color: orange;
}

/* BUTTON HOVER */
.btn:hover {
  background: #ffb733;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,165,0,0.3);
}

/* CARD HOVER */
.card:hover {
  transform: translateY(-6px);
  border: 1px solid orange;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* FORM FOCUS */
form input:focus,
form textarea:focus {
  outline: none;
  border: 1px solid orange;
  box-shadow: 0 0 10px rgba(255,165,0,0.5);
}

/* FLOATING BUTTON (if used) */
div a:hover {
  transform: scale(1.05);
}
/* 🔥 ABOUT PAGE TEXT (CLEAN & PREMIUM) */
.about-text {
  max-width: 800px;     /* ONE width for all */
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
  color: #cfcfcf;
}

.about-text .lead {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.about-text .sub {
  color: #888;
  font-size: 14px;
  margin-bottom: 25px;
}

/* OPTIONAL: subtle heading improvement */
.section h2 {
  letter-spacing: 0.5px;
}
.highlight {
  color: orange;
  font-weight: 600;
}

/* 🔥 ABOUT – PREMIUM CLEAN STYLE */
.about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.9;
  color: #cfcfcf;
  font-size: 16px;
}

.about-text p {
  margin-bottom: 22px;
}

/* 🔥 STRONG FIRST LINE */
.about-text .lead {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
/* 🔥 PREMIUM TEXT SYSTEM */

body {
  color: #d6d6d6;   /* main text (not white anymore) */
}

/* headings stay strong */
h1, h2, h3 {
  color: #ffffff;
}

/* secondary text */
.sub {
  color: #9a9a9a;
}

/* paragraph refinement */
.about-text p,
.section p {
  color: #d6d6d6;
}

.card a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  color: #cfcfcf; /* LIGHT GREY (visible) */
  text-decoration: none;
  padding: 12px 18px;
  transition: 0.3s;
  z-index: 10;
}

.nav-arrow:hover {
  color: #f5a000; /* ORANGE ON HOVER */
}