/**
* Template Name: Yummy
* Updated: Jan 09 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;

  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.about-img {
    min-height: 300px;
}
.about h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.websites-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.website-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .website-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

.website-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
}

.website-content h3 {
    margin: 0;
    color: #007bff; /* Adjust the color to fit your design */
    font-size: 1.25rem;
}

.website-content p {
    font-size: 1rem;
    color: #666;
}

.website-link.coming-soon {
    background-color: #f8f9fa;
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
    .websites-container {
        grid-template-columns: 1fr;
    }
}
/* Adjustments for responsiveness */
@media (min-width: 1400px) {
    #about-content, #about-content-all {
        padding-top: 10px; /* Remove any top padding */
        margin-top: 0; /* Adjust top margin if necessary */
        align-self: start; /* Align to the start of the flex container if using flexbox */
    }

    .main-about-image {
        /* Adjust the size or positioning of your main image if necessary */
    }
    /* Add any other styles or adjustments for elements that are misaligned or have too much whitespace */
}

.about .about-img .main-about-image {
    display: block; /* Use block display */
    margin-left: auto; /* Auto margin on the left */
    margin-right: auto; /* Auto margin on the right */
}



/* About Section CSS Adjustments */


    .about .main-about-image {
        max-width: 100%; /* Ensuring the image is not larger than the container */
        height: 700px;
        display: block;
        border-radius: 10px; /* Optional: rounded corners */
        margin-bottom: 15px; /* Space between the main image and ebook images */
    }

    .about .ebook-languages {
        display: flex;
        justify-content: space-between;
    }

    .about .language-image {
        width: calc(25% - 10px); /* Adjusting for four images with margin */
        margin-right: 10px; /* Margin between images */
        height: auto;
        display: inline-block; /* Horizontal alignment */
        border-radius: 5px; /* Optional: rounded corners */
    }

        .about .language-image:last-child {
            margin-right: 0; /* No margin for the last image */
        }



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    .mission-statement {
        background-color: #eee;
        padding: 40px 0;
    }

    .mission-statement .section-header h2 {
        color: #305065; /* Dark color for the heading */
        margin-bottom: 15px;
        text-align: center;
    }

    .mission-statement .section-header p {
        text-align: center;
        margin-bottom: 30px;
        color: #6c757d; /* Subtle color for the subheading */
    }

    .mission-statement .mission-text {
        color: #495057; /* Main text color */
        line-height: 1.6;
    }

    .btn-learn-more {
        color: #fff;
        background-color: #007bff; /* Button background color */
        border-color: #007bff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .btn-learn-more:hover {
        background-color: #0056b3; /* Darker shade for hover effect */
        border-color: #0056b3;
    }
.mission-statement blockquote {
    font-style: italic;
    margin: 0 0 20px;
    padding: 10px 20px;
    background-color: #f0f0f0; /* Light gray background for emphasis */
    border-left: 5px solid #007bff; /* Blue border on the left */
}

.mission-statement p {
    margin-bottom: 15px;
}

.mission-statement .final-call {
    font-weight: bold;
    color: #305065; /* Darker shade for the final call */
}

.mission-statement .signature {
    text-align: right;
    font-style: italic;
    margin-top: 20px;
}

.mission-statement a {
    color: #007bff;
    text-decoration: underline;
}

    .mission-statement a:hover {
        text-decoration: none;
    }




/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
  .why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/kids_cancer_satspic.jpg") center center;
    background-size: cover;
    padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

.gallery-slider .swiper-slide img {
    width: 100%; /* Full width of the slide */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the slide area */
}

/* Optional: Add min-height for larger display */
/*.gallery-slider .swiper-slide {
    min-height: 500px;*/ /* Adjust as needed */
/*}*/



