html {
  scroll-behavior: smooth; 
}

.banner {
  width: 100%;
  height: 300px; 
  background-color: #151046; 
  background: 
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #33323a 100%),
      url('../images/473228419_581423751415273_4563008221559594728_n.jpg');
  background-size: cover; /* Make the image cover the whole area */
  background-position: center 21%; /* Center the image */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;

  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

.circular-logo {
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-left: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 30px;
  font-weight: bold;
}

/* top navigation (compact single CTA) */
.top-nav {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  background: transparent;
}

/* Generic nav fallback (if other pages still use multi-tab nav) */
nav {
  display: flex;
  justify-content: flex-end; /* spaces links evenly, with first at left and last at right */
  padding: 0 20px; /* some left/right spacing */
  background:transparent; 
  margin-top: 0; /* removes unwanted top margin */
}

nav ul {
  display: flex;  /* make the ul a flex container */
  list-style: none; /* remove bullets */
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: 30px; /* space from right edge */
  gap : 30px; /* space between each li */
}

nav ul li {
  text-align: center;    /* centers text inside each li */
  font-family: 'Goudy old style', serif;
}

nav ul li a {
  display: inline-block;
  position: relative;
  background-color: #0e3084;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Goudy Old Style', serif;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  overflow: hidden; /* ensures pseudo-element doesn't overflow */
}

nav ul li a:hover {
  background-color: #1649cb; 
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5); 
  color: white;
}

nav {
  margin-top: 0;
}

/* iPhone / small screen nav fix */
@media (max-width: 480px) {
  nav ul {
    flex-direction: column;       /* stack links vertically */
    gap: 10px;                     /* smaller gap for mobile */
    margin: 0 auto;                /* center the links */
    padding: 0;
    width: fit-content;             /* shrink to fit content */
  }

  nav ul li a {
    font-size: 16px;               /* slightly smaller font */
    padding: 10px 15px;            /* smaller, mobile-friendly padding */
    display: block;                /* full width clickable area */
    text-align: center;            /* center the link text */
  }

  nav {
    justify-content: center;        /* center the whole nav bar */
  }
}

body {
  background-image: url('../images/554322043_18011642273795734_6415915159354571299_n.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 160px;
  color: aliceblue;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden; /* prevent horizontal scroll */
}

body.solid-bg {
  background-color: #28272e;
  background-image: none;
  color: aliceblue; /* ensures text is readable */
}

main section {
  padding-left: 40px;
  padding-right: 20px;
  max-width: 800px;
}

/* Home CTA button style */
.home-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #1649cb, #0e3084);
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px; /* pill */
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.06);
}

.home-cta i { /* icon sizing */
  font-size: 14px;
  line-height: 1;
}

.home-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* Responsive: keep it small on mobile */
@media (max-width: 480px) {
  .home-cta span { display: none; } /* show icon only on very small screens */
  .home-cta { padding: 8px; font-size: 13px; }
}

.page-header {
  text-align: center;
  padding: 40px 20px 20px;
  font-family: 'Goudy old style', serif;
  color: #28272e;
  text-shadow: -1px 2px 2px aliceblue;    
}

.page-header h1 {
  font-size: 5rem;
  margin: 0;
  margin-top: 100px;
}

.cta-button {
  display: inline-block;
  margin: 20px auto;  /* Add vertical margin and auto horizontal centering */
  padding: 12px 24px;
  background-color: #0e3084;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Goudy Old Style', serif;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;

  /* Centering */
  text-align: center;
  display: block;      /* Make it a block to center it */
  width: fit-content;  /* Shrink to fit content */
}

.cta-button:hover {
  background-color: #1649cb;
  transform: translateY(-2px);
}

.map-container {
  margin-top: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.map-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* social media section */

.social-media {
  width: 100%;                   /* Full viewport width */
  background-color: #28272e;      /* Your desired background */
  padding: 20px 40px;             /* Space inside the section */
  text-align: left;
  box-sizing: border-box;         /* Ensures padding doesn’t push width beyond screen */
  margin: 0;                      /* Remove any offset */
}

.social-media a {
  font-size: 30px;
  margin: 0 15px;
  color: #fff8f8;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.note {
  text-decoration: underline;
}

.social-media a:hover {
  color: #4A4590;
  transform: scale(1.1);
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  gap: 40px;
}

.hours {
  background-color: #28272e;
  padding: 20px;
  margin: 0 auto; 
  align-items: center;
}

.hours h2 {
  text-align: center;
  color: aliceblue;
}

.closed-header h2 {
  text-align: center;
  margin-left: 45px;
  }

.hours table {
  border-collapse: separate;
  width: 100%;
  max-width: 300px;
  margin: 7px;
  color: aliceblue;
}

.hours td {
  padding: 5px 10px;
}

.hours td:first-child {
  font-weight: bold;
  text-align: left;
  width: 50%;
}

.hours td:last-child {
  text-align: center;
  width: 50%;
}

.hours-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 20px;
  max-width: 900px;  /* prevent stretching too wide */
  margin-left: auto;
  margin-right: auto;
}

.hours-info {
  flex: 0 0 220px;  /* fixed width so it doesn't collapse */
  font-size: 20px;
  color: aliceblue;
  line-height: 1.5;
  margin-top: 100px;
}

