/* Tropicale Clothing & Shoes
   Static responsive website
   Domain: tropicaleclothingvn.com
*/

:root {
  --teal: #087b78;
  --teal-dark: #05615e;
  --coral: #ff6f5b;
  --coral-dark: #ea5a49;
  --yellow: #ffe36b;
  --aqua: #d9f7f5;
  --blue: #cceef7;
  --pink: #ffdce0;
  --cream: #fff3bf;
  --ink: #263238;
  --muted: #66747b;
  --white: #ffffff;
  --line: #e6ecec;
  --max-width: 1160px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --shadow: 0 16px 40px rgba(22, 70, 70, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.top-stripe {
  height: 12px;
  background:
    linear-gradient(
      90deg,
      var(--teal) 0 25%,
      #ffd443 25% 50%,
      var(--coral) 50% 75%,
      #45c7d9 75% 100%
    );
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand img {
  width: 170px;
  height: auto;
}

.main-nav {
  justify-self: end;
  display: flex;
  gap: 34px;
  color: var(--teal-dark);
  font-weight: 700;
}

.main-nav a {
  padding-block: 10px;
}

.main-nav a:hover {
  color: var(--coral);
}

.button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  transition: 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-coral {
  background: var(--coral);
  color: var(--white);
}

.button-coral:hover {
  background: var(--coral-dark);
}

.button-teal {
  background: var(--teal);
  color: var(--white);
}

.button-teal:hover {
  background: var(--teal-dark);
}

.button-outline {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--teal);
}

.button-outline:hover {
  background: var(--aqua);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #e9fbf9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 38%;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0) 0 21%,
      rgba(255,228,112,.45) 21% 48%,
      rgba(255,220,224,.72) 48% 100%
    );
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: 0.2;
  pointer-events: none;
}

.hero-decoration-left {
  top: 0;
  left: -30px;
  background:
    repeating-linear-gradient(
      55deg,
      transparent 0 17px,
      rgba(8,123,120,.32) 17px 21px
    );
  clip-path: polygon(0 0, 80% 0, 35% 55%, 0 95%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 570px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: center;
  padding-block: 52px;
}

.location-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--teal-dark);
}

.hero-text {
  max-width: 570px;
  margin: 0 0 28px;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

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

.hero-photo-wrap {
  background: var(--white);
  padding: 8px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.section {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.centered {
  text-align: center;
}

.section-heading h2,
.sizes-banner h2,
.visit-info h2 {
  color: var(--teal-dark);
}

.section-heading h2 {
  margin: 4px 0 8px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.category-card {
  min-height: 275px;
  padding: 30px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-card h3 {
  margin: 16px 0 8px;
  color: var(--teal-dark);
  text-transform: uppercase;
  font-size: 1.38rem;
}

.category-card p {
  margin: 0;
  max-width: 260px;
}

.category-icon {
  width: 72px;
  height: 72px;
}

.category-icon svg {
  width: 100%;
  height: 100%;
}

.card-women {
  background: var(--cream);
  color: #dba000;
}

.card-women p {
  color: var(--ink);
}

.card-men {
  background: var(--blue);
  color: #23a9cc;
}

.card-men p {
  color: var(--ink);
}

.card-kids {
  background: var(--pink);
  color: var(--coral);
}

.card-kids p {
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  min-height: 180px;
  padding: 30px;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 22px;
  color: var(--white);
}

.feature-shoes {
  background: var(--teal);
}

.feature-accessories {
  background: var(--coral);
}

.feature-card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 2rem;
}

.feature-card p {
  margin: 0;
  max-width: 390px;
}

.feature-icon {
  width: 92px;
  height: 92px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.sizes-banner {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  min-height: 150px;
  background: var(--aqua);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
}

.sizes-content {
  position: relative;
  z-index: 1;
}

.sizes-banner h2 {
  margin: 5px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.sizes-subtitle {
  margin: 5px 0 0;
  font-size: 1.45rem;
}

.leaf {
  position: absolute;
  top: 20px;
  width: 170px;
  height: 115px;
  opacity: 0.13;
  background:
    repeating-linear-gradient(
      60deg,
      transparent 0 13px,
      var(--teal) 13px 17px
    );
}

.leaf-left {
  left: -28px;
  transform: rotate(-15deg);
}

.leaf-right {
  right: -28px;
  transform: scaleX(-1) rotate(-15deg);
}

.visit-section {
  padding-top: 0;
}

.visit-card {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  background: #fff5ca;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(74, 70, 30, 0.08);
}

.visit-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.visit-info {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-logo {
  width: 150px;
  margin-bottom: 14px;
}

.visit-info h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.contact-list {
  display: grid;
  gap: 13px;
}

.contact-list p {
  margin: 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-icon {
  color: var(--teal);
  font-weight: 800;
}

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

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 120px;
}

.footer-divider {
  width: 1px;
  height: 45px;
  background: #cdd6d5;
}

.footer-domain,
.footer-phone {
  color: var(--teal-dark);
  font-weight: 700;
}

.footer-spacer {
  flex: 1;
}

/* Tablet */
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .brand img {
    width: 145px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .hero::after {
    inset: 0;
    opacity: 0.8;
  }

  .hero-photo {
    height: 390px;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-photo-wrap img {
    min-height: 340px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 92px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 132px;
  }

  .main-nav {
    display: none;
  }

  .header-call {
    min-height: 44px;
    padding-inline: 17px;
    font-size: 0.9rem;
  }

  .hero-grid {
    padding-block: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .hero-photo {
    height: 290px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

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

  .category-card {
    min-height: 235px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 26px;
    gap: 14px;
    text-align: center;
    justify-items: center;
  }

  .feature-icon {
    width: 76px;
    height: 76px;
  }

  .feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.75rem;
    line-height: 1.1;
  }

  .feature-card p {
    max-width: 320px;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.5;
  }

  .sizes-banner {
    min-height: 175px;
    padding-inline: 20px;
  }

  .leaf {
    width: 120px;
  }

  .visit-photo-wrap img {
    min-height: 260px;
  }

  .visit-info {
    padding: 30px 24px;
  }

  .visit-actions .button {
    width: 100%;
  }

  .footer-inner {
    min-height: auto;
    padding-block: 28px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-divider {
    width: 72px;
    height: 1px;
  }

  .footer-spacer {
    display: none;
  }
}
