/* ===== Base Styles ===== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
    overflow-x: hidden;
  overflow-y: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #212121;
  background-color: transparent;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

  body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/Blatt.svg'); /* Update path if different */
  background-repeat: repeat;
  background-size: 120px; /* adjust size as you like */
  opacity: 0.08; /* very subtle */
  z-index: -1;
  pointer-events: none;
}

main {
  flex: 1;
  
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fira Code', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0 0 0.5em;
}

/* ===== Containers ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

/* ===== Header ===== */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
   margin: 0;
  padding: 0 20px; /* or whatever horizontal padding you want */
  
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  color: #2E7D32;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.logo img.logo-img {
  height: 40px; /* Slightly smaller if needed */
  margin: 0;
  vertical-align: middle;
}

/* ===== Navigation ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2E7D32;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  color: #2E7D32;
  margin-left: auto;
}

/* ===== Hero Section ===== */
.hero-main {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.hero-main .slideshow-container {
  height: 100%;
}

.hero-main .slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-main .slide.active {
  display: block;
}

.hero-main .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-main .hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: white;
}

.hero-main .hero-overlay p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}

.hero-main .btn {
  color: white;
}

/* ===== Menu Banner ===== */
.hero-banner {
  width: 100vw;
  max-width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
  color: white;
}

.hero-banner .container {
  padding: 0 20px;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.45);
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-banner h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.hero-banner p {
  font-size: 1.3rem;
}

/* ===== Buttons ===== */
.btn {
  background: #2E7D32;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 10px auto;
  text-align: center;
}

.btn:hover {
  background: #6D4C41;
}

/* ===== Intro ===== */
.intro img {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.intro p {
  margin-bottom: 1em;
}

/* ===== Menu & Specialty ===== */
.menu {
  margin-top: 60px;
  text-align: center;
}

.menu.with-specialty {
  margin-top: 20px;
}

.specialty {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 15px;
  text-align: center;
}

.specialty h2 {
  margin-bottom: 20px;
}

.specialty ul,
.contact-hours-list {
  list-style: disc inside;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin-bottom: 20px;
  line-height: 1.5;
}

.menu li strong {
  display: block;
  margin-bottom: 6px;
}

.menu li a.btn {
  margin-top: 6px;
}
/* ===== Food Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 0 10px;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio — adjust as needed */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the box without distortion */
  transition: transform 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.food-slide-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.food-slide-img:hover {
  transform: scale(1.03);
}

/* Arrow buttons */
.glide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* disable pointer events on container */
  padding: 0 10px;
  box-sizing: border-box;
  z-index: 10;
}

.glide__arrow {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 30px;
  padding: 8px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  pointer-events: auto; /* enable pointer events on buttons */
}

.glide__arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}


/* ===== PROMO =====*/ 

.promo-section {
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 6px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #212121;
  font-size: 1.1em;
  
  
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px 3px rgba(46, 125, 50, 0.5);
  }
  50% {
    box-shadow: 0 0 20px 6px rgba(46, 125, 50, 0.9);
  }
}


.promo-section img {
  max-height: 80px;
  border-radius: 6px;
    display: block;
  margin: 0 auto;
  animation: pulse-glow 2s infinite;
}



/* ===== Brunch ===== */
.brunch {
  text-align: center;
}

