/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", Arial, sans-serif;
}

html,
body {
  background: #000;
  color: #fff;
  min-height: 100%;
  overflow-x: hidden;
}

/* ==================================== */
/* HERO SECTION                         */
/* ==================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  background-image: url("../images/zeeaudio_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* logo stays centered and never too large */
.hero-logo {
  width: min(76vw, 760px); /* doubled size */
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

/* smooth fade at bottom of hero */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20vh;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

/* ==================================== */
/* BELOW-HERO CONTENT                   */
/* ==================================== */
.below-hero {
  background: #121212;
  color: #fff;
  padding: clamp(32px, 6vw, 80px) 5vw;
  text-align: left;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.below-hero p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: #d9d9d9;
  margin-bottom: 1em;
}

a {
  color: #ffffff;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* contact button */
button,
.contact-button {
  padding: 10px 22px;
  font-size: 1rem;
  color: #fff;
  background-color: #e12d30;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

button:hover,
.contact-button:hover {
  background-color: #b51f26;
}

/* =========*

/* ==================================== */
/* CLIENTS SECTION                      */
/* ==================================== */
.clients {
  background: #181818; /* slightly lighter than below-hero to break it up */
  color: #fff;
  padding: clamp(40px, 7vw, 100px) 5vw;
  border-top: 2px solid #222; /* subtle divider */
  text-align: center;
}

.clients h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 0.6em;
  letter-spacing: 0.5px;
}

.clients p {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  color: #d9d9d9;
  max-width: 900px;
  margin: 0 auto;
}

.clients strong {
  color: #fff;
  font-weight: 600;
}

/* ==================================== */
/* FOOTER                               */
/* ==================================== */
.site-footer {
  background: #121212; /* same dark grey as below-hero */
  color: #aaa;
  padding: clamp(30px, 5vw, 60px) 5vw;
  text-align: center;
  border-top: 1px solid #222;
}

.site-footer p {
  font-size: clamp(12px, 1vw, 16px); /* slightly smaller */
  line-height: 1.5;
  margin: 0;
  color: #bfbfbf;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

.site-footer a:hover {
  text-decoration: none;
}

/* Smooth scrolling for anchor/JS scrolls */
html { scroll-behavior: smooth; }

/* Scroll hint button */
.scroll-hint {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;                  /* <-- ensures perfect centering */
  align-items: center;
  justify-content: center;
  width: 70px;                    /* slightly larger for balance */
  height: 70px;
  border-radius: 50%;
  border: none;
  background: #E12D30;            /* your red tone */
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
  outline: none;
  z-index: 3;
}

/* hover/active states */
.scroll-hint:hover {
  background: rgba(225,45,48,.85);   /* your red tone */
  border-color: rgba(225,45,48,1);
}
.scroll-hint:active { transform: scale(.96); }

/* gentle up/down float + fade to signal there's more below */
@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.scroll-hint svg {
  animation: floatDown 1.6s ease-in-out infinite;
}

/* ============================= */
/* SAMPLE AUDIO SECTION          */
/* ============================= */
.sample-audio {
  background: #161616;
  color: #fff;
  padding: clamp(40px, 7vw, 100px) 5vw;
  border-top: 2px solid #222;
  text-align: center;                /* centers everything inside */
}

.sample-audio h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 0.6em;
}

.sample-audio p {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #d9d9d9;
  margin: 0 auto 1.8em;              /* centers and adds bottom gap */
  max-width: 800px;                  /* limits width for nice reading line */
  line-height: 1.6;
}

.ap {
  max-width: 760px;
  margin: 0 auto;
  background: #1e1e1e;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 60px 1fr auto; /* first col matches button size */
  column-gap: 18px;                     /* add clear gap to stop overlap */
  align-items: center;
}

.ap-btn {
  width: 60px;   /* keep the same circle size you have now */
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: #E12D30;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}

.ap-btn:hover { background: #b51f26; }
.ap-btn:active { transform: scale(.97); }

/* show only one icon at a time */
.ap-btn .icon-pause { display: none; }

.ap-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #2b2b2b;
  border-radius: 999px;
  outline: none;
}
.ap-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #E12D30;
  margin-top: -4px; /* center over track */
}
.ap-progress::-moz-range-thumb {
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #E12D30;
}

.ap-time {
  font-size: 14px;
  color: #cfcfcf;
  letter-spacing: .2px;
  user-select: none;
  min-width: 110px;
  text-align: right;
}

/* ==================================== */
/* FIELD EXPERTISE / CAPABILITIES       */
/* ==================================== */
.capabilities {
  background: #181818;  /* slightly lighter than below-hero for contrast */
  color: #fff;
  padding: clamp(50px, 8vw, 110px) 5vw;
  border-top: 2px solid #222;
  text-align: center;
}

.capabilities h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 1.8em;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.cap-item {
  background: #1e1e1e;
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  transition: transform .25s ease, background .25s ease;
}

.cap-item:hover {
  transform: translateY(-4px);
  background: #202020;
}

.cap-icon {
  font-size: 2rem;
}

.cap-item p {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #d9d9d9;
  line-height: 1.6;
  margin: 0;
}
