/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.6;
  background: #ffffff;
  color: #111111;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

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


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --charcoal: #111111;
  --accent: #f0d399;
  --accent-dark: #d9b26f;
  --text-light: #444444;
  --border-light: #d9d0b8;
}


/* =========================================================
   CONTAINER
========================================================= */

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


 /* === HEADER === */
  .header {
    background: var(--offwhite);
    color: var(--header-text);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    transition: all 0.35s ease;
  }
  
  .header.scrolled {
    background: rgba(26, 24, 22, 0.92);
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    background: linear-gradient(90deg, var(--accent), #e8d5b7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
  }
  
  .nav a {
    color: var(--header-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.28s ease;
  }
  
  .nav a:hover,
  .nav a.active {
    color: var(--accent);
  }
  
  .nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -6px;
    left: 0;
    background: var(--accent);
    transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  .nav a:hover::after,
  .nav a.active::after {
    width: 100%;
  }

  .logo img{
    width: 175px;
  }



  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--header-text);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
  }

  


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 2.4rem;

  border: none;
  border-radius: 50px;

  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  cursor: pointer;

  transition: all 0.3s ease;
}

.btn-primary {
  width: 100%;

  background: linear-gradient(
    145deg,
    var(--accent),
    #b8975c
  );

  color: #1a1816;

  box-shadow:
    0 12px 35px rgba(201, 169, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 50px rgba(201, 169, 110, 0.5);
}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-details-section {
  padding: 8rem 0;
  background: #f8f5f0;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 5rem;

  align-items: center;
}


/* PDF / IMAGE */

.product-details-image {
  position: relative;

  display: block;

  overflow: hidden;

  cursor: pointer;

  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-details-image img {
  display: block;

  width: 100%;

  border-radius: 18px;

  transition: transform 0.3s ease;
}

.download-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  transition: opacity 0.3s ease;
}

.download-overlay span {
  padding: 12px 20px;

  background: #ffffff;

  color: #222222;

  border-radius: 6px;

  font-weight: 600;
  font-size: 14px;
}

.product-details-image:hover .download-overlay {
  opacity: 1;
}

.product-details-image:hover img {
  transform: scale(1.03);
}


/* CONTENT */

.product-label {
  color: var(--accent-dark);

  font-size: 0.85rem;
  font-weight: 600;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

.product-details-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);

  line-height: 1.1;

  margin: 0.8rem 0 2rem;

  color: var(--charcoal);
}

.product-list {
  list-style: none;
}

.product-list li {
  display: flex;
  align-items: center;

  gap: 1rem;

  padding: 0.9rem 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  font-size: 1.05rem;
}

.product-list li span {
  color: var(--accent-dark);

  font-size: 1.2rem;
}


/* =========================================================
   CTA
========================================================= */

.product-cta {
  position: relative;

  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: #ffffff;

  background-image: url("charcuterie-basis.jpg");

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.product-cta-overlay {
  position: absolute;
  inset: 0;

  background-image: url("knife-cheese-wood.jpg");

  background-size: cover;
  background-position: center;
}

.product-cta-content {
  position: relative;
  z-index: 2;

  max-width: 750px;

  padding: 5rem 1.5rem;
}

.product-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);

  line-height: 1.1;

  margin: 1rem 0 1.5rem;

  background:
    linear-gradient(
      90deg,
      var(--accent),
      #e8d5b7,
      var(--accent)
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-cta-description {
  font-size: 1.15rem;

  color: #f5f0e9;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
  max-width: 1000px;

  margin: 0 auto;

  padding: 3rem;

  text-align: left;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.94)
    ),
    url("top-view-arrangement-different-types-cheese-with-copy-space.jpg");

  background-size: cover;
  background-position: center;

  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 2rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;

  margin-bottom: 0.6rem;

  color: var(--charcoal);

  font-size: 1.05rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 1.2rem 1.4rem;

  border: 1px solid #ddd;
  border-radius: 12px;

  font-family: inherit;
  font-size: 1.05rem;

  background: #fafafa;

  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--accent-dark);

  box-shadow:
    0 0 0 4px rgba(201, 169, 110, 0.15);

  background: #ffffff;
}

.form-group textarea {
  resize: vertical;

  min-height: 140px;
}

.form-note {
  margin-top: 1.5rem;

  text-align: center;

  color: #777777;

  font-size: 0.95rem;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 4rem 0 2rem;

  background: #111111;

  color: #aaaaaa;

  font-size: 0.95rem;
}

.footer-top {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 3rem;

  margin-bottom: 3rem;
}

.footer h4 {
  margin-bottom: 1.2rem;

  color: #ffffff;

  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 0.6rem 0;
}

.footer a {
  color: #aaaaaa;

  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin: 0.6rem 0;
}

.footer-bottom {
  padding-top: 2rem;

  border-top: 1px solid #222222;

  text-align: center;

  font-size: 0.9rem;
}

.footer-legal {
  margin-top: 1rem;
}

.footer-legal a {
  margin: 0 1rem;

  color: #888888;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .product-details-grid {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr;

    text-align: center;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .header-container {
    padding: 0.9rem 0;
  }

  .logo img {
    width: 160px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
  }

  .nav.mobile-active {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 1.4rem;

    padding: 1.5rem;

    background: #ffffff;

    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .product-details-section {
    padding: 5rem 0;
  }

  .contact-form {
    padding: 2rem 1.2rem;
  }

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

    gap: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .logo img {
    width: 140px;
  }

  .btn {
    padding: 0.9rem 1.7rem;

    font-size: 0.9rem;
  }

}