/* =========================================================
   MODERN CSS RESET (2025)
   Inspired by Andy Bell / Josh Comeau
   ========================================================= */

/* 1. Use a more intuitive box model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Allow percentage-based heights */
html,
body {
  height: 100%;
}
html {
  box-sizing: border-box;
}
/* 4. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* 9. Remove built-in form typography quirks */
button {
  background: none;
  border: none;
}

/* 10. Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* End of RESET */

/* =======================================================================
   THEME VARIABLES — SINGLE SOURCE OF TRUTH
   ======================================================================= */

/* -------------------------------------------------
   DEFAULT = LIGHT THEME
   ------------------------------------------------- */
:root {
  --body-bg: #ffffff;
  --header-background: #f0f0f0; /* slightly darker */
  /* NAV */
  --nav-height: 70px;
  --nav-text: #111;
  --nav-text-hover: #555;
  --nav-text-scrolled: #000;
  --nav-bg-scrolled: transparent;
  --dropdown-bg: rgba(39, 32, 32, 0.95);
  --dropdown-text: #111;
  --hamburger-bg: #111;
  --page-bg: #ffffff;
  --section-bg: #ffffff;

  /* TYPOGRAPHY */
  --heading-color: #1a1a1a; /* headers */
  --serving-heading: rgb(30, 9, 9);
  --body-text: #333333; /* paragraphs */
  --small-text: #4a4a4a; /* descriptions, meta */

  /* Footer Backgrounds */
  --footer-bg: #f9f9f9;
  --footer-text: #111;
  --footer-heading: #111;
  --footer-subtext: #201e1e;
  --footer-link: #111;
  --footer-link-hover: #201e1e;
  --footer-border: rgba(0, 0, 0, 0.1);

  /* UI */
  --submit-button: rgb(9, 44, 9);
  --submit-button-text: #fff;

  /* FORM SURFACE */
  --form-bg: #ffffff;
  --form-text: var(--body-text);
  --form-heading: var(--heading-color);
  --form-border: #cccccc;
  --form-input-bg: #fafafa;

  /* FORM ACCENT */
  --form-accent: #574fd2;
  --form-accent-soft: rgba(87, 79, 210, 0.15);

  /* ERRORS & SUCCESS */
  --error-bg: #ffe0e0;
  --error-border: #f5c2c2;
  --error-text: #a00;

  --success-bg: #e6f9ed;
  --success-border: #bde5c8;
  --success-text: #2d8a4e;

  /* SHADOWS */
  --form-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

  /* LOADER */
  --loader-bg: rgba(255, 255, 255, 0.85);
  --loader-spinner: #574fd2;
  --loader-spinner-track: #ddd;
}

/* -------------------------------------------------
   SYSTEM DARK MODE (ONLY IF NO MANUAL OVERRIDE)
   ------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  body:not(.light-theme) {
    --body-bg: #171616;
    --header-background: #030303; /* darker than body */
    /* NAV */
    --nav-text: #ffffff;
    --nav-text-hover: #dddddd;
    --nav-text-scrolled: #ffffff;
    --nav-bg-scrolled: transparent;
    --dropdown-bg: rgba(23, 22, 22, 0.95);
    --dropdown-text: #ffffff;
    --hamburger-bg: #ffffff;
    --page-bg: #171616;
    --section-bg: #171616;

    /* TYPOGRAPHY */
    --heading-color: #e6e6e6;
    --serving-heading: hsl(50, 30%, 57%);
    --body-text: #f8f3f3;
    --small-text: #efeaea;
    /* Footer Styling */
    --footer-bg: #171616;
    --footer-text: #e6e6e6;
    --footer-heading: #f1f1f1;
    --footer-subtext: #cfcfcf;
    --footer-link: #ffffff;
    --footer-link-hover: #ddd;
    --footer-border: rgba(255, 255, 255, 0.1);
    background-color: #171616;
    --form-heading: var(--heading-color);
    /* UI */
    --submit-button: rgb(214, 222, 214);
    --submit-button-text: #000;

    /* FORM SURFACE */
    --form-bg: #1e1d1d;
    --form-input-bg: #262525;
    --form-border: #3a3a3a;
    --form-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);

    --loader-bg: rgba(0, 0, 0, 0.7);
    --loader-spinner-track: #444;
  }
}