@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*@media (max-width: 768px) {
    .gallery-slider .swiper-slide {
        min-height: 300px;*/ /* Smaller screens, smaller images */
    /*}
}*/


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}
.loader {
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color:black;
    background-color:black;
    animation: spin 2s linear infinite;
}


.steps-to-join h3 {
font-size:20px;

}






@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    background-size: cover;
    background-position: center;
    /*animation: zoomEffect 20s infinite ease-in-out;*/
    position: relative;
    padding: 100px 0;
}

    .hero video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        z-index: -1;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

.hero {
    background: url('/images/NiagaraFalls2.jpg') no-repeat center center;
    background-size: cover;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.3); /* Lighter overlay for better text visibility */
        z-index: 2; /* Ensure it's above the video but below the text content */
    }


.cursive-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700; /* Use the heaviest weight available */
    color: #000; /* Adjust the color to match your design */
}

#hero .section-header h2 {
    color: #000; /* Adjust the color to match your design */
    font-size: 42px;
}
.section-title {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 40px; /* More space below the title */
    color: #333;
}

.hero .custom-card {
    max-width: 540px; /* Adjusted max-width for better proportions */
    background: #fff; /* Solid white background for better contrast */
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Softer shadow */
    border: none; /* Removed border for a cleaner look */
    padding: 30px; /* Increased padding */
    margin-left:190px;
}

.hero .card-text {
    font-size: 16px; /* Adjusted font size for better readability */
    color: #555; /* Softer color for better readability */
    margin-bottom: 30px;
}

.hero .btn-book-a-table {
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 30px; /* Adjusted border-radius for a pill shape */
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .hero .btn-book-a-table:hover {
        background: #c9302c; /* Darker shade on hover */
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        color: #fff;
    }
/*.hero img {
    margin-right: 100px;


}*/
.rounded-custom {
    border-radius: 20px; /* Adjust the pixel value to increase or decrease roundness */
}

/* Add this new media query for mobile view adjustments */
@media (max-width: 991px) {
    .hero .custom-card, .hero img {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%; /* Make the image and card take up most of the screen width */
    }

    .hero .card.custom-card {
        order: 2; /* Show the card after the image */
        margin-top: 30px; /* Add some space above the card */
    }

    .hero img {
        order: 1; /* Show the image first */
        max-height: none; /* Allow the image to take its natural height */
    }
     .hero .section-header {
         margin-top:120px;
     }
}

@media (max-width: 768px) {
    .hero .section-title {
        font-size: 36px; /* Smaller font size on very small screens */
    }

    .hero .btn-book-a-table {
        font-size: 16px; /* Smaller button font size on very small screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 60px 0; /* Reduce padding for mobile */
    }

        .hero .section-title {
            font-size: 24px; /* Reduce font size for mobile */
            margin-bottom: 20px;
        }
}
@media (max-width: 768px) {
    #hero .section-header h2 {
        font-size: 22px;
    }
    .superbowl-feature-container {
        display: block; /* Stack feature boxes */
        text-align: center; /* Center align content */
        padding: 10px; /* Add some padding */
    }

    .superbowl-feature-box {
        margin: 5px auto; /* Center align feature boxes */
        display: block; /* Stack feature boxes */
    }

    .superbowl-image, .superbowl-future-image {
        height: 80px; /* Adjust image size for mobile */
    }
}


/* General styles */

/* Mobile Styles */
@media only screen and (max-width: 991px) {
    /* Superbowl Feature Boxes and Ebook Image */
    .superbowl-feature-box, .ebook-image-box {
        margin: 10px; /* Adjust the margin for mobile */
    }

        .superbowl-feature-box img, .ebook-image-box img {
            height: 90px; /* Make the images smaller on mobile */
            width: auto; /* Adjust width automatically */
        }



    .hero-container {
        flex-direction: column; /* Stack the items on top of each other */
    }

    .superbowl-caption, .superbowl-future-caption {
        font-size: 12px; /* Smaller font size for captions on mobile */
    }

    /* Adjust hero section padding on mobile for better spacing */
    #hero {
        padding: 20px 0;
    }

    /* Adjust the section header for smaller screens */
    .section-header h2 {
        font-size: 1.5rem; /* Smaller font size for headers */
    }

    .section-header p {
        font-size: 0.8rem; /* Smaller font size for paragraph text */
    }

    /* Other potential adjustments for mobile */
    /* ... */
}

