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

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #2b1b12;
  color: #3b2b20;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* === HEADER === */

header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('vinyl.jpg') center/cover no-repeat; 
  /*
  background: url('wood.jpg') center/cover no-repeat; */
  color: #593c28;
  padding: 1rem 0;
  text-align: center;
  font-weight: bold;
  min-height: 200px; /* or however tall you want it */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


header h1 {
  font-size: 2rem;
}

header nav {
  margin-top: 5px;
}

header nav ul {
  list-style-type: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

header nav ul li a:hover {
  background-color: #9c6834;
}

/* === MAIN CONTENT === */

main {
  padding: 0;
  margin: 0;
  background-color: #3b2b20;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

main h2 {
  font-size: 1.5rem;
  color: #e0e0e0;
  text-align: center;
}

/* === FOOTER === */
#about {
  background-color: #111;
  color: white;
  padding: 2rem;
}

.footer-columns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #111;
  color: #fdf6e3;
}



.footer-columns > div {
  flex: 0 0 30%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-about,
.footer-mailing,
.footer-map {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content vertically */
  align-items: center;
}

.footer-about,
.footer-mailing,
.footer-map {
  flex: 1;
  min-width: 250px;
}


.footer-mailing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  max-width: 300px;
  flex-grow: 0; /* Don’t grow beyond content */
  flex-shrink: 0;
  flex-basis: 300px;
}

.footer-about,
.footer-mailing {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
  text-align: center;   /* center text */
}

.footer-mailing input[type="email"],
.footer-mailing button {
  width: 100%;
  max-width: 200px; /* smaller width */
  border-radius: 5px; /* Rounded corners */
  height: 40px;
  font-size: 0.95rem;
  border: 1px solid #704d33;
  font-family: inherit;
}


.footer-map {
  flex: 2; /* make this one bigger */
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers content horizontally */
  text-align: center; 
}

.footer-map h3 {
  padding-bottom: 0.5rem;
}

.footer-about li {
  line-height: 1.6;
}


.footer-about ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;

}

.footer-about a {
  color: #ccc;
  text-decoration: none;
}

.footer-about a:hover {
  text-decoration: none;
  transition: color 0.3s ease;
  color: #e0ac6d;

}

.footer-copy {
  width: 100%;       /* Ensure it takes full width */
  clear: both;       /* Clear floats if any */
  text-align: center; /* Optional: center the footer text */
  margin-top: 1rem;  /* spacing above */
  display: block;    /* ensure block display */
  color: #fdf6e3;
}

.footer-mailing input[type="email"] {
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  border: 1px solid #704d33;
  border-radius: 5px;
  width: 160px;
  background-color: #3b2b20;
  color: #fdf6e3;
  font-family: inherit;
  margin-bottom: 0.5rem;
  flex: 1;
  outline: none;

}


.footer-mailing form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 300px;
  margin-top: 0.5rem;
}


.footer-mailing button {
  background-color: #593c28;
  color: white;
  border-left: none;
  flex-shrink: 0;
  padding: 0 1rem;
}

.footer-mailing button:hover {
  background-color: #e0ac6d;
}

.footer-signup {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-signup form {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}


.footer-signup button {
  padding: 0.5rem 1rem;
  border-radius: 0 5px 5px 0;
  border: none;
  background-color: #704d33;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}

.footer-signup button:hover {
  background-color: #e0ac6d;
}


.footer-columns h3 {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
  color: #fdf6e3;
  align-self: center; /* Ensures vertical centering of headers */
}


.map-container {
  border: 2px solid #444;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.event-preview {
  font-size: 0.7rem;
  margin-top: 4px;
  background-color: #4a3325;
  padding: 2px 4px;
  border-left: 3px solid #f5c16c;
  border-radius: 3px;
  color: #d2b48c;
}



/* === EVENT PANEL === */


#event-panel {
  flex: 1;
  width: 500px;
  display: flex;
  margin-top: 90px;
  flex-direction: column;
  gap: 1rem;
}

.event-detail {
  background: #3b2b20;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.event-detail h3 {
  color: #a1a1a1;
  margin-bottom: 0.5rem;
}

.event-detail p {
  margin: 0.3rem 0;
}

/* === HOURS SECTION === */


.hours-box-link {
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.hours-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 20px auto 40px auto;
  padding-top: 30px;
}

.hours-column {
  width: 300px;
  flex: 0 0 250px;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.hours-column:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);

}

