/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
/* General styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, red, black);
    background-attachment: fixed;
    background-size: cover;
    color: #ffffff;
}


header {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


.logo h1 {
    margin: 0;
    font-size: 36px;
    font-family: 'Lobster', cursive; /* Using a different font for logo text */
    color: #ff6347; /* Tomato color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adding shadow to text */
}

.logo h1 a {
    text-decoration: none;
    color: inherit;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
}

h1, h2, h3 {
    margin: 20px 0;
    color: #ffaf7b;
}

p, ul {
    margin: 15px 0;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

.images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.images img {
    width: 30%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

.call-to-action {
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 20px 10px;
    font-size: 1em;
    color: #ffffff;
    background-color: #d76d77;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffaf7b;
}

.anchor-text {
    color: #fff;
    padding: 0px 10px;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 80%;
    display: inline-block;
    /* Optional: Adjust width/height of the logo */
    width: 200px; /* or whatever width fits your design */
    height: auto; /* Maintain aspect ratio */
}

.anchor-text:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin: 10px 0 5px;
    font-weight: bold;
}

form input, form select {
    padding: 8px;
    margin-bottom: 10px;
    border: 2px solid #ffaf7b;
    border-radius: 5px;
    background: transparent;
    color: #ffffff;
    width: 80%;
    max-width: 400px;
}

form button {
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 1em;
    color: #ffffff;
    background-color: #d76d77;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ffaf7b;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    form input, form select {
        width: 92%;
    }
}

/* Event list styles */
.event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.event-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    min-width: 600px;
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Added margin bottom for spacing */
}

.event-item:hover {
    transform: scale(1.05);
}

.event-details p {
    margin: 10px 0;
    line-height: 1.6;
}

iframe {
    border-radius: 10px;
    margin-top: 10px;
}

.event-photo {
    width: 100%;
    max-width: 600px;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.event-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-item {
    margin: 15px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.event-details {
    text-align: center;
    margin-bottom: 15px;
}

.event-photos {
    text-align: center;
}

.carousel {
    display: flex;
    justify-content: center;
    overflow-x: scroll;
}

.show-more {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
}

.show-more:hover {
    background-color: #555;
}

.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.6); /* Darker background */
    padding-top: 60px;
}