/* You may want to add more breakpoints for different screen sizes for better control */
@media only screen and (max-width: 767px) {
    /* Adjustments for very small screens like older phones */
    .superbowl-feature-box img {
        height: 70px; /* Even smaller images for very small screens */
    }
    .ebook-image {
        height: 100px; /* Even smaller images for very small screens */
    }
    /* ... */
}


/* General styles for the ebook image container */
.ebook-image-box {
    flex: 0 0 auto; /* Prevent the box from growing or shrinking */
    margin: 0 20px; /* Add horizontal margin */
    text-align: center; /* Center the content */
}

    /* Style for the ebook image itself */
    .ebook-image-box img.ebook-image {
        max-width: 100%; /* Make sure the image is never wider than its container */
        height: auto; /* Keep the image aspect ratio */
        transition: transform 0.3s ease; /* Smooth transition for hover effect */
    }

    /* Hover effect for the ebook image */
    .ebook-image-box:hover img.ebook-image {
        transform: translateY(-5px); /* Move the image up slightly on hover */
    }

/* Responsive styles */
@media (max-width: 768px) {
    .ebook-image-box {
        margin: 10px 0; /* Add vertical margin on smaller screens */
    }
}

@media (max-width: 576px) {
    .superbowl-feature-box, .ebook-image-box {
        flex-basis: 100%; /* Take full width on smaller screens */
        margin: 10px 0; /* Stack with vertical margin */
    }
}
@media (max-width: 533px) {
    /* Adjust the size of the superbowl and ebook images */
    .superbowl-feature-box img
     {
        max-height: 50px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }
    .ebook-image-box img.ebook-image {
        max-height: 110px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }
}
@media (max-width: 404px) {
    /* Adjust the size of the superbowl and ebook images */
    .superbowl-feature-box img {
        max-height: 40px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }

    .ebook-image-box img.ebook-image {
        max-height: 100px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }
}
@media (max-width: 369px) {
    /* Adjust the size of the superbowl and ebook images */
    .superbowl-feature-box img {
        max-height: 25px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }

    .ebook-image-box img.ebook-image {
        max-height: 80px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }
}
@media (max-width: 313px) {
    /* Adjust the size of the superbowl and ebook images */
    .superbowl-feature-box img {
        max-height: 15px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }

    .ebook-image-box img.ebook-image {
        max-height: 60px; /* Smaller height for smaller screens */
        width: auto; /* Maintain aspect ratio */
    }
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero {
        animation: none;
    }
}




    /*--------------------------------------------------------------
# Welcome Section
--------------------------------------------------------------*/
    .welcome {
        padding: 160px 0;
        background: #fff; /* Change this to match your color scheme */
    }

        .welcome .section-header {
            margin-bottom: 30px;
        }

            .welcome .section-header h2 {
                font-size: 36px;
                font-weight: 700;
                margin-bottom: 20px;
                padding-bottom: 20px;
                position: relative;
                color: #5c5c5c; /* Change this to match your color scheme */
            }

            .welcome .section-header p {
                margin-bottom: 0;
            }

        .welcome h3 {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .welcome p {
            margin-bottom: 30px;
            font-size: 15px;
            line-height: 24px;
        }

    .btn-learn-more {
        background: #007bff; /* Change this to match your color scheme */
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .btn-learn-more:hover {
            background: #0056b3; /* Change this for hover effect */
        }

    .welcome-img {
        max-width: 100%;
        vertical-align: middle;
        border-style: none;
        transition: transform .2s; /* Animation */
    }

        .welcome-img:hover {
            transform: scale(1.05); /* Slightly increase the size on hover */
        }


    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    .footer {
        font-size: 14px;
        background-color: #1f1f24;
        padding: 50px 0;
        color: rgba(255, 255, 255, 0.7);
    }

        .footer .icon {
            margin-right: 15px;
            font-size: 24px;
            line-height: 0;
        }

        .footer h4 {
            font-size: 16px;
            font-weight: bold;
            position: relative;
            padding-bottom: 5px;
            color: #fff;
        }

        .footer .footer-links {
            margin-bottom: 30px;
        }

            .footer .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    .footer .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                .footer .footer-links ul a {
                    color: rgba(255, 255, 255, 0.6);
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    .footer .footer-links ul a:hover {
                        color: #fff;
                    }

        .footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-right: 10px;
            transition: 0.3s;
        }

            .footer .social-links a:hover {
                color: #fff;
                border-color: #fff;
            }

        .footer .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer .credits {
            padding-top: 4px;
            text-align: center;
            font-size: 13px;
        }

            .footer .credits a {
                color: #fff;
            }

    /* Container holding the images */
    /* Initially hide the container in CSS */
    .image-container {
        display: none;
        text-align: center;
        flex-wrap: nowrap;
        align-content: stretch;
        justify-content: center;
        align-items: flex-end;
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
    }


        /* Individual image containers */
        .image-container .image-displays {
            position: relative;
            width: calc(33.333% - 10px);
            margin: 5px;
            vertical-align: top;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden; /* Ensures the border-radius applies to the image as well */
            transition: all 0.3s ease; /* Smooth transition for effects */
        }

        /* Image styling */
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer; /* Indicates the image is clickable */
        }


        /* Hover effect for image container */
        .image-container .image-displays:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-5px); /* Moves the container up slightly */
        }

            .image-container .image-displays:hover img {
                transform: scale(1.03); /* Slightly enlarges the image */
                opacity: 0.9; /* Slightly lowers the opacity */
            }

            /* Text overlay for additional information */
            .image-container .image-displays:hover .image-info {
                opacity: 1;
                visibility: visible;
            }

    .image-info {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 10px;
        border-radius: 5px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .image-container {
            flex-wrap: wrap;
        }

            .image-container .image-displays {
                width: 100%;
                margin-bottom: 10px;
            }
    }




