/*
Theme Name: Hydemax Export
Theme URI: https://hydemax.example
Author: Hydemax
Author URI: https://hydemax.example
Description: A clean B2B export website theme for Hydemax water adventure products.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: hydemax-export
*/

:root {
  --navy: #123f5a;
  --teal: #0a8fa0;
  --aqua: #25cddd;
  --aqua-soft: #eafcff;
  --coral: #ff7d5c;
  --ink: #163447;
  --muted: #5f7784;
  --line: #d8edf1;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(10, 143, 160, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #f7fdff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 237, 241, 0.8);
  backdrop-filter: blur(16px);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 12px 26px rgba(10, 143, 160, 0.24);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.menu a:hover {
  color: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(18, 63, 90, 0.2);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 42px;
  background:
    radial-gradient(circle at 78% 16%, rgba(37, 205, 221, 0.28), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #eefcff 55%, #c7f1f4 100%);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -110px;
  width: 70%;
  height: 270px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.05;
}

h1 {
  max-width: 680px;
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #406273;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(10, 143, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-visual::before {
  position: absolute;
  right: 3%;
  bottom: 48px;
  width: 72%;
  height: 62px;
  content: "";
  border-radius: 50%;
  background: rgba(10, 143, 160, 0.16);
  filter: blur(2px);
}

.surf-upper,
.surf-lower,
.kart-boat {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(16, 76, 92, 0.22));
}

.surf-upper {
  top: 22px;
  right: -18px;
  width: min(760px, 110%);
  transform: rotate(-5deg);
}

.surf-lower {
  right: -10px;
  bottom: 18px;
  width: min(720px, 106%);
  transform: rotate(-8deg);
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 660px;
  font-size: clamp(34px, 4vw, 52px);
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-media {
  display: grid;
  min-height: 300px;
  place-items: center;
  background: linear-gradient(135deg, #eaffff, #ffffff);
}

.product-media img {
  width: 94%;
  max-height: 310px;
  object-fit: contain;
}

.product-body {
  padding: 26px;
}

.product-body h3 {
  font-size: 26px;
}

.product-body p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-list span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--aqua-soft);
  font-size: 12px;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.feature h3 {
  font-size: 20px;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

.markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.market {
  min-height: 164px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.market:nth-child(2n) {
  background: linear-gradient(135deg, var(--teal), var(--aqua));
}

.market h3 {
  color: var(--white);
  font-size: 22px;
}

.market p {
  margin-bottom: 0;
  opacity: 0.88;
}

.inquiry {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #0a8fa0, #123f5a);
}

.inquiry h2,
.inquiry h3 {
  color: var(--white);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.inquiry p {
  color: rgba(255, 255, 255, 0.82);
}

.form-box {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  width: 100%;
  min-height: 48px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfeff;
  font: inherit;
}

textarea.field {
  min-height: 126px;
  padding-top: 12px;
  resize: vertical;
}

.site-footer {
  padding: 42px 0;
  color: #d8edf1;
  background: var(--navy);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .inquiry-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .feature-grid,
  .markets,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-visual {
    min-height: 330px;
  }

  .surf-upper {
    top: 0;
    width: 115%;
  }

  .surf-lower {
    width: 112%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
