/* =========================
   TOKENS
========================= */

:root {
  --cream: #f0e7c8;
  --terracotta: #b32000;
  --deep-brown: #4d1a00;
  --text-dark: #1c1c1c;
  --muted: #6d6d6d;
  --page-max-width: 18000px;
  --page-padding: 5px;
}

/* =========================
   BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--deep-brown);
  background: var(--cream);
  line-height: 1.6;
}

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

/* =========================
   HEADER
========================= */

.site-header {
  width: 100%;
  padding: 20px 0;
  position: relative;
  background: var(--deep-brown);
}

.header-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;                   /* prevent wrapping on mobile */
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.logo img {
  width: 150px;
  height: 30px;
  object-fit: cover;
  object-position: center;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--cream);
  font-size: 15px;
}

.subscribe-btn {
padding: 12px 28px;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: var(--deep-brown);
  color: var(--cream);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px;
  gap: 18px;
  border-top: 1px solid var(--cream);
}

.mobile-menu a {
  text-decoration: none;
  color: var(--cream);
  font-size: 16px;
}

.mobile-menu .subscribe-btn.mobile {
  text-align: right;
}

.mobile-menu.active {
  display: flex;
}

/* =========================
   LAYOUT
========================= */

.page {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: var(--page-padding);
}

.cover{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cover-container {
  position: relative;
  width: 100%;
  padding: 10px 0px;   /*added padding between cover and concept sections */
}

.cover img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  max-height: 90vh;          /* ← this limits max height */
  object-fit: cover;
}

.cover-text p {
  position: absolute;
  top: 10%;                     /* near the top – adjust 5%–15% to move up/down */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--cream);
  text-shadow: 0 3px 12px rgba(0,0,0,0.9); /* strong shadow for dark bread texture */
  z-index: 2;
  width: 90%;
  max-width: 900px;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
}

/* =========================
   HERO
========================= */

.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 10px;
}

.hero h1 {
  font-family: "Luxurious Script", cursive;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--deep-brown);
}

/* =========================
   CONCEPT
========================= */

.concept {
  background: var(--cream);
  padding: 20px 0;
  border-radius: 8px;
}

.concept-section {
  background: var(--deep-brown);           /* deep warm brown */
  color: var(--cream);                /* light cream text */
  padding: 40px 20px;
  font-family: 'Montserrat', serif;
}

.concept-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.concept-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.concept-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  object-fit: cover;
}

.concept-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.concept-title {
  font-family: 'Luxurious Script', cursive;
  font-size: 7.5rem;
  color: var(--terracotta);      
  font-weight: 500;
  margin: 0 0 20px;
  text-align: left;
  letter-spacing: 2px;
}

.concept-body {
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 30px;
}

.concept-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0 0 20px;
  color: var(--cream);
}

/* Responsive: Stack on smaller screens */

 
/* =========================
   LINEUP
========================= */
.lineup-section {
  font-family: 'Montserrat', serif;
  padding: 40px 20px;
  background: var(--cream); /* light to contrast with cards */
  text-align: center;
}
.lineup-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-end;
  justify-content: space-between;
}

.lineup-left {
  flex: 1 1 55%;
  min-width: 500px;
  display: flex;
  flex-direction: column;
}


.lineup-image::after {
content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, transparent 40%, rgba(77,26,0,0.12) 100%);
  border-radius: 20px;
  pointer-events: none;
}
.lineup-image {
  flex: 1 1 40%;
  min-width: 400px;
  display: flex;
  align-items: flex-start;          /* image starts at same top level as cards */
  justify-content: center;
}

.lineup-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 1000px;                /* prevents overflow / blank space at bottom */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(77, 26, 0, 0.35);
  filter: brightness(1.05) saturate(1.12) hue-rotate(8deg); /* warm match to cards */
}

.lineup-title {
  font-family: "Host Grotesk", sans-serif;
  font-size: 3.0rem;
  font-weight: 500;
  color: var(--deep-brown);
  letter-spacing: 0.2px;
  text-align: center;               /* ← centered as requested */
  margin: 0 auto 1.5rem;            /* centered + breathing room */
  width: fit-content;
}

.lineup-subtitle {
 font-family: 'Luxurious Script', cursive; 
 font-size: 3em; 
 opacity: 0.95;
 padding-right: 0.3em;   /* so that the P in lineup doesn't get cut off */
 padding-left: 0.1em;    /* so that the L in lineup doesn't get cut off */
 vertical-align: middle;
}

/* =========================
   CARDS
========================= */

