:root {
  --burgundy: #6b0f1a;
  --cream: #f5e6cc;
  --brown: #3b2f2f;
  --dark: #1a1a1a;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

/* GLOBAL */
body {
  margin: 0 ;
  font-family: 'Libre Baskerville', serif;
  background-color: var(--dark);
  color: var(--cream);
}


/* HEADER */
.header {
  background-color: #6b0f1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 3px solid var(--brown);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dog-logo {
  height: 55px;
}

.logo-text {
  font-family: 'Playball', cursive;
  font-size: 2.2rem;
  margin: 0;
}

/* NAV */
.nav a {
  color: var(--cream);
  text-decoration: none;
  margin-left: 25px;
  transition: 0.3s;
}

.nav a:hover {
  color: #d4a373;
}

/* HERO */
.hero {
  height: 90vh;
  background: url(Images/jazz-bg.gif) center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

/* smoky overlay */
.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--cream);
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-size: 3rem;
  font-family: 'Playball', cursive;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  background-color: var(--burgundy);
  color: var(--cream);
  padding: 12px 25px;
  text-decoration: none;
  border: 1px solid var(--cream);
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--cream);
  color: var(--burgundy);
}

.hero-overlay .btn {
  font-size: 1.3rem;
  padding: 14px 34px;

  border: 2px solid #c9a96e;

  box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}

/* SECTIONS */

.section-row {
  display: flex;
  gap: 20px;
  padding: 40px;
}

.section-row .section {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

.section {
  padding: 80px 40px;
  text-align: center;
  background-color: var(--dark);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  pointer-events: none;
}

.section.alt {
  background-color: var(--brown);
}

.section h2 {
  font-family: 'Playball', cursive;
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: 8px auto 0;
  background: linear-gradient(to right, #c9a96e, transparent);
}

.section p {
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.section h2,
.section p,
.section .section-btn {
  position: relative;
  z-index: 1;
}

/* FOOTER */
.footer {
  background-color: var(--burgundy);
  text-align: center;
  padding: 20px;
  border-top: 3px solid var(--brown);
}

.section-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #c59d5f;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
  transition: all 0.3s ease;
}


.section-btn:hover::before,
.btn:hover::before {
  left: 125%;
}

.section-btn:hover {
  background-color: #a67c3d;
  color: white;
}

.btn {
  padding: 12px 25px;
  background-color: #c59d5f;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background-color: #a67c3d;
  color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.5);
}

/* CALENDAR SECTION */
.calendar-section {
  text-align: center;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* DAY CARD */
.calendar-day {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #c9a96e;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-day:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* DAY NAME */
.calendar-day h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #c9a96e;
}

/* DATE */
.calendar-date {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* EVENT TEXT */
.calendar-event {
  font-size: 0.9rem;
  color: #ddd;
}

/* HIGHLIGHTED DAY */
.calendar-day.highlight {
  background-color: rgba(201, 169, 110, 0.2);
  border: 1px solid #c9a96e;
}

.calendar-month {
  font-family: 'Playball', cursive;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* EVENT DETAILS PANEL */
.event-details {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #c9a96e;
  border-radius: 10px;
  background: rgba(0,0,0,0.7);
  text-align: center;
}

.event-details h3 {
  font-family: 'Playball', cursive;
  font-size: 1.8rem;
}

.event-image {
  width: 100%;
  max-width: 400px;
  margin: 15px auto;
  border-radius: 10px;
  display: block;
  border: 1px solid #c9a96e;
}

/* MOBILE */
@media (max-width: 768px) {
  .calendar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-overlay .btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1.2rem;
  background-color: #c9a96e;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-overlay .btn:hover {
  background-color: #b79b59;
  color: #fff;
}

/* ABOUT SECTION */
/* ABOUT HERO */
.about-hero {
  height: 60vh;
  background: url(Images/abouthero.gif) center/cover no-repeat;
  position: relative;
}

.about-hero .hero-overlay p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}

/* SPLIT LAYOUT */
.about-split {
  display: flex;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
  background: linear-gradient(to right, #1a1a1a, #111);
}

.about-split.reverse {
  flex-direction: row-reverse;
  background: linear-gradient(to left, #1a1a1a, #111);
}

.about-text {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
  backdrop-filter: blur(4px);
}

.about-text h2 {
  font-family: 'Playball', cursive;
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(to right, #c9a96e, transparent);
}

.about-text p {
  line-height: 1.6;
  max-width: 500px;
}

.about-text:hover {
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.25);
  transition: 0.3s;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c9a96e;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-split {
    flex-direction: column;
  }

  .about-split.reverse {
    flex-direction: column;
  }
}

/* HISTORY SECTION */

/* HISTORY HERO */
.history-hero {
  height: 60vh;
  background: url(Images/historyhero.gif) center/cover no-repeat;
  position: relative;
}

.history-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.5), rgba(0,0,0,0.95));
}

/* TIMELINE CONTAINER */
.timeline {
  display:flex; 
  gap: 40px;
  padding: 120px 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  position: relative;
  align-items: center;
}

/* HORIZONTAL LINE */
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c9a96e;
  transform: translateY(-50%);
  z-index: 0;
  box-shadow: 0 0 15px rgba(201,169,110,0.4);
}

/* ITEM */
.timeline-item {
  position: relative;
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: center;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0.4;
  transform: scale(0.85);
  z-index: 2;
}

/* ACTIVE / HOVER STATE */
.timeline-item:hover {
  opacity: 1;
  transform: scale(1);
}

.timeline:hover .timeline-item {
  opacity: 0.2;
}

.timeline .timeline-item:hover {
  opacity: 1;
}

/* DOT */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #c9a96e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(201,169,110,0.6);
}

