/* Event Info Sections */
#event-info.py-5,
#event-info-1.py-5,
#event-info-2.py-5,
#event-info-3.py-5,
#event-info-4.py-5 
#event-info-5.py-5 
#event-info-6.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 0.5rem !important;
}

/* Body Style */

/* Background Light Style */

.bg-blue{
    background-color: #A7C4D2 !important; /* Light gray background color */
    color: #4E5A62; /* Dark text color for contrast */
}

body {
  color: #4E5A62 !important; /* Override with desired color */
}

p {
  color: #4E5A62 !important; /* Override with desired color */
}

/* Headings Style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mogra", serif;
  color: #fff; /* Override with desired color */
}

/* Button Style */
.btn-custom {
  background-color: #4E5A62 !important; /* Custom background color */
  border-color: none; /* Custom border color */
  padding: 10px;
  color: #fff !important; /* Button text color */
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 15px; /* Space below the button */
}

.btn-custom:hover,
.btn-custom:focus {
  background-color: #cf6f2b !important; /* Custom background color on hover */
  color: #fff !important; /* Custom border color on hover */
}

/* Title Style */
.title {
  color: green;
}

/* Hero Section */

.hero-section {
  background-color: #A7C4D2;
  background-size: cover;
  background-position: center;
  color: white;
  height: auto; /* Set height to 750px */
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.carousel-caption {
  bottom: 50%; /* Adjust position of captions */
  text-align: center; /* Center-align text */
}

.carousel-item img {
  object-fit: cover; /* Ensures image covers the area */
  height: auto; /* Set height to 750px */
}

/* Hotmap Image */
.hotmap {
  position: relative;
  width: 100%;
  max-width: 600px; /* Set a maximum width for the image */
  border-radius: 4px;
}


/* Hotmap Image Scaling */
.hotmap img {
  width: 100%; /* Ensure the image scales with the container */
  border-radius: 10px; /* Adjust the value to control the rounding */
  overflow: hidden; /* Ensures content inside also has rounded corners */
}

/* Hotspot Icon */
.hotspot-icon {
  position: absolute;
  width: 40px; /* Adjust size as needed */
  height: 40px; /* Adjust size as needed */
  background-image: url("img/waypoint.png"); /* Replace with your icon image */
  background-size: contain; /* Ensure the icon fits the circle */
  background-repeat: no-repeat;
  cursor: pointer;
  border: none; /* Remove border */
  transition: transform 0.2s ease-in-out; /* Smooth transition */
}

/* Hotspot Circle */
.hotspot-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cf6f2b; /* More visible red */
  cursor: pointer;
  border: 1px solid white;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  transform: translate(-50%, -50%);
}




/* Popup styling */
.hotmap-popup {
  display: none;
  position: absolute;
  background-color: #cf6f2b;
  color: #fff;
  border: none;
  padding: 5px;
  z-index: 10;
  border-radius: 8px;
  max-width: 250px;
  font-size: 14px;
}

/* Footer */
.footer-logo {
  max-width: 150px; /* Adjust logo size */
  margin-bottom: 10px;
}

footer {
  background-color: #4E5A62; /* Dark background */
  padding: 10px 0; /* Padding for top and bottom */
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

footer h5 {
  margin-bottom: 15px; /* Spacing between heading and links */
  text-align: left; /* Align the heading to the left */
}

footer ul {
  list-style: none;
  padding: 0;
  text-align: left; /* Align the links to the left */
}

footer ul li {
  margin-bottom: 10px; /* Spacing between list items */
}

footer .col-md-4 {
  text-align: left; /* Ensure the links are aligned to the left */
}

/* Navbar Styling */
.navbar {
    background-color: #A7C4D2 !important; /* Light background */
    padding: 15px 20px;
}

/* Navbar Brand */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4E5A62;
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 1rem;
    color: #555;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #cf6f2b; /* Bootstrap primary blue */
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px;
    }
}


/* General styling for the nav dropdown */
.navbar .dropdown-menu {
  background-color: #A7C4D2; /* Background color for dropdown */
  border: none; /* Remove border */
  border-radius: 0.25rem; /* Rounded corners */
  padding: 0.5rem 0; /* Spacing around dropdown items */
}

.nav-link i {
  font-size: 1.2rem;
  color: inherit; /* Inherits the color from parent */
  transition: color 0.3s ease;
}

.nav-link:hover i {
  color: #cf6f2b; /* Change to your preferred hover color */
}

/* Background color for Partners Section */
.bg-partners {
  background-color: #A7C4D2; /* Light grey background, adjust the hex code for your preferred color */
  padding: 60px 0; /* Adjust the padding to create some space */
}

.sponsor-logos img {
  margin: 30px; /* Add some spacing between the sponsor logos */
  max-width: 150px; /* Set a maximum width for the logos to ensure they are uniformly sized */
}