.hours-column h3 {
  font-size: 1.25rem;
  margin-top: 0;
}

.hours-column button {
  margin-top: 20px; /* Adjust the spacing to your preference */
}


/* === MISC ELEMENTS === */

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

.menu-list li {
  padding: 10px 0;
  border-bottom: 1px solid #704d33;
  font-size: 1.1rem;
}

.button-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0 40px;
  flex-wrap: wrap;
}

.button-column {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.book-button,
.mailing-button {
  display: inline-block;
  padding: 10px 20px;
  width: 200px;
  background-color: #593c28;
  color: white;
  border: 1px solid #704d33;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-button:hover,
.mailing-button:hover {
  background-color: #e0ac6d;
}

.logo-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;          /* full width container */
  overflow: visible;    /* allow children to grow */
}

#home-link {
  display: inline-block;   /* keeps it shrink-wrapped */
  width: auto !important;  /* override any width */
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}


.logo {
  display: block;
  height: 150px;
  width: auto;
  max-width: none !important;
}



.highlight-block {
  background: #3b2b20;
  padding: 3rem 1rem;
  text-align: center;
}

.calendar-block {
  background: #0A1A2F;
  padding: 3rem 1rem;
}

.hidden {
  display: none;
}

.age-banner {
  background-color: #0A1A2F;
  color: #d2b48c;
  text-align: center;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid #6d6262;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin: 0;
}


/* === FONT STYLING === */

/* Base body font */

/* Header and title font */
h1, h2, h3, h4, header h1, footer h3,
.event-detail h3,
.hours-column h3,
#calendar-title-wrapper,
header nav ul li a {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1, h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
}

/* Info boxes */

.event-detail,
.jam-night-message,
.band-booking-message {
  background: #3b2b20;
  padding: 1rem;
  margin-top: 10px;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.band-booking-message h3 {
  margin-top: 0;
  color: #d2b48c;
}
/* Style for the "form" link in the band-booking-message */
.band-booking-message a {
  text-decoration: none; /* Removes the underline */
  color: #3857aa; /* Set to a dark blue that fits the theme (adjust as needed) */
  font-weight: bold; /* Optional: Make the link stand out more */
}

/* Hover effect for the link */
.band-booking-message a:hover {
  color: #F59E0B; /* Hover color (a golden/yellow shade) */
}


.book-band-button {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.7rem;
  padding: 4px 6px;
  background-color: #3b2b20;
  color: #f5c16c;
  border: 1px solid #f5c16c;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.book-band-button:hover {
  background-color: #e0ac6d;
  color: #fff;
}


/* Images */

.image-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.4)); /* or just rgba black */
  z-index: 1;
}

.image-break h2 {
  font-size: 3rem;
  font-weight: 700;
  z-index: 2;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.image-break h2 {
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(10px);
  opacity: 0;
}

.image-break.in-view h2 {
  transform: translateY(0);
  opacity: 1;
}

/* Mailing */

.mailing-list-section {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.mailing-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.mailing-form input[type="email"] {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 220px;
  font-family: inherit;
}

.mailing-button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #593c28;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.mailing-button:hover {
  background-color: #e0ac6d;
}

#emailFeedback {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #f0e8d9;
  width: 100%;
  text-align: center;
}

.music-banner {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  
  background-color: #5c3b1f; /* deep blue */
  color: #fef4e8;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1;
}


.music-banner:hover {
  background-color: #e0ac6d;
}

/* Calendar section */