/* ===== PDF / Dashboard Section ===== */
.pdf-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pdf-item {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

.pdf-item h3 {
  margin-bottom: 10px;
}

/* ===== Program Page ===== */
.program-container {
  background-color: rgba(255, 255, 255, 0.05);
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px; /* default desktop padding */
}

.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.event-item {
  background-color: #f0f7e8;
  border: 1px solid #b38b46;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 139, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.event-item:hover {
  box-shadow: 0 4px 12px rgba(0, 139, 0, 0.25);
}

.event-item h3,
.no-events {
  color: #6D4C41;
}

.no-events {
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-top: 2rem;
}

/* ===== About Page ===== */
.about-container {
  padding: 60px 20px;
  background-color: #fff;
    padding: 60px 20px;
 
  background-repeat: repeat;
  background-size: 120px;
  background-color: rgba(255, 255, 255, 0.05);
}

.about-intro h1 {
  color: #2E7D32;
  margin-bottom: 0.5em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.team-member {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team-member img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.team-member h3 {
  margin-bottom: 10px;
  color: #2E7D32;
}

.team-member em {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: #555;
}

/* ===== Zimmer Page ===== */
.zimmer-container {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
 
  background-repeat: repeat;
  background-size: 120px;
  background-color: rgba(255, 255, 255, 0.05);
}

.zimmer-container h1,
.zimmer-container h2 {
  font-family: 'Fira Code', monospace;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.zimmer-intro p,
.zimmer-section p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1em;
}

.map-link {
  color: #2E7D32;
  text-decoration: underline;
  font-weight: 600;
}

.map-link:hover {
  color: #6D4C41;
}

.map-embed {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 20px;
  overflow: hidden;
}

.zimmer-section address,
.contact-card address {
  font-style: normal;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.zimmer-section a,
.contact-card a {
  color: #2E7D32;
  font-weight: 600;
  text-decoration: none;
}

.zimmer-section a:hover,
.contact-card a:hover {
  color: #6D4C41;
}

/* ===== Contact Page ===== */
.contact-container {
  padding: 60px 20px;
  background-color: #fff;
  background-repeat: repeat;
  background-size: 120px;
  background-color: rgba(255, 255, 255, 0.05);
}

.contact-hours {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: left; /* Keep text readable with bullets */
  display: inline-block; /* This is the key to centering the list as a block */
}


.contact-header h1 {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.contact-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-card h2 {
  color: #2E7D32;
  margin-bottom: 15px;
}

/* ===== Footer ===== */
.site-footer {
  width: 100%;
  background-color: #f8f8f8;
  padding: 20px 0;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}



/* ===== Event Cards ===== */

.event-poster a:hover {
  opacity: 0.9;
  cursor: zoom-in;
}

.program-container {
  max-width: 700px; /* smaller container */
  padding: 30px 15px; /* reduce padding */
  margin: auto;
}

.events {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Changed from .event-item to .program-event-item */
.program-event-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 600px; /* fill container width */
}

.program-event-item img {
  max-width: 100%;    /* image width fits container */
  height: auto;       /* auto height to keep aspect ratio */
  max-height: 600px;  /* limits height to scale down */
  object-fit: contain; /* scales image down to fit, no cropping */
  display: block;
}

.event-header, .event-details {
  text-align: center;
  padding: 15px 20px;
}

.event-header h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: #333;
}

.event-header p {
  font-weight: 500;
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.event-details p {
  color: #444;
  margin-bottom: 10px;
  line-height: 1.4;
}

.menu-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 8px 16px;
  background: #007bff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.menu-btn:hover {
  background: #0056b3;
}

.no-events {
  padding: 40px 20px;
  text-align: center;
  color: #555;
}

.no-events .bold-msg {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-top: 15px;
}

  .program-intro h1 {
    font-size: 1.8rem;
  }


/* ===== Responsive ===== */
@media (max-width: 957px) {

  .intro {
    flex-direction: column;
    text-align: center;
    padding: 40px 0px;
  }
	
	  main {
    padding-top: 60px;
  }
	
  .intro div {
    flex: 1 1 100%;
  }
  
   .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000; /* Higher than nav-links */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .site-header .container {
    flex-wrap: nowrap;
  }

  .menu-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-toggle span {
    position: absolute;
    height: 3px;
    width: 28px;
    background-color: #2E7D32;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    left: 50%;
    transform-origin: center;
    transform: translateX(-50%);
  }

  .menu-toggle span:nth-child(1) { top: 10px; }
  .menu-toggle span:nth-child(2) { top: 18px; }
  .menu-toggle span:nth-child(3) { top: 26px; }

  .menu-toggle.active span:nth-child(1) {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) { opacity: 0; }

  .menu-toggle.active span:nth-child(3) {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .menu-toggle:hover span { background-color: #6D4C41; }

  .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    position: relative;
  }

  /* Mobile nav dropdown */
  .nav-links {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    top: -100%; /* Hide offscreen */
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 15px 15px;
    z-index: 999;
    text-align: center;
    transition: top 0.4s ease; /* Smooth slide */
	 transform: translateY(-110%);
  }

  .nav-links.active {
    top: 60px; /* Slide down */
	transform: translateY(0);
  }

  .nav-links li {
    margin: 12px 0;
    padding: 0 10px;
    border-top: 1px solid rgba(0, 139, 0, 0.15);
    border-bottom: 1px solid rgba(0, 139, 0, 0.15);
  }

  .nav-links li:first-child { border-top: none; }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 14px 0;
    color: #2E7D32;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
  }

  .nav-links a:hover {
    background-color: rgba(0, 139, 0, 0.05);
    color: #6D4C41;
  }

  .logo img.logo-img {
    height: 40px;
  }

  .pdf-item {
    flex: 1 1 100%;
  }

  .hero-banner {
    height: 300px;
  }

  .hero-text {
    max-width: 90%;
    padding: 20px;
  }

  /* ==== Program event styles ==== */

  /* Wrapper inside .events section */
  .events > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
  }

  /* Default full width for each card */
  .program-event-item {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  
    .promo-section {
    padding: 15px 10px;
    max-width: 100%;
    margin: 0 10px 20px 10px; /* smaller side margins */
    font-size: 1em;
	
  }

  .promo-section img {
    max-height: 120px; /* smaller image height */
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
  }

  .promo-section p {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .promo-section .btn {
    padding: 10px 20px;
    font-size: 1em;
    display: block;
    text-align: center;
    border-radius: 5px;
  }
  

  	        .program-event-item {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
	  
	  
	    /* Poster image scaling */
		
	    .program-event-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .program-event-item {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .events > div {
    flex-direction: column;
    gap: 20px;
  } 
  .program-intro h1 {
    font-size: 1.8rem;
  }

  .program-intro p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .event-header h3 {
    font-size: 1.2rem;
  }

  .event-header p {
    font-size: 0.85rem;
  }

  .event-details p {
    font-size: 0.9rem;
  }

  .event-details a {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  h2 {
    font-size: 1.4rem !important;
    margin-bottom: 20px;
  }

  .event-poster img {
    max-width: 100%;
    height: auto;
  }

  main.news-single {
    max-width: none;
   /* width: 100%;*/
    margin: 0;
    padding: 20px 15px;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
  }

  main.news-single h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  main.news-single h2 {
    font-size: 1.3rem;
    margin-top: 1.5em;
  }

  main.news-single p,
  main.news-single ul li {
    font-size: 1rem;
    line-height: 1.5;
  }

  main.news-single ul {
    padding-left: 20px;
  }

  .menu-images {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
  }

  .menu-images img {
    width: 100%;
    max-width: 100%;
    border-width: 2px;
  }

  .lightbox-overlay img {
    max-width: 95vw;
    max-height: 85vh;
  }

  .program-container {
    padding-top: 100px; /* Adjust based on header height */
    padding-left: 10px;
    padding-right: 10px;
  }

 }
 
 



@media (max-width: 767px) {
  .event-date-heading {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  body {
    overflow-x: hidden;
  }

  .program-container {
    padding-top: 100px; /* Make room for fixed header */
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .program-event-item {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .events > div {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

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

  .program-intro h1 {
    font-size: 1.4rem;
  }

  .program-intro p {
    font-size: 1rem;
  }
}
 
 
 
 
  /* From 500px and up, show 2 per row */
  @media (min-width: 500px) {
	  
  main.news-single {
    padding: 15px 10px;
  }

  main.news-single h1 {
    font-size: 1.6rem;
  }

  .menu-images img {
    width: 100%;
  }

  .program-intro h1 {
    font-size: 1.8rem;
  }

  .program-intro p {
    font-size: 1rem;
  }

}
  
    .event-date-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  color: #222;
  font-size: 1.8rem;
}

/* ===== Admin: Edit Events Page ===== */
.edit-events-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.edit-events-container h1 {
  text-align: center;
  color: #2E7D32;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-card {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 16px;
  margin-bottom: 20px;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.event-card img.poster {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-card .no-poster {
  width: 120px;
  height: 120px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.85rem;
  text-align: center;
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-family: 'Fira Code', monospace;
  margin: 0 0 0.3em;
  color: #2E7D32;
  font-size: 1.3rem;
}

.event-info .event-date {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.event-info p {
  margin: 0 0 12px;
  color: #333;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.event-actions .btn {
  flex: 1;
  min-width: 120px;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
}

.btn-blue {
  background-color: #007bff;
}

.btn-blue:hover {
  background-color: #0056b3;
}

.btn-red {
  background-color: #dc3545;
}

.btn-red:hover {
  background-color: #b02a37;
}


