body {
    font-family: 'Poppins', sans-serif;
}

.gallery-hero {
    background:linear-gradient(rgba(0, 0, 0, 0.377)), url('../images/gallbig.jpeg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
/* Tablets (≤768px) */
@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 2rem;   /* smaller heading */
  }

  .gallery-hero .lead {
    font-size: 1rem;   /* slightly smaller text */
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  .gallery-hero h1 {
    font-size: 1.6rem;  /* compact heading */
  }

  .gallery-hero .lead {
    font-size: 0.9rem;  /* compact paragraph */
  }

  .gallery-hero {
    padding: 20px 10px; /* add spacing */
  }
}

/* Navbar */
.navbar {
  background: #ffffff;
}
.navbar-brand {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.navbar-nav .nav-link {
  transition: color 0.3s;
  color: #000;
  font-weight: 500;
}
.active{
  color: #f39c12 !important;
  font-weight: bold !important;
}
.navbar-nav .nav-link:hover {
  color: #f39c12;
  font-weight: 500;
}
.navbar-toggler {
    border-color: rgb(1, 1, 1);
    color: rgba(0, 0, 0, 0.573);
    font-weight: bold;
}
.navbar-toggler-icon {
    filter: invert(1);
}
#navbarNav{
    transition-duration: 0.7s;
}

.nomnom-section {
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    background: #f5f4f4;
    overflow-x: hidden;
    /* ✅ stop horizontal scroll */
}

.nomnom-section h1 {
    font-size: 2rem;
    margin: 0 0 1.5em;
    text-align: center;
}

.nomnom-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* smaller min */
    grid-auto-rows: 150px;
    grid-auto-flow: row dense;
    max-width: 100%;
    /* prevent overshoot */
    box-sizing: border-box;
}

.nomnom-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* background: url('../images/gall1.png') center/cover; */
    box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    counter-increment: item-counter;


}
.nomnom-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
}

.nomnom-item:hover {
    transform: scale(1.05);
}

.nomnom-item:hover::after {
    opacity: 0;
}

/* Sizes */
.nomnom-item--medium {
    grid-row-end: span 2;
}

.nomnom-item--large {
    grid-row-end: span 3;
}

.nomnom-item--full {
    grid-column-end: auto;
}

@media screen and (min-width: 768px) {
    .nomnom-item--full {
        grid-column: 1 / -1;
        grid-row-end: span 2;
    }
}

.nomnom-item__details {
    position: relative;
    z-index: 1;
    padding: 15px;
    background: #fff;
    color: #828282;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.nomnom-item__details::before {
    content: counter(item-counter);
    font-weight: bold;
    font-size: 1.1rem;
    padding-right: 0.5em;
    color: #444;
}
/* --- Attractive Footer Section --- */
.site-footer {
    background-color: white;
    /* A modern, dark blue-grey */
    color: black;
    /* A soft, light grey for text */
    padding: 60px 0 20px 0;
    font-size: 0.95rem;

}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 4 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    /* Using your brand's orange */
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Stylish underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color:#ff8c00;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #ff8c00;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 16px;
}
/* Media Queries for Responsiveness */
@media (max-width: 767px) {

    .footer-heading,
    .footer-title {
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-bottom: 20px;
    }

    .list-unstyled {
        text-align: center;
    }

    .text h5 {
        font-size: 1.25rem;
        font-weight: bold;
        color: #ff8c00;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* Orange color for the title */
    }

    .foot {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background-color: #ff7b00;
  border: none;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect */
#backToTop:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #e86d00;
}