/*--------------------------------------------------------------
# Why Special Olympics
--------------------------------------------------------------*/
.image-caption-container{
    margin-top:50px;
}
.special-olympics-images .image-caption-container {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden; /* Hide parts of the image that exceed the container */
}

/* Set a fixed height to maintain aspect ratio */
.special-olympics-images .image-overlay {
    position: relative;
    height: 0;
    padding-bottom: 66.66%; /* This percentage gives a 3:2 aspect ratio */
}

.special-olympics-images img {
    max-width: 100%;
    display: block; /* Removes additional space below the image */
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
}

.special-olympics-images .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    color: #fff; /* Text color */
    padding: 10px; /* Padding inside the caption */
    border-radius: 0 0 10px 10px; /* Rounded corners at the bottom */
    box-sizing: border-box;
    font-size: 14px;
    text-align: center; /* Center-align the text */
}

@media (max-width: 768px) {
    .special-olympics-images .image-caption-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Public Site Responsive Cleanup
--------------------------------------------------------------*/
body.public-site {
    overflow-x: hidden;
}

body.public-site img {
    max-width: 100%;
}

body.public-site .header .logo h1 {
    letter-spacing: 0;
}

@media (min-width: 1280px) {
    body.public-site .navbar > ul > .nav-cta-item {
        padding-left: 28px;
    }

    body.public-site .navbar .nav-cta-item .btn-book-a-table {
        margin-left: 0;
    }
}

@media (max-width: 1279px) {
    body.public-home .navbar {
        width: min(88vw, 420px);
        max-width: 420px;
        border-left: 1px solid rgba(33, 37, 41, 0.12);
        box-shadow: -18px 0 44px rgba(15, 23, 42, 0.16);
    }

    body.public-home .navbar ul {
        padding: 76px 18px 24px;
        background: rgba(255, 255, 255, 0.97);
    }

    body.public-home .navbar a,
    body.public-home .navbar a:focus {
        min-height: 48px;
        padding: 13px 14px;
        border-bottom: 1px solid rgba(206, 18, 18, 0.09);
        color: #31343a;
        white-space: normal;
    }

    body.public-home .navbar .nav-cta-item {
        padding: 10px 0 0;
    }

    body.public-home .navbar .btn-book-a-table,
    body.public-home .navbar .btn-book-a-table:focus {
        justify-content: center;
        margin: 8px 14px 0;
        min-height: 48px;
        padding: 12px 18px;
        color: #fff;
        border-bottom: 0;
        border-radius: 999px;
        white-space: normal;
    }

    body.public-home .mobile-nav-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        margin: 0 0 0 14px;
        color: var(--color-secondary);
    }

    body.public-home .mobile-nav-hide {
        top: 18px;
        right: 18px;
        background: #fff;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
    }

    body.public-site:not(.public-home) .navbar {
        position: static;
        inset: auto;
        width: auto;
        max-width: none;
        border-left: 0;
        z-index: auto;
    }

    body.public-site:not(.public-home) .navbar ul {
        position: static;
        inset: auto;
        display: flex;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
        background: transparent;
        overflow: visible;
    }

    body.public-site:not(.public-home) .navbar a,
    body.public-site:not(.public-home) .navbar a:focus {
        min-height: 44px;
        padding: 9px 12px;
        border-bottom: 0;
        color: #4b5563;
        white-space: normal;
    }
}