/* -------------------------------------------------
   MANUAL DARK THEME (USER TOGGLE)
   ------------------------------------------------- */
body.dark-theme {
  --body-bg: #171616;
  --header-background: #030303; /* darker than body */
  /* NAV */
  --nav-text: #ffffff;
  --nav-text-hover: #dddddd;
  --nav-text-scrolled: #ffffff;
  --nav-bg-scrolled: transparent;
  --dropdown-bg: rgba(23, 22, 22, 0.95);
  --dropdown-text: #ffffff;
  --hamburger-bg: #ffffff;

  /* TYPOGRAPHY */
  --heading-color: #e6e6e6;
  --serving-heading: rgb(245, 203, 119);
  --body-text: #f8f3f3;
    --small-text: #efeaea;

  /* FOOTER */
  --footer-bg: #171616;
  --footer-text: #e6e6e6;
  --footer-heading: #f1f1f1;
  --footer-subtext: #cfcfcf;
  --footer-link: #ffffff;
  --footer-link-hover: #ddd;
  --footer-border: rgba(255, 255, 255, 0.1);
  /* UI */
  /* UI */
  --submit-button: rgb(214, 222, 214);
  --submit-button-text: #000;

  background-color: #171616;
}

/* -------------------------------------------------
   MANUAL LIGHT THEME (EXPLICIT OVERRIDE)
   ------------------------------------------------- */
body.light-theme {
  --body-bg: #ffffff;
  --header-background: #f0f0f0; /* slightly darker */
  /* NAV */
  --nav-text: #111;
  --nav-text-hover: #555;
  --nav-text-scrolled: #000;
  --nav-bg-scrolled: transparent;
  --dropdown-bg: rgba(255, 255, 255, 0.95);
  --dropdown-text: #111;
  --hamburger-bg: #111;

  /* TYPOGRAPHY */
  --heading-color: #1a1a1a;
  --serving-heading: rgb(30, 9, 9);
  --body-text: #333333;
  --small-text: #666666;

  /* FOOTER */
  --footer-bg: #f9f9f9;
  --footer-text: #111;
  --footer-heading: #111;
  --footer-subtext: #201e1e;
  --footer-link: #111;
  --footer-link-hover: #201e1e;
  --footer-border: rgba(0, 0, 0, 0.1);
  /* UI */
  --submit-button: rgb(9, 44, 9);
  --submit-button-text: #fff;

  background-color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}
.overlay h1,
.overlay p {
  color: white;
}
p {
  color: var(--body-text);
}

small,
.meta,
.description {
  color: var(--small-text);
}
html {
  font-size: 16px; /* accessible root size */
}

body {
  font-family: system-ui, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  line-height: 1.6;
  line-height: 1.6;
  background-color: var(--body-bg);
  color: var(--body-text);
}
html,
body {
  overflow-x: hidden;
}
main {
  max-width: 1200px;
  margin: auto;
}
/* ------------  fully responsive typography system  START  --------------------- */

h1 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
h2,
h3,
h4,
h5,
h6 {
  font-size: clamp(1.3rem, 2vw + 0.9rem, 2rem);
  line-height: 1.25;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

p {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

small {
  font-size: clamp(0.8rem, 0.3vw + 0.7rem, 0.9rem);
  line-height: 1.4;
}
/* ------------  fully responsive typography system  END  --------------------- */
.italic {
  font-style: italic;
}
.red {
  color: red;
}
.center {
  margin: auto;
  text-align: center;
}

/* =======================================================================
   NAVBAR BASE
   ======================================================================= */

.navbar-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 5;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  height: var(--nav-height); /* <-- use fixed height here */
  display: flex;
  align-items: center;
  transform: translateY(0);
  transition: transform 0.3s ease;
  z-index: 9999;
  background-color: transparent;
}

.navbar.hidden {
  transform: translateY(-100%);
}

/* Logo / Company name */
.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding: 0;
  color: var(--nav-text);
  transition: color 0.3s ease;
  cursor: pointer;
}
/* Group theme toggle + logo */
.brand-group {
  display: flex;
  align-items: center; /* vertical centering */
  gap: 1rem;
}
.logo {
  height: 60px; /* closer to nav text height */
  width: auto;
  display: block; /* removes inline-img baseline issues */
}
.hamburger-label {
  display: none;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem;
  font-weight: 500;
  color: var(--nav-text);
  transition: color 0.3s ease;
  line-height: 1.2;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none; /* 👈 prevents underline */
}

