header {
    background-color: #FFFFFF;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 0.5px solid #FFF;
}

header .logo-container {
    display: flex;
    align-items: center;
}

header .logo-container img {
    max-height: 75px;
    margin-right: 0px;
    animation: rotate-on-load 2s ease-out;
}

header h1 a {
    text-decoration: none;
    color: #FF6F61;
}

/* Keyframes for rotation */
@keyframes rotate-on-load {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Adding rotation animation to the image */
.rotate-on-load {
    animation: rotate-on-load 2s ease-out;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 26%;
    padding: 0;
}
a {
    text-decoration: none;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}
/* Button styling */
#toggleFormBtn {
    background-color: #FF6F61;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

#toggleFormBtn:hover {
    background-color: #E65A4F;
}
 /* Back-to-top button styling */
        .back-to-top {
            position: fixed;
            bottom: 220px;
            right: 20px;
            width: 60px;
            height: 60px;
            font-size: 35px;
            background-color: #000;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
 /* Styling for the square button */
        .square-btn {
            position: fixed;
            top: 120px;
            right: 1px;
            width: 50px;
            height: 50px;
            background-color: #FFF;
            color: #FF6F61;
            font-size: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .square-btn.hidden {
            opacity: 0;
            pointer-events: none;
        }

.square-btn a i{
  text-decoration: none; 
  color: #FF6F61;
}
/* Contact form styling */
.contact-form {
    display: none;
    width: 75%;
    margin-left: 12.5%;
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.dark-mode .contact-form {
    background-color: #000;
    border: 1px solid #FFF;
    border-radius: 10px;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #444;
}
body.dark-mode .contact-form h2 {
    color: #FFF
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
}

.contact-form input[type="submit"] {
    background-color: #FF6F61;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: #E65A4F;
}

.contact-form input[type="submit"]:focus {
    outline: none;
}
/* Hero Section */
.hero {
    background: url('hero-image1.jpg') no-repeat center center/cover;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
    
    filter: brightness(1);
}

.hero h2 {
    font-size: 45px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Adds a subtle shadow for contrast */
}

.hero p {
    font-size:60px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); /* Adds a subtle shadow for contrast */
}
.hero .container {
    padding: 10%;
    border-radius: 10px;
    width: 75%;;
    background-color: rgba(0, 0, 0, 0.25);
}
.btn {
    background-color: #FF6F61;
    color: #FFFFFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}



/* Footer */
footer {
    background-color: #FFF;
    color: #000;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer-section h3 {
  font-size: 24px;
  color: #333;
  bottom: 10px;
}

.footer-section p,
.footer-section form {
  font-size: 16px;
  color: #666;
}
.footer-section a {
  color: #FF6F61;
  text-decoration: none;
}
.footer-section form {
    display: flex;
    flex-direction: column;
    max-width: 300px; /* Adjust width as needed */
    margin: 0 auto; /* Center the form if needed */
}


form input[type="email"] {
  width: 100%;
  gap:  20px;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
}

form button.btn {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.footer-section form button.btn:hover {
  background-color: #555;
}


.footer-section form .btn {
    background-color: #FF6F61;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}

.social-icons a {
    color: #000;
    font-size: 30px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}
.bi-facebook {
  color: #1877F2; /* Facebook blue */
}

.bi-twitter {
  color: #1DA1F2; /* Twitter blue */
}

.bi-instagram {
  color: #E1306C; /* Instagram pinkish-red */
  border-radius: 50%;
  padding: 5px;
}

.bi-whatsapp {
  color: #25D366; /* WhatsApp green */
}



.social-icons a:hover {
    color: #FF6F61;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .mobile-nav ul {
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        margin: 0;
    }

    .mobile-nav ul li {
        margin: 0;
        padding: 0;
    }

    .mobile-nav ul li a {
        text-decoration: none;
        color: #000;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-nav ul li a i {
        font-size: 30px;
    }

    .mobile-nav ul li a.active {
        color: coral;
    }

    .mobile-nav ul li a.active i {
        color: coral;
    }

    header .container nav {
        visibility: hidden;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 20px;
    }

    .venue-item {
        width: 100%;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-section form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-section form .btn {
        width: 100%;
    }
}

/* Floating Button Styles */
.floating-btn {
    position: fixed;
    bottom: 80px; /* Adjust this value to place it above the mobile nav */
    right: 20px;
    background-color: #FF6F61;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center; 


    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001; /* Make sure it's above the mobile nav */
}


.floating-btn .toggle-text {
    display: none;
}

.floating-btn .bi {
    font-size: 24px;
}

  .floating-circle-btn {
            position: fixed;
            bottom: 150px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #000;
            color: white;
    font-size:30px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .floating-circle-btn:hover {
            background-color: #E65A4F;
        }

        .gear-rotate {
            transition: transform 0.5s ease;
        }
  

body.dark-mode .floating-circle-btn {
  
            background-color: #FF6F61;
}@keyframes bounceInOut {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(8px);
    }
    75% {
        transform: translateY(-5px);
    }
}

@keyframes bounceInOutSmall {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-6px);
    }
    50% {
        transform: translateY(6px);
    }
    75% {
        transform: translateY(-4px);
    }
}

.animated-icons i {
    animation: bounceInOut 2s infinite ease-in-out;
}

.pencil-icon {
    animation: bounceInOutSmall 2s infinite ease-in-out;
    animation-delay: 0.2s; /* Slight delay to make the two icons bounce out of sync */
}

@media (min-width: 769px) {
    .floating-btn {
        bottom: 50px;
        top: 20px;
        right: 20px;
        border-radius: 5px;
        width: auto;
        height: auto;
        padding: 10px 20px;
    }

    .floating-btn .toggle-text {
        display: inline;
        margin-right: 10px;
    }

    .floating-btn .bi {
        font-size: 16px;
    }
}
.how-it-works-toggle {
    background-color: #FF6F61;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 5px;
    transition: background-color 0.3s;
}

.how-it-works-toggle:hover {
    background-color: #E65A4F;
}

.how-it-works-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
    opacity: 0;
}

.how-it-works-content.show {
    max-height: 500px; /* Adjust based on your content height */
    padding: 20px;
    opacity: 1;
}

.how-it-works-content .step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.how-it-works-content.show .step {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* Delay to sync with the dropdown */
}

.step {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.step i {
    font-size: 2em;
    color: #FF6F61;
}

.step h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step p {
    font-size: 1em;
    color: #666;
}

/*venues how it works dropdown*/
.venue-steps-container {
   padding: 50px 0;
   text-align: center;
}

.venue-steps-toggle {
    padding: 10px 20px;
    background-color: #FF6F61;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: ;
}

.venue-steps-toggle:hover {
    background-color: #E65A4F;
}

.venue-steps-content {
    display: none;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-item {
    margin-bottom: 20px;
}

.step-item i {
    font-size: 2em;
    color: #FF6F61;
    margin-right: 10px;
}
.step-item p {
    font-size: 1em;
    color: #666;
}
.step-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
/* Vendor Marketplace Section Styles */
.vendor-marketplace {
    padding: 50px 0;
    background-color: #f9f9f9;
}
.featured-venues-container {
  margin: 5%;
  height: 90%;
  color:#FF6F61;
  padding: 25px;
}
.vendor-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.vendor-card img {
    border-radius: 5px;
    margin-bottom: 15px;
}

.vendor-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.vendor-card p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}


/* Search Bar Section Styles */
.search-bar {
    padding: 20px 0; /* Reduced padding to minimize vertical space */
    background-color: #f9f9f9;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Reduced gap between elements */
    justify-content: center; /* Center the search bar elements */
}

.search-form .form-control {
    flex: 1 1 150px; /* Set a flexible base width for controls */
    padding: 8px; /* Reduced padding for a more compact look */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-form .btn {
    flex: 1 1 100px; /* Set a flexible base width for button */
    background-color: #FF6F61;
    color: #fff;
    padding: 8px 10px; /* Adjusted padding for the button */
    border-radius: 5px;
    border: none;
}
.slideshow-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    height: 80%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.slide.active {
    display: block;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slide h3 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 120%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
}

.modal-content img {
  width:100%;
  height: 100%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
#modal-venue-name {
  color: #2e4053;
}

#modal-venue-details {
  color: #000
}
/* How It Works Section Styles */
.how-it-works {
    padding: 50px 0;
    background-color: #f9f9f9;
}

/* How It Works Dropdown Styles */
.how-it-works-container {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFF;
    color: #000;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 10000;
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-consent-buttons {
    margin-top: 10px;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    background-color: #E5D8B6; /* Matches the color scheme */
    color: #FFF;
}

.cookie-consent-buttons .btn.accept {
    background-color: #E5D8B6;
}

.cookie-consent-buttons .btn.decline {
    background-color: #c0392b;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #000;
    color: #FFFFFF;
}

body.dark-mode header {
    background-color: #000;
    color: #FFFFFF;
}

body.dark-mode nav ul li a {
    color: #FFFFFF;
}

body.dark-mode .hero {
    background: url('../hero-image3.jpg') no-repeat center center/cover;
    color: #FFFFFF;
}


body.dark-mode footer {
    background-color: #000;
    color: #FFFFFF;
}

body.dark-mode .social-icons a {
    color: #FFFFFF;
}

body.dark-mode .social-icons a:hover {
    color: #FF6F61;
}

body.dark-mode .mobile-nav {
    background-color: #222222;
}

body.dark-mode .floating-btn {
    background-color: black;
}

body.dark-mode .floating-btn .bi-moon {
    display: none;
}

body.dark-mode .floating-btn .bi-sun {
    display: inline;
}

.bi-moon {
    display: inline;
}

.bi-sun {
    display: none;
}

/* Dark Mode for Mobile Nav Icons */
body.dark-mode .mobile-nav ul li a {
    color: #FFFFFF;
}

body.dark-mode .mobile-nav ul li a.active {
    color: coral;
}

body.dark-mode .mobile-nav ul li a.active i {
    color: coral;
}

body.dark-mode .search-bar, body.dark-mode .how-it-works, body.dark-mode .featured-venues, venue-card{
  background-color: #000;
  color: #FFF;
}

body.dark-mode .how-it-works-container {
  background-color: #000;
}