body.public-home #hero.public-home-hero {
    overflow: hidden;
}

body.public-home .public-home-hero__container {
    position: relative;
    z-index: 2;
}

body.public-home .hero-desktop-spacer {
    padding-top: 400px;
}

body.public-home .public-home-hero__intro {
    margin-top: -250px;
}

body.public-home .public-home-hero__subtitle {
    margin-top: 100px;
    margin-bottom: -120px;
}

body.public-home .public-home-hero__media {
    padding-top: 200px;
}

body.public-home .hero-feature-row {
    width: 100%;
}

@media (min-width: 1200px) {
    body.public-home #hero.public-home-hero {
        min-height: 100vh;
        padding-top: 0;
        padding-bottom: 0;
    }

    body.public-home #mission-statement,
    body.public-home #power-of-30,
    body.public-home #why-special-olympics,
    body.public-home #testimonials,
    body.public-home #contact {
        box-sizing: border-box;
        min-height: 100vh;
    }

    body.public-home #power-of-30 .public-section-top-spacer,
    body.public-home #contact .public-section-top-spacer {
        height: 0;
    }

    body.public-home #power-of-30 {
        padding-top: 36px;
        padding-bottom: 124px;
    }

    body.public-home #contact {
        padding-top: 64px;
    }

    body.public-home #why-special-olympics .special-olympics-images {
        margin-top: 32px;
    }
}

@media (min-width: 1200px) and (max-height: 850px) {
    body.public-home .public-home-hero__media {
        padding-top: 90px;
    }
}

body.public-home .public-section-top-spacer {
    height: 40px;
}

body.public-home .public-section-top-spacer--lg {
    height: 60px;
}

body.public-home .public-section-bottom-spacer {
    height: 170px;
}

body.public-home .mission-text,
body.public-home .power-of-30 .content,
body.public-home .why-special-olympics-content {
    overflow-wrap: anywhere;
}

body.public-ebook-details .ebook-details-title {
    padding-top: 70px;
}

body.public-ebook-details .ebook-detail-panel {
    padding-top: 20px;
}

body.public-ebook-details .ebook-detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 30px;
}

body.public-ebook-details .donate-paypal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 102px;
}