.card {
  border-radius: 12px; 
  padding: 30px 20px;
  background-color: var(--deep-brown);
  transition: all 0.35s ease;
  /* box-shadow: 0 25px 60px rgba(212, 163, 115, 0.35); */
}

.card:hover {
  transform: translateY(-12px) scale(1.03);   /* lift + gentle zoom */
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);   /* deeper shadow */
  background-color: #9c5524;                  /* slightly lighter/warmer on hover */
  filter: brightness(1.08);                   /* subtle glow/brightness boost */
}

.card:hover .card-title {
  color: var(--gold-accent);                  /* or #fff or whatever your accent is */
  transform: translateY(-2px);                /* tiny lift for title */
  transition: all 0.35s ease;
}

.card-title {
  font-family: 'Host Grotesk', sans-serif; 
  font-size: 1.5rem; 
  margin: 0 0 15px;
      font-style: italic;
  font-weight: 1000;
  color: var(--terracotta);
}

.card-text {
  font-size: 1.15rem; 
  line-height: 1.5; 
  margin: 0;
  color: var(--cream);
}

.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 90%;
  width: 400px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #8B4513;
}

.modal-content h3 { margin-top: 0; color: #8B4513; }
.modal-content ul { padding-left: 1.2rem; }

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

.footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.social-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;                    /* space between logo and text */
  font-size: 16px;
  color: var(--cream);          /* or var(--deep-brown) if on light bg */
}

.ig-link:hover {
  color: #d4a373;               /* gold on hover */
}

.ig-logo {
  width: 24px;                  /* smaller and cleaner size */
  height: auto;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.ig-link:hover .ig-logo {
  transform: scale(1.15);       /* gentle zoom on hover */
}

.ig-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* =========================
   RESPONSIVE – MOBILE FIRST IMPROVEMENTS
========================= */
@media (max-width: 900px) {

  /* Global mobile spacing & readability */
  body {
    font-size: 16px;                /* base font readable on phone */
  }

  .page {
    padding: 16px;                  /* less side padding on small screens */
  }

  /* Header – make everything center and compact */
  .cover-text {
    top: 8%;
  }
  .cover-text p {
    font-size: 1rem;
  }
  
.cover img {
  width: 100%;
  display: block;
  object-fit: cover;
  /* margin-top: 00px; */
}
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* padding: 1px; */
  }

  .logo img {
    width: 120px;                  
     height: 30px;
  object-fit: cover;
  object-position: left;
  }

  /* .desktop-nav {
    display: none !important;
  } */

  /* Very large titles – scale down dramatically */
  .concept-title {
    font-size: 5.5rem !important;     /* was 7.5rem → way too big */
    text-align: center;
    line-height: 1.1;
  }
  .lineup-container {
    flex-direction: column;
    gap: 50px;
  }

   .lineup-left,
  .lineup-image {
    min-width: 100%;
  }
.lineup-left,
  .lineup-image {
    min-width: 100%;
  }

  .lineup-image img {
    max-height: 500px;
    border-radius: 16px;
  }
  .lineup-title {
    font-size: 2.2rem !important;
    text-align: center;
  }

  .lineup-subtitle {
    font-size: 2.8rem !important;
  }

  .card-title {
    font-size: 1.8rem !important;
  }

  /* Cards – stack vertically, full width, better spacing */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .card {
    padding: 24px 20px !important;
  }

  .card-text {
    font-size: 1.05rem !important;
  }

  /* Concept section – stack image/text vertically */
  .concept-container {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .concept-image img {
    border-radius: 8px;
  }

  .concept-text {
    text-align: center;
  }

  .concept-body,
  .concept-text p {
    font-size: 1.1rem !important;
    line-height: 1.6;
  }

  /* Footer – center everything */
  .footer {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px;
    padding: 32px 20px;
  }

  .social-ig,
  .ig-link {
    justify-content: center;
  }

  .ig-logo {
    width: 28px;
  }
}

/* Extra-small screens (phones < 480px) */
@media (max-width: 480px) {
  .concept-title {
    font-size: 3.8rem !important;
  }

  .lineup-container {
    flex-direction: column;
    gap: 50px;
  }

  .lineup-left,
  .lineup-image {
    min-width: 100%;
  }

.lineup-image img {
    max-height: 500px;
    border-radius: 16px;
  }
  .lineup-title {
    font-size: 1.2rem !important;
    text-align: center;
  }

  .lineup-subtitle {
    font-size: 2.8em !important;
  }

  .page {
    padding: 5px;
  }
}