.hours-info strong{
  text-decoration: underline;
}

.hours-info p {
  margin-bottom: 20px;
}

.hours-content {
  flex: 1 1 auto;
  padding-left: 10px;  /* optional */
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* aligns children (h2, table) to left */
  margin-left: 50px;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 700px) {
  .hours-layout {
    flex-direction: column;
    max-width: 100%;
  }

  .hours-info,
  .hours-content {
    width: 100%;
    flex: none;
    margin-left: 0;
  }
}
/* homepage end*/

/* menu page */

.menu-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Goudy old style', serif;
  color: aliceblue;
  text-shadow: 5px 5px 10px #000000;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.menu-header h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: lighter;
}

.menu-section h2 {
  font-size: clamp(1.5rem, 4vw, 50px);
}

.sidebar-menu {
  position: relative; 
  width: 200px;
  background: linear-gradient(to bottom, #0d2b75, #081a47);
  border-right: 1px solid #0a1e52;
  padding: 20px 10px;
  box-shadow: 4px 0 10px rgba(0,0,0,0.4);
  z-index: 1; 
}

.sidebar-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 20px;
}

.sidebar-menu a {
  display: block;
  color: aliceblue;
  font-family: 'Goudy Old Style', serif;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.sidebar-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: aliceblue; 
}

.menu-section {
  display: none;
}
.menu-section.active {
  display: block;
}

.menu-container {
  /* container for header + body (keeps header full-width, body below it) */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px 20px 20px 0;
  box-sizing: border-box;
}

/* menu-body holds the left sidebar and main content to the right */
.menu-body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px; /* space between sidebar and main */
  margin-top: 20px;
}

.menu-main {
  /* allow main content to take remaining space */
  flex: 1 1 300px;
  box-sizing: border-box;
}

.menu-main h3 {
  font-family: 'Goudy Old Style', serif;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sidebar-menu {
    display: flex;
    width: 100%;
    float: none;
    overflow-x: auto;
    background-color: #333;
  }

  .menu-container {
    margin-left: 0;
  }
}

.menu-columns {
  display: flex;
  gap: 32px;
  margin-top: 16px;
}

.menu-column {
  flex: 1; /* Take up equal width */
}

.menu-item {
  margin-bottom: 20px;
}

.menu-item h4 {
  margin: 0;
  font-size: 1.1rem;
  color: aliceblue;
}

.menu-item p {
  margin: 4px 0 0;
  color: aliceblue;
  font-size: 0.95rem;
}

footer {
  width: 100%;                 /* Full screen width */
  background-color: #28272e;   /* Match social-media background */
  padding: 20px 40px;          /* Padding for spacing */
  box-sizing: border-box;      /* Prevent padding from overflowing */
  color: aliceblue;            /* Text color for contrast */
  text-align: center;          /* Center text, optional */
  margin: 0;                   /* Remove spacing that might interfere */
}

footer p {
  margin: 0;
  font-size: 14px;
}

/* Our story */
.staff-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 36px;
}

.image-with-caption {
  text-align: center;
  margin: 30px auto;
  max-width: 600px;
}

.image-with-caption img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-with-caption p {
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: #ccc; 
}

.staff-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;  /* control width */
  margin: 40px auto; /* center on page with some vertical spacing */
}

.staff-member {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
}

.staff-member.left {
  flex-direction: row;
}

.staff-member.right {
  flex-direction: row-reverse;
  text-align: right;
}

.staff-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.staff-member p {
  max-width: 400px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: aliceblue;
  margin: 0;
  align-self: center;
}

.group-pic {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin: 20px auto;
  display: block;
}


/* for the contact page */

.contact-left {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.content {
  display: flex;
  justify-content: center;   /* Horizontally centers children */
  align-items: center;       /* Vertically centers children */
  min-height: 80vh;          /* Adjust based on your layout */
  padding: 40px;
  box-sizing: border-box;
  flex-direction: column;    /* Stack booking form and newsletter vertically */
}

.booking-form h3{
  font-size: 50px;
}
.booking-form {
  max-width: 600px;
  width: 100%;
  font-family: 'Goudy Old Style', serif;
  color: aliceblue;
  background-color: #222;  /* Optional: make it stand out */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

/* Fade-in animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to the booking form */
.booking-form {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.5s; /* optional delay */
}

form input,
form textarea,
form button {
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
  font-family: 'Goudy Old Style', serif;
  font-size: 1rem;
}

form button {
  display: block;
  margin: 20px auto;
  padding: 12px 24px;
  background-color: #4a4590;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Goudy Old Style', serif;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: fit-content; /* shrink to content */
  cursor: pointer;
  text-align: center;
}

form button:hover {
  background-color: #6c65c1;
  transform: translateY(-2px);
}

.newsletter {
  max-width: 400px;
  width: 100%;
  font-family: 'Goudy Old Style', serif;
  color: aliceblue;
}
.underline-note {
  text-decoration: underline;
  font-size: 20px;
}

a[href^="mailto:"] {
  color: aliceblue;           
  text-decoration: underline;     
  font-weight: bold;         
}

a[href^="mailto:"]:hover {
  color: #07e3d4;            
  text-decoration: underline;
}