body.public-ebook-details .donate-paypal-button .donate-button-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

body.public-ebook-details .donate-paypal-button--loading {
    min-width: 220px;
    cursor: progress;
    opacity: 0.95;
    pointer-events: none;
}

body.public-ebook-details .donate-paypal-button--loading .donate-button-label {
    display: none;
}

body.public-ebook-details .donate-paypal-button--loading .donate-button-loading {
    display: inline-flex;
}

body.public-ebook-details .donate-redirect-status {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    max-width: 460px;
    margin: -0.15rem 0 0;
    padding: 0.65rem 0.8rem;
    border-left: 3px solid #0d6efd;
    border-radius: 0.35rem;
    background: #f8fbff;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.35;
}

body.public-ebook-details .donate-status-title {
    color: #212529;
    font-weight: 600;
}

body.public-ebook-details .donate-status-detail {
    color: #5f6b76;
}

body.public-ebook-details .donate-redirect-status[hidden] {
    display: none;
}

body.public-ebook-details .newsletter-disclosure {
    max-width: 560px;
}

body.public-ebook-details .image-container.sponsor-ad-grid {
    display: flex;
    justify-content: center;
}

body.public-ebook-details .referral-control-row {
    --referral-action-width: 72px;
    gap: 0.5rem;
}

body.public-ebook-details .referral-control-row .form-control,
body.public-ebook-details .referral-control-row .form-select {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

body.public-ebook-details .referral-control-row .btn {
    flex: 0 0 var(--referral-action-width);
    min-width: var(--referral-action-width);
    margin-left: 0 !important;
}

body.public-ebook-details .referral-control-row--select {
    margin-top: 0;
}

body.public-ebook-details .referral-action-spacer {
    flex: 0 0 var(--referral-action-width);
    min-width: var(--referral-action-width);
}

body.public-simple-page .privacy-content-shell {
    padding-top: 120px;
}

body.public-simple-page .footer {
    position: static;
}

@media (max-width: 1199px) {
    body.public-home #hero.public-home-hero {
        min-height: auto;
        padding: 120px 0 76px;
    }

    body.public-home .hero-desktop-spacer {
        display: none;
    }

    body.public-home .public-home-hero__intro {
        margin-top: 0;
    }

    body.public-home .public-home-hero__subtitle {
        max-width: 720px;
        margin: 1.25rem auto 0;
        color: #343a40;
    }

    body.public-home .public-home-hero__media {
        padding-top: 2rem;
    }

    body.public-home .hero-feature-row {
        gap: 1rem;
    }

    body.public-site [data-aos][data-aos] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body.public-home .ebook-button .btn {
        min-height: 48px;
        padding: 12px 22px;
        border-radius: 999px;
    }

    body.public-home .superbowl-feature-box,
    body.public-home .ebook-image-box {
        margin: 0 10px;
    }

    body.public-home .about .main-about-image {
        width: 100%;
        height: auto;
        max-height: 680px;
        object-fit: contain;
    }

    body.public-home .section-header p {
        font-size: 42px;
        line-height: 1.08;
    }
}

