/* === Site-wide background image (repeats) === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('/images/669.png') repeat;
    background-attachment: fixed;
}

/* === Navbar customization === */
.custom-navbar {
    background-image: url('/images/669.png');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: auto;
}

.custom-navbar .navbar-nav .nav-link {
    color: #145214;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link:focus,
.custom-navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background-color: green;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

/* === Footer customization === */
.custom-footer {
    background-image: url('/images/669.png');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: auto;
    color: #145214;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* === Banner image styling === */
.banner-container img {
    width: auto;
    height: auto;
}

/* === Headings === */
h1 {
    color: #145214;
}

/* === Gallery images grid === */
.gallery img {
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* === Booth Gallery rotating images === */
.booth-gallery-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.booth-gallery {
    width: 35%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.booth-gallery img {
    width: 100%;
    height: auto;
    display: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: opacity 0.5s ease-in-out;
}

.booth-gallery img.active {
    display: block;
}

.festival-heading {
    text-align: center !important;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: green;
}
/*
.content-box {
    padding: 1.5rem;y
    background-color: #e1f9c5;
    border-radius: 10px;
    margin-bottom: 2rem;
}
*/

/* === Service Cards Custom Styling === */
.service-card {
    border: none;
    background-color: #f8fff0;
    transition: transform 0.2s ease-in-out;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/*.carousel-inner img {
  max-height: 500px;
  object-fit: cover;
}
*/

/* === Carousel images thumbnail-style === */
.carousel-inner img {
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

img.img-fluid {
  transition: transform 0.2s ease-in-out;
}

img.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* === Content box styling === */
.content-box {
    background: url('/images/669.png') repeat;
    background-attachment: fixed;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* === Inventory table styling === */
.inventory-table th {
    background-color: #28a745;
    color: white;
    text-align: center;
}

.inventory-table td {
    text-align: center;
}