.nav-item:hover,
.nav-item:focus-visible {
  color: var(--nav-text-hover);
  outline: none;
  text-decoration: underline;
}

/* =======================================================================
   NAVBAR SCROLLED STATE
   ======================================================================= */
.navbar.scrolled {
  background-color: var(--nav-bg-scrolled);
}

.navbar.scrolled .company-name,
.navbar.scrolled .nav-item {
  color: var(--nav-text-scrolled);
}

/* =======================================================================
   NAV LINKS LAYOUT
   ======================================================================= */
.nav-links {
  padding-top: 10px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

/* =======================================================================
   HAMBURGER (MOBILE)
   ======================================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  align-items: center;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--hamburger-bg);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform-origin: center;
  transform: rotate(45deg) translate(9px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform-origin: center;
  transform: rotate(-45deg) translate(9px, -6px);
}

/* Update hamburger colors on scroll */
.navbar.scrolled .hamburger span {
  background: var(--hamburger-bg);
}

/* =======================================================================
   MOBILE NAV
   ======================================================================= */
@media (max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }

  .brand-group {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  /* Hamburger button layout */
  .hamburger-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Hamburger button: ICON ONLY */
  .hamburger {
    display: flex;
    flex-direction: column; /* ← vertical bars */
    justify-content: space-between; /* vertical stacking */
    width: 30px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3;
    align-items: center;
    line-height: 0; /* prevent extra spacing */
  }

  /* Show label only on mobile */
  .hamburger-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--hamburger-bg);
    line-height: 1;
    margin: 0;
  }
  .hamburger-bars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px; /* crucial to see 3 bars */
  }

  /* Bars inside button */
  .hamburger-bars span {
    height: 3px;
    width: 100%;
    background: var(--hamburger-bg);
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  /* Active hamburger transforms */
  .hamburger.active .hamburger-bars span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active .hamburger-bars span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger-bars span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -9px);
  }
  /* Mobile dropdown */
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: var(--dropdown-bg);
    width: 300px;
    padding: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .logo {
    height: 50px;
    width: auto;
  }
}

.theme-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--nav-text);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  padding: 0;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--nav-text-hover);
  transform: scale(1.1);
  outline: none;
}

.theme-icon {
  display: inline-block;
  line-height: 1;
}
@media (min-width: 768px) {
  .theme-toggle {
    font-size: 1.5rem;
    padding: 0.5rem;
    margin-left: 1rem;
    border-radius: 50%;
    background-color: transparent;
    transition:
      background-color 0.3s ease,
      transform 0.3s ease;
  }

  .theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.2);
  }

  .theme-icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .theme-toggle:hover .theme-icon {
    transform: rotate(20deg);
  }
}
/* ============================================================
   INDEX PAGE — DESKTOP ONLY NAV COLOR OVERRIDE
   ============================================================ */
@media (min-width: 769px) {
  /* Nav links */
  body.index .nav-item {
    color: white;
  }

  body.index .nav-item:hover,
  body.index .nav-item:focus-visible {
    color: #ddd;
  }
  body.index .navbar.scrolling-up .nav-item {
    color: white;
  }

  body.index .navbar.scrolling-up .nav-item:hover {
    color: #ddd;
  }
}
/* ============================================================
   INDEX PAGE — MOBILE HAMBURGER COLOR OVERRIDE
   ============================================================ */