/* Auth Modal */
#auth-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #cf6f2b;
}

 /* Image Modal styles */
 .image-modal {
  display: none;
  position: fixed;
  border-radius: 8px;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.image-modal-content {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}

.image-close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #cf6f2b;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.image-close-modal:hover,
.image-close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#auth-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-link {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

.tab-link.active {
    border-bottom: 2px solid #A7C4D2;
    font-weight: bold;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.auth-form button {
    width: 100%;
    padding: 10px;
    background-color: #A7C4D2;
    color: #4E5A62;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.auth-form button:hover {
    background-color: #758b96;
    color: #fff;
}

#login-message,
#register-message {
    margin-top: 15px;
    text-align: center;
}

/* Navbar */


/* Styling for each dropdown item */
.navbar .dropdown-item {
  color: #4E5A62; /* Text color */
  padding: 0.75rem 1.5rem; /* Padding around text */
  font-size: 16px; /* Font size */
  transition:
    background-color 0.3s ease,
    color 0.3s ease; /* Smooth hover transition */
}

/* Hover state for dropdown items */
.navbar .dropdown-item:hover {
  background-color: #cf6f2b; /* Background color on hover */
  color: #fff; /* Text color on hover */
}

/* Active dropdown item */
.navbar .dropdown-item.active {
  background-color: #cf6f2b; /* Background for active state */
  color: #fff; /* Text color for active state */
}

/* Card container */
.card {
  color: #4E5A62;
  background-color: #A7C4D2; /* Light background color */
  border: 1px solid #cf6f2b; /* Subtle border */
  border-radius: 10px; /* Rounded corners */
  margin-bottom: 20px; /* Space below the card */
  text-decoration: none; /* Remove underline from links */
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out; /* Hover effect */
}

/* Card body */
.card-body {
  color: #4E5A62;
  padding: 20px; /* Adjust padding for the content */
  font-family: "Roboto Slab", serif;
}

/* Text customization */
.card-body i b {
  font-size: 1.1rem; /* Font size for emphasized text */
  color: #cf6f2b; /* Darker color for the text */
  letter-spacing: 0.5px; /* Space between letters */
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: none; /* Stronger shadow on hover */
}

/* Optional customizations */
.card-body p {
  color: #4E5A62; /* Slightly muted color for paragraph text */
  line-height: 1.6; /* Increase line height for readability */
}

.card-body i {
  color: #4E5A62; /* Optional italic text color */
}
/* Accordion Container */
.accordion {
  margin: 20px 0; /* Margin around the accordion */
  border: 1px; /* Border around the accordion */
  border-radius: 5px; /* Rounded corners for the accordion */
}

/* Accordion Item */
.accordion-item {
  border: none; /* Remove border around each item */
}

/* Accordion Header */
.accordion-header {
  background-color: #f8f9fa; /* Background color for header */
}

/* Accordion Button */
.accordion-button {
  background-color: #fff; /* Primary button background */
  color: #fff; /* Text color for button */
  font-weight: bold; /* Make button text bold */
  border: 1px; /* Remove border */
  border-radius: 5px; /* Rounded corners for button */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Active Accordion Button */
.accordion-button:not(.collapsed) {
  background-color: #fff; /* Darker background when active */
  color: #cf6f2b; /* Text color when active */
}

/* Accordion Button Hover State */
.accordion-button:hover {
  background-color: #fff; /* Darker background on hover */
  color: #4E5A62; /* Text color when active */
}

/* Accordion Button Collapsed State */
.accordion-button.collapsed {
  background-color: #f8f9fa; /* Background color when collapsed */
  color: #4E5A62; /* Text color when collapsed */
}

/* Custom focus style for accordion button */
.accordion-button:focus {
  outline: none; /* Remove the default outline */
  box-shadow: 0 0 0 0.2rem #fff; /* Change to your desired color */
}

/* Accordion Body */
.accordion-body {
  color: #4E5A62;
  padding: 15px; /* Padding inside the body */
  background-color: #fff; /* White background for body */
  border-top: 1px solid #fff; /* Top border for body */
}

/* Strong Text in Accordion Body */
.accordion-body strong {
  color: #4E5A62; /* Color for strong text */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  .accordion-body {
    font-size: 12px; /* Adjust body font size for smaller screens */
  }
}

.element {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.circle-black {
  background-color: #A7C4D2;
}
.circle-white {
  background-color: #fff;
}

.vline {
  border-left: 3px;
  height: 5px;
}

.logo {
  width: 300px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  align-items: center;
}

.journey-section {
  padding: 20px;
  background-color: #f7f7f7;
}
.journey-title {
  text-align: left;
  color: #4E5A62;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.journey-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.journey-step:last-child {
  border-bottom: none;
}
.step-number {
  font-size: 18px;
  font-weight: bold;
  color: #cf6f2b;
  margin-right: 15px;
}
.step-night {
  font-size: 18px;
  color: #4E5A62;
  margin-right: 15px;
}
.step-details {
  flex-grow: 1;
}
.step-title {
  font-size: 18px;
  color: #4E5A62;
  font-weight: bold;
  margin-bottom: 5px;
}
.step-description {
  font-size: 16px;
  color: #555;
}

.top-left-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 15px; 
  background-color: rgba(167, 196, 210, 0.5);
  color: #4E5A62;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.top-left-btn:hover {
  background-color: rgba(167, 196, 210, 0.9);
}

/* Auth Button Styles */
#auth-button, #logout-button {
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-left: 10px;
}

#auth-button {
    background-color: #A7C4D2;
    color: #4E5A62;
    border: 1px solid #4E5A62;
}

#auth-button:hover {
    background-color: #cf6f2b;
    color: #fff;
    border: none;
}

#logout-button {
    background-color: #cf6f2b;
    color: white;
    border: 1px solid #b85d23;
}

#logout-button:hover {
    background-color: #b85d23;
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    #auth-button, #logout-button {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

/* T-shirt Order Form Styles */
#tshirt-order {
    background-color: none; /* Light background color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#tshirt-order h2 {
    color: #4E5A62; /* Heading color */
    margin-bottom: 20px;
}

#user-info p {
    color: #4E5A62; /* Text color */
    margin-bottom: 10px;
}

#order-form .form-group {
    margin-bottom: 20px;
}

#order-form label {
    display: flex;
    margin-bottom: 5px;
    color: #4E5A62; /* Label color */
}

#order-form input[type="radio"] {
    margin-right: 10px;
}

#order-form .btn-custom {
    background-color: #cf6f2b; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#order-form .btn-custom:hover {
    background-color: #b85d23; /* Button hover background color */
}