#calendar-container {
  display: grid;
  grid-template-columns: 1fr 350px; /* Two columns: calendar and right column */
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  flex-direction: column;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

#right-column {
  grid-column: 2;
  padding-left: 1rem;
}

#calendar-wrapper {
  grid-column: 1;
}

#event-panel {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.day {
  border: 1px solid #ccc;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;
  position: relative;
  padding: 8px;
  font-size: 14px;
  background-color: #111;
  color: white;
}

.day.today {
  border: 2px solid #3af; /* full border for today */
  box-shadow: 0 0 10px rgba(51, 170, 255, 0.5);
}

.day.event {
  background-color: #3b2b20;
}

.day .date-number {
  font-weight: bold;
  margin-bottom: 4px;
}

.day .event-text {
  font-size: 13px;
  text-align: center;
  color: #ffcc00;
  line-height: 1.4;
}


/* Age gate */

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 31, 31, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-gate-box {
  background: #3b2b20;
  color: #fff;
  padding: 2rem;
  text-align: center;
  border: 2px solid #555;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.age-gate-buttons button {
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #33405a;
  color: white;
  transition: background-color 0.3s;
}

.age-gate-buttons button:hover {
  background-color: #e0ac6d;
}

/*
#vinyl-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinning-record {
  width: 100px;
  height: 100px;
  animation: spin 1.5s linear infinite;
  filter: drop-shadow(0 0 6px #00faff);
} */

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.footer-mailing form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#emailInput {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  width: 250px;
  max-width: 100%;
  box-sizing: border-box;
}

.mailing-button {
  padding: 10px 16px;
  font-size: 1rem;
  background-color: #1f8eed;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mailing-button:hover {
  background-color: #e0ac6d;
}

/* More events */

.more-events-section {
  background-color: #111;
  color: #fff;
  padding: 2rem;
  margin-top: 2rem;
  border-top: 2px solid #704d33;
  text-align: center;
}

.more-events-section a {
  color: #d2b48c;
  text-decoration: none;
}

.more-events-section a:hover{
  color: #e0ac6d;
  text-decoration: none;
}


/* Features */

.features-section {
  max-width: 1200px; /* Or any large width that fits your layout */
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 5vw;
  max-width: 1000px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
  max-width: 1000px;
  padding: 2rem 5vw 2rem 10vw;
}

.feature-row img {
  flex-shrink: 0;
  width: 380px; /* fixed, manageable size */
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem;
}

.feature-text {
  flex: 1;
  min-width: 250px;
  max-width: 600px;
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #b2b7b9;
  margin-bottom: 1rem;
}

.feature-text p {
  line-height: 1.5;
  font-size: 1rem;
  color: #ddd;
}

.feature-row.reverse .feature-text {
  text-align: right;
  align-items: flex-end;
}

.upcoming-events-container {
  display: none;  /* Hide this by default (desktop view) */
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .upcoming-events-container {
    display: flex;
  }

  .arrow {
    display: block;
  }
}

