@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --dark-brown: #453325;
  --dark-brown-2: #332b20;
  --mustard-gold: #b99700;
  --mustard-gold-dark: #a88700;
  --cream: #f3f0e8;
  --warm-white: #f8f5ed;
  --text-brown: #3b3022;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* ===== HOMEPAGE — DARK BROWN HERO ===== */

.hero {
  background: #453325;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== ANIMATED MARQUEE BANNERS ===== */

.brand-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--warm-white);
  background: #453325;
}

.brand-marquee.top {
  height: 36px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}

.brand-marquee.bottom {
  height: 44px;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 1px;
}

.brand-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-left 22s linear infinite;
}

.brand-marquee.reverse .brand-marquee-track {
  animation: marquee-right 22s linear infinite;
}

.brand-marquee-track span {
  display: inline-block;
  padding-right: 40px;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ===== HERO CONTENT ===== */

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 40px 24px 50px;
}

.logo-area {
  margin-top: 45px;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo-area img {
  width: 380px;
  max-width: 80vw;
  height: auto;
  display: block;
}

.logo-placeholder {
  width: 380px;
  max-width: 80vw;
  height: auto;
  position: relative;
  margin: 0 auto;
}

.logo-house {
  width: 100%;
  height: 100%;
  position: relative;
}

.logo-roof {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 100px solid var(--mustard-gold);
  position: absolute;
  top: 0;
  left: 0;
}

.logo-body {
  width: 260px;
  height: 160px;
  background: #453325;
  position: absolute;
  bottom: 0;
  left: 20px;
  border: 3px solid var(--mustard-gold);
}

.logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: 4px;
  text-align: center;
  line-height: 1.1;
  z-index: 2;
}

/* ===== ANIMATED GOLD/BRONZE SLOGAN ===== */

.slogan {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    #8a5a18,
    #b8860b,
    #d4af37,
    #f5d77a,
    #a66a1f,
    #d4af37
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldTextMove 6s ease-in-out infinite;
}

@keyframes goldTextMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--warm-white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.down-arrow {
  font-size: 48px;
  color: var(--mustard-gold);
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* ===== HOMEPAGE — GOLD SECTION ===== */

.recipe-access {
  background: var(--mustard-gold);
  min-height: 620px;
  position: relative;
}

.recipe-access-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 65px 70px 80px;
  position: relative;
  min-height: 620px;
}

.recipe-access-top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.food-recipes-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  border: 2px solid var(--warm-white);
  border-radius: 999px;
  background: transparent;
  color: var(--warm-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.food-recipes-btn:hover {
  background: var(--warm-white);
  color: #453325;
}

.explanatory-text {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 1px;
  color: var(--warm-white);
  max-width: 620px;
}

.inspiration-text {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.5px;
  color: var(--warm-white);
  max-width: 620px;
  position: absolute;
  left: 70px;
  bottom: 80px;
}

/* ===== RECIPES PAGE ===== */

.recipes-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--text-brown);
  padding: 80px 70px;
}

.recipes-heading {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-brown);
  margin-bottom: 70px;
}

.recipes-layout {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1150px;
  margin: 0 auto;
}

.recipe-category-list {
  width: 320px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.recipe-category-button {
  width: 300px;
  height: 64px;
  border: 2px dashed var(--text-brown);
  border-radius: 999px;
  background: transparent;
  color: var(--text-brown);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.recipe-category-button:hover {
  background: var(--text-brown);
  color: var(--cream);
}

.recipe-category-button.active {
  background: var(--text-brown);
  color: var(--cream);
}

.pdf-display-area {
  flex: 1;
  max-width: 650px;
}

.pdf-section {
  display: none;
}

.pdf-section.active {
  display: block;
}

.pdf-section h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-brown);
  margin-bottom: 20px;
}

.pdf-section p,
.pdf-section a {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-brown);
}

.pdf-section a {
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
}

.pdf-section a:hover {
  text-decoration: underline;
}

.pdf-welcome {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-brown);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 45px;
  }

  .brand-marquee.top {
    font-size: 16px;
    height: 30px;
  }

  .brand-marquee.bottom {
    font-size: 16px;
    height: 30px;
  }

  .logo-area img {
    width: 260px;
    max-width: 85vw;
  }

  .logo-placeholder {
    width: 260px;
    max-width: 85vw;
  }

  .slogan {
    font-size: 19px;
    letter-spacing: 1.5px;
    padding: 0 24px;
    margin-bottom: 50px;
  }

  .subtitle {
    font-size: 20px;
  }

  .down-arrow {
    font-size: 36px;
  }

  .recipe-access-inner {
    padding: 50px 24px;
    min-height: auto;
  }

  .recipe-access-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .inspiration-text {
    position: static;
    margin-top: 100px;
    text-align: left;
  }

  .recipes-page {
    padding: 55px 24px;
  }

  .recipes-heading {
    font-size: 26px;
    letter-spacing: 4px;
    margin-bottom: 45px;
  }

  .recipes-layout {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }

  .recipe-category-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .recipe-category-button {
    width: 100%;
    max-width: 300px;
    height: 54px;
    font-size: 17px;
  }

  .pdf-display-area {
    width: 100%;
  }
}
