/* Novara Static Website Styles */
:root {
  --gold: rgb(251, 206, 40);
  --teal: rgb(5, 26, 28);
  --white: #ffffff;
  --black: #111111;
}

::selection {
  background: #111111;
  color: #ffffff;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* Header */
header {
  background: var(--gold);
  padding: 16px 0;
}

.company-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

header .logo {
  color: var(--teal);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

header nav a {
  color: var(--teal);
  font-weight: 600;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  margin: 5px 0;
}

#menu-check {
  display: none;
}

/* Hero Section */
.hero {
  background: var(--teal);
  padding: 80px 0 100px;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero .highlight {
  color: var(--gold);
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
}

.hero-catalogue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 32px;
  background: none;
}

.hero-catalogue svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Catalogue Banner */
.catalogue-banner {
  background: var(--gold);
  padding: 20px 0;
  text-align: center;
}

.catalogue-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.catalogue-banner p {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
}

.catalogue-banner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
}

.catalogue-banner svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Sections */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  text-align: center;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

/* Shop CTA Section */
.shop-cta {
  background: #6ee7b7;
  text-align: center;
  padding: 60px 0;
}

.shop-cta h2 {
  color: var(--teal);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.shop-cta p {
  color: var(--teal);
  font-size: 16px;
  margin-bottom: 28px;
}

.shop-button {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  text-decoration: none;
  border: 2px solid var(--teal);
}

.shop-button:hover {
  background: transparent;
  color: var(--teal);
}

/* About Section */
.about {
  background: rgba(5, 26, 28, 0.03);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--teal);
}

.contact-item p {
  font-size: 14px;
  color: #444;
}

/* Footer */
footer {
  background: var(--teal);
  padding: 40px 0;
  text-align: center;
}

footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

footer .logo {
  margin-bottom: 16px;
}

footer nav {
  justify-content: center;
  margin-bottom: 24px;
}

footer nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */

/* Tablet (541px - 768px) */
@media (max-width: 768px) {
  .company-title {
    font-size: 28px;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .hero {
    padding: 60px 0 80px;
  }

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

  .hero p {
    font-size: 16px;
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .shop-cta {
    padding: 48px 0;
  }

  .shop-cta h2 {
    font-size: 26px;
  }

  nav {
    gap: 20px;
  }

  footer nav {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* Mobile (max 540px) */
@media (max-width: 540px) {
  .company-title {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }

  /* Hamburger menu */
  .menu-toggle {
    display: block;
  }

  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gold);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  header nav a {
    padding: 12px 24px;
    font-size: 15px;
  }

  #menu-check:checked ~ nav {
    display: flex;
  }

  .header-row {
    position: relative;
  }

  /* Hero */
  .hero {
    padding: 48px 0 64px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta,
  .hero-catalogue {
    width: 80%;
    text-align: center;
    justify-content: center;
  }

  /* Catalogue banner */
  .catalogue-banner {
    padding: 16px 0;
  }

  .catalogue-banner .container {
    flex-direction: column;
    gap: 12px;
  }

  .catalogue-banner p {
    font-size: 13px;
  }

  /* Sections */
  section {
    padding: 48px 0;
  }

  section h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    padding: 24px 20px;
  }

  .shop-cta {
    padding: 40px 0;
  }

  .shop-cta h2 {
    font-size: 22px;
  }

  .shop-cta p {
    font-size: 14px;
  }

  .shop-button {
    font-size: 14px;
    padding: 14px 32px;
  }

  .about-content p {
    font-size: 15px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  footer nav {
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    font-size: 20px;
  }
}

/* Small phones (max 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .company-title {
    font-size: 17px;
    letter-spacing: 0.03em;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-cta,
  .hero-catalogue {
    width: 90%;
    padding: 12px 20px;
    font-size: 13px;
  }
}