.arrow {
  display: none;  /* Hide the arrows by default */
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

.event-info-box {
  width: 100%;
  padding: 20px;
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Booking Page Styling */
.booking-page {
  background-color: inherit; /* Light tan background */
  font-family: 'Georgia', serif; /* Country-style font */
  display: flex;
  justify-content: center; /* Center the form horizontally */
  align-items: flex-start; /* Align items at the top to reduce space above */
  padding: 20px; /* Reduce the padding to minimize space above and below */
  box-sizing: border-box;
  gap: 20px;
  min-height: auto;
}

.booking-form-section {
  background-color: #bba371; /* Soft tan background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px; /* Keeps the form box width the same */
  margin: 0 auto; /* Centers the box */
}

.booking-form-section h2 {
  color: #8b5e3c; /* Deep brown for headings */
  text-align: center;
  font-size: 2rem;
}

.booking-form-section p {
  color: #7a4e28; /* Medium brown for description */
  text-align: center;
  margin-bottom: 20px;
}

.booking-form-section label {
  color: #5b3e1e; /* Darker brown for labels */
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

/* Input and Textarea Adjustments */
.booking-form-section input,
.booking-form-section textarea {
  width: 100%;
  max-width: 580px; /* Make the input boxes smaller */
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #c2a47d; /* Light brown border */
  border-radius: 4px;
  background-color: #c4c4c4;
  font-size: 1rem;
  display: block;
  justify-content: center;
  margin: 0 auto 10px;
}

.booking-form-section textarea {
  resize: vertical;
}

.mailing-button {
  display: block;
  width: 200px;
  padding: 12px;
  margin: 0 auto;
  background-color: #8b5e3c; /* Deep brown for button */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mailing-button:hover {
  background-color: #7a4e28; /* Darker brown on hover */
}

.form-feedback {
  text-align: center;
  color: #8b5e3c;
  font-size: 1rem;
  margin-top: 15px;
}



/* General styles for event info */
#event-info-box {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}


/* Button styles for navigation arrows */
.event-arrow {
  font-size: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.event-arrow:focus {
  outline: none;
}

#event-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.event-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-arrow {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  color: #fff;
}
.nav-arrow:hover {
  color: #ffd700; /* Highlight on hover */
}

@media (min-width: 768px) {
  #right-column {
    margin-right: 5rem; /* or use margin-right if more appropriate for your layout */
  }
}

/* Menu */
.menu-section {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fefefe;
  border-bottom: 2px solid #cc9933;
  padding-bottom: 0.5rem;
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px dotted #555;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
}

.menu-list h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #fff;
  flex: 1 1 70%;
}

.menu-list p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #ccc;
  flex: 1 1 70%;
}

.menu-list span {
  color: #cc9933;
  font-weight: 600;
  font-size: 1.05rem;
  flex: 1 1 25%;
  text-align: right;
  align-self: center;
}

/*to make the auto scroll links still show the title*/
#grill-menu, #bar-menu {
  scroll-margin-top: 100px; /
}

.tooltip {
  position: fixed;
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 5px;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s ease;
}

#add-to-google-calendar {
  display: inline-block; /* keep it inline but block-level so padding works */
  white-space: nowrap;   /* prevent wrapping inside the button */
  padding: 8px 16px;     /* comfortable padding */
  font-size: 16px;       /* readable size */
  background-color: #8b5e3c; /* Google blue */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none; /* if it's a link */
  box-sizing: border-box;
  max-width: none;       /* prevent max-width restrictions */
}


#week-view {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 20px auto;
}

.day-box {
  flex: 1;
  line-height: 1.6;
  min-width: 80px;
  background-color: #1c1c1c;
  color: #eee;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 15px 0;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  user-select: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.day-box:hover {
  background-color: #333;
}

.day-box.selected {
  border-color: #f5c16c;
  background-color: #4a3325;
}

.day-box.today {
  box-shadow: 0 0 8px 2px #f5c16c;
}

#event-info {
  max-width: 700px;
  margin: 20px auto;
  padding: 15px;
  background-color: #2e2e2e;
  color: #f5c16c;
  border-radius: 8px;
  font-size: 1.1rem;
  min-height: 60px;
  text-align: center;
}


#week-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 20px auto;
  gap: 20px; /* More space between boxes */
}

.day-column {
  flex: 1;
  text-align: center;
}

.day-name {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #bbb; /* lighter gray */
}

.day-box {
  height: 120px;
  border: 2px solid #555; /* lighter border */
  background-color: #2a2a2a; /* lighter background */
  border-radius: 4px; /* less rounded */
}

.calendar-block iframe {
  border: 3px solid #4a3325;  /* Set border thickness and your color */
  border-radius: 8px;          /* Optional: round corners */
  box-shadow: 0 4px 10px rgba(74, 51, 37, 0.5); /* Optional: subtle shadow using same color */
  background: #4a3325;           /* Optional: white background behind calendar */
  display: block;
  margin: 0 auto;
  width: 1200px;
  height: 600px;
}