/* IMAGE (TOP) */
.timeline-image {
  margin-bottom: 80px;
}

.timeline-image img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(201,169,110,0.4);
  box-shadow: 0 0 20px rgba(201,169,110,0.2);
  transition: transform 0.4s ease;
}

.timeline-item:hover img {
  transform: scale(1.08);
}

/* CONTENT (BOTTOM) */
.timeline-content {
  margin-top: 80px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(6px);
  max-width: 260px;
  transition: transform 0.4s ease;
}

/* YEAR */
.timeline-year {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #c9a96e;
  font-family: 'Playball', cursive;
}

/* OPTIONAL: CENTER EMPHASIS (carousel feel) */
.timeline-item:focus,
.timeline-item:active {
  opacity: 1;
  transform: scale(1.05);
}

/* MENU HERO */
.menu-hero {
  height: 60vh;
  background: url(Images/menuhero.gif) center/cover no-repeat;
  position: relative;
}

.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* MENU ITEM CARD */
.menu-item {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-align: center;
}

.menu-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.2);
}

/* TITLE */
.menu-item h3 {
  font-family: 'Playball', cursive;
  color: #c9a96e;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.menu-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 10px;
}

/* PRICE */
.menu-item span {
  font-weight: bold;
  color: #c9a96e;
}

/* IMAGE CONTAINER */
.menu-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

/* IMAGE */
.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.menu-item:hover .menu-image img {
  transform: scale(1.1);
}

/* FEATURED ITEM */
.menu-item.featured {
  border: 2px solid #c9a96e;
  box-shadow: 0 0 20px rgba(201,169,110,0.25);
  transform: scale(1.03);
  position: relative;
}

/* GOLD LABEL */
.menu-item.featured::before {
  content: "Signature";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c9a96e;
  color: black;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

/* CONTACT HERO */
.contact-hero {
  height: 60vh;
  background: url(Images/contacthero.gif) center/cover no-repeat;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}

/* CONTACT LAYOUT */
.contact-container {
  display: flex;
  gap: 40px;
  padding: 80px 40px;
  background: linear-gradient(to right, #1a1a1a, #111);
}

/* LEFT INFO */
.contact-info {
  flex: 1;
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(4px);
}

.contact-info h2 {
  font-family: 'Playball', cursive;
  color: #c9a96e;
}

/* FORM */
.contact-form {
  flex: 1;
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(4px);
}

.contact-form h2 {
  font-family: 'Playball', cursive;
  color: #c9a96e;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(201,169,110,0.4);
  background: rgba(0,0,0,0.6);
  color: var(--cream);
  border-radius: 5px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%) contrast(1.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}