@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400;500;600&display=swap');

/* GLOBAL */
:root {
  --gold: #D4AF37;
  --black: #0f0f0f;
  --white: #ffffff;
  --gray: #777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  padding-top: 80px;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero.hero-small {
  min-height: 60vh;
  padding-top: 80px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero.light-overlay .overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 20px;
  width: 100%;
}

.hero.hero-dark-text .hero-content {
  color: var(--black);
}

.hero.hero-dark-text .hero-content p {
  color: #555;
}

/* Specific Backgrounds */
.bg-home {
  background: url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?q=80&w=2000') center/cover no-repeat;
}

.bg-tshirt {
  background: url('https://images.unsplash.com/photo-1520975922203-bc0b6b6f6c0b') center/cover no-repeat;
}

.bg-jackets {
  background: url('https://images.unsplash.com/photo-1600180758890-6b94519a8ba3') center/cover no-repeat;
}

.bg-shirts {
  background: url('https://images.unsplash.com/photo-1603252109303-2751441dd157') center/cover no-repeat;
}

.bg-polos {
  background: url('https://images.unsplash.com/photo-1596755389378-c31d21fd1273') center/cover no-repeat;
}

.bg-knitwear {
  background: url('https://images.unsplash.com/photo-1574180566232-aaad1b5b8450') center/cover no-repeat;
}

.hero-logo {
  height: 120px;
  margin-bottom: 20px;
}

.hero-logo.hero-logo-small {
  height: auto;
  width: 90px;
  filter: grayscale(100%) brightness(0);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero.hero-small h1 {
  font-family: 'Segoe UI', sans-serif;
  font-size: 42px;
  font-weight: 400;
}

.btn {
  background: var(--gold);
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 30px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #a8892f;
}

/* SECTION */
.section {
  padding: 100px 10%;
  text-align: center;
}

.section.light {
  background: #fafafa;
}

.section h2 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.sub-text {
  max-width: 700px;
  margin: auto;
  color: var(--gray);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.card.link-card {
  padding: 0;
  justify-content: center;
  align-items: center;
}

.card.link-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
}

.card.link-card:hover {
  background: var(--gold);
  transform: translateY(-5px);
}

.card.link-card:hover a {
  color: white;
}

.box {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  transition: 0.3s;
  background: var(--white);
  flex: 1;
}

.box:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.box h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* TABLE  */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th,
td {
  padding: 15px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  color: var(--gold);
  font-weight: 600;
}

/* PROCESS */
.process {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.process-step {
  padding: 20px;
  border-bottom: 2px solid var(--gold);
  font-weight: 500;
  min-width: 140px;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.process-step:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-arrow {
  color: var(--gold);
  font-size: 24px;
  transition: 0.3s ease;
}

/* CONTACT */
.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.contact-info {
  text-align: left;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
}

form {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* CTA  */
.cta {
  text-align: center;
  margin-top: 40px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FOOTER  */
footer {
  background: var(--black);
  color: #aaa;
  text-align: center;
  padding: 20px 20px;
}

.footer-light {
  background: #f8f8f8;
  color: #111;
}

footer p {
  margin-bottom: 5px;
}

.no-wrap {
  white-space: nowrap;
}


@media (max-width: 768px) {
  .nav {
    height: 80px;
    padding: 0 5%;
  }

  .nav-logo {
    height: 65px;
    width: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 76px;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    margin: 8px 0;
    font-size: 18px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero.hero-small h1 {
    font-size: 32px;
  }

  .section {
    padding: 60px 5%;
  }

  .process {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Thank you page specific */
.thankyou-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}