@media (max-width: 991px) {
    body.public-home section {
        padding: 60px 0;
    }

    body.public-home #hero.public-home-hero {
        align-items: flex-start;
        min-height: 100svh;
        padding: 112px 0 52px;
    }

    body.public-home .public-home-hero::before {
        z-index: 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 44%, rgba(255, 255, 255, 0.88) 100%);
    }

    body.public-home .hero-bg {
        background-position: center top;
        opacity: 0.95;
    }

    body.public-home #hero .section-header h2 {
        max-width: 780px;
        margin: 0 auto;
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.08;
    }

    body.public-home .public-home-hero__subtitle {
        max-width: 620px;
        font-size: 1.05rem;
        line-height: 1.55;
    }

    body.public-home .hero-feature-row {
        gap: 0.9rem;
    }

    body.public-home .public-home-hero__ebook {
        order: 1;
        flex: 0 0 100%;
        max-width: none;
        margin: 0 auto;
        text-align: center;
    }

    body.public-home .ebook-image-box img.ebook-image {
        width: min(190px, 44vw);
        max-height: none;
        height: auto;
        margin: 0 auto;
    }

    body.public-home .ebook-button {
        margin-top: 1rem;
    }

    body.public-home .ebook-button .btn {
        min-height: 48px;
        padding: 12px 22px;
        font-size: 1rem;
        border-radius: 999px;
    }

    body.public-home .superbowl-feature-box {
        order: 2;
        flex: 0 1 170px;
        margin: 0;
        padding: 9px;
    }

    body.public-home .superbowl-feature-box img {
        width: auto;
        height: auto;
        max-height: 78px;
        margin: 0 auto;
    }

    body.public-home .section-header {
        padding-bottom: 22px;
    }

    body.public-home .section-header p {
        max-width: 760px;
        margin: 0 auto;
        font-size: 36px;
    }

    body.public-home .public-section-top-spacer,
    body.public-home .public-section-top-spacer--lg {
        height: 24px;
    }

    body.public-home .public-section-bottom-spacer {
        height: 56px;
    }

    body.public-home #about .section-header {
        padding-top: 24px;
    }

    body.public-home .about .ebook-languages {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    body.public-home .about .language-image {
        width: calc(50% - 0.5rem);
        max-width: 190px;
        margin-right: 0;
    }

    body.public-home #about-content {
        align-items: flex-start;
    }

    body.public-home .mission-text,
    body.public-home .power-of-30 .content,
    body.public-home .why-special-olympics-content,
    body.public-home .steps-to-join {
        max-width: 70ch;
        margin-inline: auto;
        font-size: 1rem;
        line-height: 1.7;
    }

    body.public-home .mission-statement blockquote {
        padding: 14px 16px;
    }

    body.public-home .image-caption-container {
        margin-top: 24px;
    }

    body.public-home .testimonials .section-header {
        margin-bottom: 24px;
    }

    body.public-home .testimonials .testimonial-item .testimonial-content {
        padding-left: 22px;
    }

    body.public-home .contact .info-item {
        padding: 22px;
    }

    body.public-ebook-details .ebook-details-shell {
        padding-top: 6rem !important;
    }

    body.public-ebook-details .ebook-details-title {
        padding-top: 0;
        font-size: clamp(2rem, 6vw, 2.8rem);
        line-height: 1.08;
    }

    body.public-ebook-details .ebook-cover-column {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    body.public-ebook-details .ebook-cover-image {
        max-height: 560px;
        width: auto;
    }

    body.public-ebook-details .ebook-detail-column {
        text-align: center;
    }

    body.public-ebook-details .ebook-detail-actions {
        justify-content: center;
    }

    body.public-ebook-details .newsletter-disclosure {
        margin-inline: auto;
    }

    body.public-ebook-details .image-container.sponsor-ad-grid {
        flex-wrap: wrap;
    }

    body.public-ebook-details .image-container .image-displays {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    body.public-home .header {
        height: 72px;
    }

    body.public-home #hero.public-home-hero {
        padding-top: 94px;
    }

    body.public-home .public-home-hero__subtitle {
        font-size: 1rem;
    }

    body.public-home .superbowl-feature-box {
        flex-basis: calc(50% - 0.5rem);
        max-width: 180px;
    }

    body.public-home .superbowl-feature-box img {
        max-height: 68px;
    }

    body.public-home .about .about-img {
        min-height: 0;
    }

    body.public-home .about .main-about-image {
        max-height: none;
    }

    body.public-home .special-olympics-images .caption {
        font-size: 13px;
        line-height: 1.35;
    }

    body.public-home .testimonials .testimonial-item .testimonial-content {
        border-left: 0;
        padding-left: 0;
        text-align: center;
    }

    body.public-home .testimonials .testimonial-item .testimonial-img {
        max-width: 130px;
        margin-top: 0.5rem;
    }

    body.public-home .contact .php-email-form button[type=submit] {
        min-height: 48px;
    }

    body.public-site .modal-dialog {
        margin: 0.75rem;
    }

    body.public-site .modal-body {
        padding: 0.75rem;
    }

    body.public-site .modal-body img {
        width: auto;
        max-width: 100%;
        max-height: calc(100svh - 150px);
        object-fit: contain;
    }
}