.modal-content {
    background-color: white; /* Dark background for contrast */
    color: black; /* White text color */
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


/* Responsive styles */
@media (max-width: 768px) {
    .event-details {
        font-size: 15px;
        text-align: center;
    }

    .event-details strong {
        display: inline-block;
        margin-bottom: 5px;
    }

    .event-details iframe {
        height: 150px;
    }

    .event-item {
        min-width: 100%;
    }

    .event-photo {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .event-details {
        font-size: 13px;
    }

    .event-item {
        min-width: 95%;
    }

    .event-details strong {
        display: inline-block;
        margin-bottom: 5px;
    }

    .event-details iframe {
        height: 120px;
    }

    .event-photo {
        max-width: 100%;
    }
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .close {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .close {
        font-size: 20px;
    }
}

footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Add these styles to your style.css */

.scroll-bar {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.scroll-content {
    display: inline-block;
    padding: 10px;
    transition: transform 0.5s ease-in-out;
}

.scroll-item {
    display: inline-block;
    background-color: #FF0000;
    padding: 10px 20px;
    margin-right: 10px; /* Add margin between items */
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.scroll-item:hover {
    background-color: aliceblue;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 15px;
        width: 100%;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .line2 {
        opacity: 0;
    }

    .hamburger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-links.active {
        display: flex;
    }

    .city-select select {
        background-color: #0A0000;
    }
}

.city-select {
    position: relative;
    display: inline-block;
}

.city-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #460000;
    color: #fff;
    padding: 0px 20px;
    border: 1px solid #460000;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.city-select::after {
    content: '\25BC'; /* Down arrow icon */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    font-size: 12px;
}

.city-select select:hover {
    background-color: #460000;
}

.city-select select:focus {
    outline: none;
    border-color: #666;
}

/* styles.css */

/* .scroll-bar {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px;
}

.scroll-content {
    display: flex;
    gap: 10px;
}

.scroll-item {
    display: inline-block;
    width: 260px;
    flex: 0 0 auto;
    cursor: pointer;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.scroll-item:hover {
    transform: scale(1.05);
}

.scroll-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.scroll-item-info {
    padding: 10px;
    text-align: center;
}

.scroll-item-info h3 {
    margin: 5px 0;
    font-size: 16px;
    color: #0A0000;
}

.scroll-item-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

@media (min-width: 768px) {
    .scroll-item {
        width: 300px;
    }
} */

/* styles.css */

.scroll-bar {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px;
}

.scroll-content {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
}

.scroll-content-not-move {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
}

.scroll-item {
    display: inline-block;
    width: 260px;
    flex: 0 0 auto;
    cursor: pointer;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
    position: relative;
}

.scroll-event {
    text-align: left;
}

.scroll-item:hover {
    transform: scale(1.05);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-info {
    padding: 15px;
}

.event-category {
    display: table;
    padding: 5px 10px;
    background-color: #f00;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.event-info h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #000;
}

.event-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.favorite-icon {
    position: absolute;
    top: 230px;
    right: 10px;
    color: #f00;
}

.favorite-icon .fa-heart {
    font-size: 24px;
}

.favorite-rating-icon {
    height: 40px;
    justify-content: center;
    position: absolute;
    top: 280px;
    right: 10px;
    color: #22ca1f;
}

.favorite-rating-icon .fa-star {
    font-size: 24px;
}

.review-list, .review-form {
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.review h3 {
    margin: 0;
    color: #ff0014;  /* Red text */
}

.review p {
    margin: 5px 0;
    font-size: 14px;
}

.star-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.star-rating .fa {
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}

.star-rating .fa:hover,
.star-rating .fa.selected {
    color: #e60000;  /* Red stars */
}

/* styles.css */

.venue-detail {
    padding: 20px;
}

.venue-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #1a1a1a;  /* Dark background */
    color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.venue-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.venue-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.venue-info h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #e60000;  /* Red text */
}

.venue-info p {
    margin: 10px 0;
    font-size: 1.2rem;
}



.venue-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.event-list, .venue-list {
    margin-top: 40px;
}

.venue-info-down {
    display: none;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #422B2B; /* Matching the color */
    color: white; /* Ensure text is visible */
}

.review-form h2 {
    text-align: center;
    color: #F8A71A; /* Matching the color */
}
.review-form input[type="submit"] {
    width: 100%;
    background-color: #F8A71A;
    color: white;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.review-form input[type="submit"]:hover {
    background-color: #d38f1b;
}
.review-form .star-rating {
    text-align: center;
    margin-bottom: 10px;
}

.average-star-rating {
    align-items: center;
    margin-bottom: 10px;
}

.average-star-rating .fa {
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}

.average-star-rating .fa-star {
    margin-right: 5px;
}


/* Media Query for smaller screens */
@media (min-width: 768px) {
    .venue-header {
        flex-direction: row;
        text-align: left;
    }

    
    .venue-info {
        flex: 2;
        text-align: left;
    }

    .venue-info-down {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .venue-info-down h1 {
        font-size: 2.5rem;
        margin: 0;
        color: black;  /* Red text */
    }
    
    .venue-info-down p {
        margin: 10px 0;
        font-size: 1.2rem;
    }

    .venue-image-wrapper {
        width: 35%;
        height: 35%;
    }
}

.review-list {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}
.review {
    display: none;
    transition: transform 0.5s ease-in-out;
}
.review.active {
    display: block;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    padding: 20px;
    cursor: pointer;
}
.carousel-controls-venue {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateY(-50%);
}
.carousel-controls-venue button {
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    padding: 20px;
    cursor: pointer;
}

.carousel-controls-venue button:disabled {
    background-color: rgba(0, 0, 0, 0.1);
    color: grey;
    cursor: not-allowed;
}

.carousel-controls button:disabled {
    background-color: rgba(0, 0, 0, 0.1);
    color: grey;
    cursor: not-allowed;
}

.dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropdown-button {
    background-color: #fff;
    color: #F8A71A;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.dropdown-button .fa {
    margin-left: 5px;
}
.dropdown-content {
    display: none;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 100%;
}
.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dropdown-content li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.dropdown-content li:last-child {
    border-bottom: none;
}
.dropdown-content li:hover {
    color: #F8A71A;
}
.show {
    display: block;
}
.logo-image {
    display: block;
    max-width: 100%;
    height: 65px;
    /* Ensuring the background is transparent */
    background-color: transparent;
}