/* Default CSS */

/* The site uses Bootstrap, so these are just 
   custom styles for any additional tweaks */

body {
  background-color: #E6D5BF; /* tan color background */
}

/* Section with slightly darker background */
.section-bg-dark {
    background-color: #f0e4d7; /* Light beige/tan color */
    padding: 2rem;            /* Add padding for better spacing */
    border-radius: 8px;       /* Optional: Rounded corners for a softer look */
}

/* Styled horizontal rule */
.fancy-hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #5C4033, #d2b48c, #5C4033);
    margin: 2rem 0;
}

/* This is just an empty row used as vertical space */
.spacing-row {
    margin: 2rem 0; /* Adjust value as needed */
}

/* The Call-to-action buttons */
.btn-primary {
    color: #fff !important; /* Force white text color */
}

/* Links that need to stand out - like the 
'Contact Us' link on the events page. */
.link-standout {
    color: #5C4033;              /* Dark brown */
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.link-standout::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #5C4033;
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.link-standout:hover {
    color: #8B5E3C;              /* Lighter brown on hover */
}

.link-standout:hover::after {
    transform: scaleX(1);        /* Animate underline */
}

/* Dark brown header background */
.custom-header-bg {
    background-color: #5C4033;
}

/* Restrict hero carousel image height */
.hero-img {
 	  max-height: 400px;
    object-fit: contain;  /* Changed from 'cover' to 'contain' */
    width: 100%;
    margin-bottom: 1rem; /* Adds spacing below the image */		
}

/* Old-timey font styles for h1 and h2 */
h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

h2 {
    font-family: 'Old Standard TT', serif;
    font-weight: 400;
}

.icon-aligned {
    min-width: 20px; /* Ensures consistent icon width */
    text-align: center; /* Optional: centers the icon */
}

.sublist-indent {
    margin-left: calc(25px + 0.5rem); /* Match the icon width + spacing */
}

/* Top banner for Scheffelin Days Ad */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #d9534f; /* Bootstrap's danger color */
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-family: 'Cinzel', serif; /* Match site typography */
}

.banner h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.banner h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0;
    text-decoration: underline;
    cursor: pointer;
}

.banner h2:hover {
    color: #f8d7da; /* Slightly lighter color on hover */
}