@media (max-width: 575px) {
    body.public-site .header .logo h1 {
        font-size: 1.35rem;
    }

    body.public-site:not(.public-home) .header {
        height: 66px;
    }

    body.public-site:not(.public-home) .navbar a,
    body.public-site:not(.public-home) .navbar a:focus {
        min-height: 40px;
        padding: 7px 8px;
        font-size: 0.92rem;
    }

    body.public-home .navbar {
        width: 100%;
        max-width: none;
    }

    body.public-home .navbar ul {
        padding-inline: 14px;
    }

    body.public-home #hero .section-header h2 {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    body.public-home .public-home-hero__subtitle {
        max-width: 32ch;
        font-size: 0.95rem;
    }

    body.public-home .ebook-image-box img.ebook-image {
        width: min(170px, 54vw);
    }

    body.public-home .superbowl-feature-box {
        flex-basis: calc(50% - 0.45rem);
        padding: 7px;
    }

    body.public-home .superbowl-feature-box img {
        max-height: 54px;
    }

    body.public-home section {
        padding: 48px 0;
    }

    body.public-home .section-header p {
        font-size: 30px;
        line-height: 1.12;
    }

    body.public-home .about .language-image {
        width: calc(50% - 0.45rem);
    }

    body.public-home .mission-statement blockquote {
        margin-bottom: 16px;
        padding: 12px 14px;
    }

    body.public-home .special-olympics-images .image-overlay {
        height: auto;
        padding-bottom: 0;
    }

    body.public-home .special-olympics-images img {
        position: static;
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        transform: none;
        object-fit: contain;
    }

    body.public-home .special-olympics-images .caption {
        position: static;
        border-radius: 0 0 10px 10px;
        background: rgba(33, 37, 41, 0.82);
    }

    body.public-home .contact .info-item {
        align-items: flex-start !important;
        padding: 18px;
    }

    body.public-home .contact .info-item .icon {
        width: 48px;
        height: 48px;
        margin-right: 12px;
    }

    body.public-home .contact .php-email-form {
        padding: 1rem !important;
    }

    body.public-home .contact .php-email-form button[type=submit] {
        width: 100%;
    }

    body.public-ebook-details .ebook-details-shell {
        padding-top: 5.25rem !important;
    }

    body.public-ebook-details .ebook-details-title {
        font-size: clamp(1.8rem, 10vw, 2.4rem);
    }

    body.public-ebook-details .ebook-detail-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.public-ebook-details .ebook-detail-actions .btn {
        width: 100%;
        min-height: 48px;
    }

    body.public-ebook-details .image-container .image-displays {
        width: 100%;
    }

    body.public-ebook-details .referral-control-row {
        flex-direction: column;
        align-items: stretch !important;
    }

    body.public-ebook-details .referral-control-row .btn,
    body.public-ebook-details .referral-control-row .form-control,
    body.public-ebook-details .referral-control-row .form-select {
        flex: 0 0 auto;
        width: 100%;
        margin-left: 0;
    }

    body.public-ebook-details .referral-control-row .btn {
        min-width: 0;
    }

    body.public-ebook-details .referral-action-spacer {
        display: none;
    }

    body.public-ebook-details .referral-section .card-body {
        padding: 1rem;
    }

    body.public-simple-page .success-shell,
    body.public-simple-page .cancel-shell,
    body.public-simple-page .pending-shell,
    body.public-simple-page .privacy-content-shell {
        padding-top: 92px;
    }
}