@media (max-width: 768px) {
  /* White label text */
  body.index .hamburger-label {
    color: white;
  }

  /* White bars */
  body.index .hamburger-bars span {
    background: white;
  }
  body.index .navbar.scrolling-up .hamburger-label {
    color: white;
  }
  body.index .navbar.scrolling-up .hamburger-bars span {
    background: white;
  }
}
/* End of Mobile Navigation */
/* Full Screen Video Slider */

.video-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.overlay h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #fff;
}

.overlay p {
  max-width: 600px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #fff;
}

/* -----------------End of Full Screen Video Slider -------------------- */
/* -----------------Home Page About Section Start -------------------- */

.page-content {
  background: var(--section-bg);
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  padding-top: 70px;
}

.about h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 2rem auto 1rem auto;
}
.about p {
  line-height: 1.6rem;
  color: var(--body-text);
  font-size: 1.25rem;
  text-align: justify;
}
.about-sideByside {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
  padding: 2rem;
}

.about-sideByside img,
.about-sideByside p {
  opacity: 0;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/* Image slides in from the left */
.about-sideByside img {
  animation-name: slideInLeft;
}

/* Text slides in from the right */
.about-sideByside p {
  animation-name: slideInRight;
  max-width: 500px;
}

/* Keyframes */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* 📱 Mobile layout: stack vertically with image below text */
@media (max-width: 768px) {
  .about-sideByside {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-sideByside img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 12;
    object-fit: cover; /* or contain */
  }

  .about-sideByside p {
    max-width: 100%;
    padding: 0 1rem;
    text-align: left;
  }
}

/* -----------------Home Page About Section Start -------------------- */
/* --------------------- footer styling start ------------------------ */
/* ===========================
   FOOTER BASE STYLES
   =========================== */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 20px;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid var(--footer-border);
}

.site-footer a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-description {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  grid-column: 1 / -1; /* Span all columns */
  margin-top: 2rem; /* Optional spacing */
  font-style: normal; /* Optional: reset italics if any */
  color: var(--footer-subtext); /* Use theme variable */
}

.site-footer small {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  grid-column: 1 / -1; /* Span all columns */
  display: block;
  margin-top: 1rem;
  color: var(--footer-subtext);
  text-align: center;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--footer-heading);
}

.footer-description,
.footer-meta small {
  color: var(--footer-subtext);
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  fill: currentColor;
}
/* Social icons */
.social-icons {
  display: flex;
  gap: 16px;
}

/* ===================================================================
   FOOTER RESPONSIVE STYLES
   =================================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-heading {
    font-size: 1.2rem;
  }

  .social-icons {
    gap: 12px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-business,
  .footer-hours,
  .footer-nav,
  .footer-meta {
    text-align: center;
  }

  .footer-heading {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }

  .footer-description {
    font-size: 0.95rem;
  }

  .social-icons {
    justify-content: center;
  }
  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }
}
.footer-nav a,
.footer-link {
  color: var(--footer-link);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-link:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

/* --------------------- footer styling End ------------------------ */
/* Events Page */
/* ===== Events Page ===== */

.events h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.events > img {
  width: 40%;
  height: auto;
  margin: auto;
}
.events .center .italic {
  margin-top: 0.5rem;
  color: var(--small-text);
  margin: auto;
  text-align: center;
  font-style: italic;
}

/* Special Events Section */
.special_events {
  max-width: 900px;
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  background: #fafafa;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Base floating icon style */
.special_events .float-icon {
  position: absolute;
  width: 110px; /* bigger so they’re visible */
  height: 110px;
  opacity: 0.22; /* stronger but still soft */
  animation: floaty 8s ease-in-out infinite;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

/* Guitar icon */
.special_events .icon-guitar {
  top: 10px;
  left: 10px;
  animation-duration: 10s;
  background-image: url("../images/guitar.svg");
}

/* Music note icon */
.special_events .icon-music {
  bottom: 10px;
  right: 10px;
  animation-duration: 12s;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v12.26A4 4 0 1 0 14 19V7h6V3h-8z'/%3E%3C/svg%3E");
}



/* Floating animation */
@keyframes floaty {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Text styling */
.special_events h2,
.special_events p {
  position: relative;
  z-index: 2;
  color: rgb(27, 26, 26);
}