.banner-icon {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

/* Theater banner for the home page */
.theater-banner {
    background-color: #dc3545;
    cursor: pointer;
}

.theater-banner .banner-icon {
    font-size: 2.5rem;
    color: white;
}

.theater-banner:hover {
    background-color: #bb2d3b;
}

/* Mouse-over effect for cards */
.hover-effect {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image Gallery */
.image-gallery h3,
.image-gallery p {
    text-align: center;
    margin: 0 auto;
}

.image-gallery .row {
    justify-content: center; /* Ensures all columns are centered */
    gap: 15px; /* Optional: Add spacing between the images */
}

.image-gallery img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Image Overlay Styles for Home->Gallery */
.image-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid #fff;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.close-btn:hover {
    color: #bbb;
}

/* The overlay caption */
.overlay-caption {
    margin-top: 10px;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

/* Hero Overlay for Dinner Theater */
.theater-overlay {
    display: none; /* Hidden by default */
    position: absolute;
    top: 10px; /* Slight spacing from the top */
    left: 10px; /* Slight spacing from the left */
    background: rgba(220, 53, 69, 0.85); /* Bootstrap danger color */
    color: white;
    padding: 10px 20px; /* Padding for spacing inside the overlay */
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
    border-radius: 5px; /* Optional: Add rounded corners */
    z-index: 10; /* Ensure it's above the image */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
}

/* Call-to-action Buttons For schef.html */
.centered-section {
    text-align: center;
}

.centered-buttons {
    display: inline-flex;
    gap: 1rem; /* Adjust spacing between buttons as needed */
}

/* Trip Advisor Reviews Carousel */
.reviews-carousel {
    background-color: #d2b48c; /* Tan background */
    padding: 20px;
    border-radius: 8px;
}

/* Ensure carousel controls are visible */
.reviews-carousel .carousel-control-prev-icon,
.reviews-carousel .carousel-control-next-icon {
    filter: invert(1); /* Make the icons black for visibility */
}

.reviews-carousel .carousel-control-prev,
.reviews-carousel .carousel-control-next {
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5; /* Ensure they stay above the carousel */
    /* background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a background for visibility */
    padding: 10px; /* Optional: Add padding for better clickability */
    border-radius: 50%; /* Optional: Make it round */
}

.reviews-carousel .carousel-control-prev {
    left: -50px; /* Moves it outside the left edge of the carousel */
}

.reviews-carousel .carousel-control-next {
    right: -50px; /* Moves it outside the right edge of the carousel */
}

/* Base styling for all accordion buttons */
.accordion-button {
    color: white;
}

/* Styles for specific tour titles when collapsed All-tours */
.accordion-button.tour-title-1 {
    background-color: #A67B5B;
		color: #fff;
}
.accordion-button.tour-title-2 {
    background-color: #8B6F4E;
		color: #fff;
}
.accordion-button.tour-title-3 {
    background-color: #C19A6B;
		color: #fff;
}
.accordion-button.tour-title-4 {
    background-color: #7A5F44;
		color: #fff;
}
.accordion-button.tour-title-5 {
    background-color: #B88A60;
		color: #fff;
}
.accordion-button.tour-title-6 {
    background-color: #9D7D5A;
		color: #fff;
}

/* Styles for specific tour titles when expanded All-tours */
.accordion-button.tour-title-1:not(.collapsed) {
    background-color: #A67B5B;
}
.accordion-button.tour-title-2:not(.collapsed) {
    background-color: #8B6F4E;
}
.accordion-button.tour-title-3:not(.collapsed) {
    background-color: #C19A6B;
}
.accordion-button.tour-title-4:not(.collapsed) {
    background-color: #7A5F44;
}
.accordion-button.tour-title-5:not(.collapsed) {
    background-color: #B88A60;
}
.accordion-button.tour-title-6:not(.collapsed) {
    background-color: #9D7D5A;
}

/* Footer Background with Circular Gradient */
.footer-bg {
    background: radial-gradient(circle, #ffffff 20%, #d2b48c 100%);
    color: #333;
}

/* Footer Link Styles */
.footer-bg a {
    text-decoration: none;
    color: inherit;
}

.footer-bg a:hover {
    text-decoration: underline;
    color: #5C4033;
}

/* Privacy Link Styling */
.privacy-link {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.privacy-link a {
    font-size: 0.875rem; /* Small font */
    color: #000;        /* Black color */
    text-decoration: none;
}

.privacy-link a:hover {
    text-decoration: underline;
}

/* Timeline (Trolley and Ghost pages */ 
.timeline-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 50px auto;
    width: 90%;
    border-top: 2px solid #5C4033;
}

.timeline-event {
    text-align: center;
    position: relative;
}

.timeline-dot {
    height: 20px;
    width: 20px;
    background-color: #A67B5B;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 10px auto;
    cursor: pointer;
		display: block; /* Force block display to ensure proper rendering */
}

.timeline-label {
    margin-top: 10px;
    font-size: 14px;
    color: 
}

/* This is the overlay for the timeline */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #f0e4d7;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.modal-content img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #5C4033;
    cursor: pointer;
}

/* For smaller screens */
@media (max-width: 768px) {

/* The timeline for the Trolley and Ghost pages */
.timeline-container {
    flex-direction: column;
    align-items: flex-start;
    border-top: none;
    border-left: 2px solid #5C4033;
    padding-left: 20px;
}

.timeline-event {
    margin-bottom: 20px;
}

} /* End @media section */				

/* Testbed Ends Here */
