@font-face {
    font-family: "TheYoungestrg";
    src: url("../../fonts/The\ Youngest\ Script-Rg.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "TheYoungestbook";
    src: url("../../fonts/The\ Youngest\ Serif-Book.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DroidSerif";
    src: url("../../fonts/DroidSerif-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "poppins";
    src: url("../../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

#loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Section styling - support for multiple sections */
[class^="venue-list"] {
    position: relative;
    margin: 40px 0;
    padding: 20px 0;
}

[class^="venue-list"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.85);
    background-blend-mode: overlay;
}

/* Alternating background colors for different sections */
.venue-list1::before {
    background-color: rgba(255, 255, 255, 0.85);
}

.venue-list2::before {
    background-color: rgba(252, 243, 243, 0.85);
}

.venue-list3::before {
    background-color: rgba(255, 248, 248, 0.85);
}

/* Content styling */
[class^="venue-list"] .container {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

/* Headings */
h2.text-center {
    font-size: 35px;
    color: #333;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.location-title {
    font-size: 30px;
    color: #333;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 5px solid #e49999;
}

/* Venue list styling */
.venue-items {
    padding-left: 40px;
    margin-top: 35px;
}

.venue-items li {
    font-size: 25px;
    color: #444;
    margin-bottom: 15px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    list-style-type: none;
    position: relative;
}

.venue-items li::before {
    content: "🏰";
    position: absolute;
    left: -30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.venue-items li:hover {
    transform: translateX(20px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.venue-items li:hover::before {
    opacity: 1;
    left: -20px;
}

/* Tagline styling */
.tagline {
    font-size: 28px;
    color: #333;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    border: 2px solid #e49999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .venue-items li {
        font-size: 20px;
        padding: 8px 15px;
    }

    .location-title {
        font-size: 26px;
    }

    .tagline {
        font-size: 24px;
        padding: 15px 30px;
    }
}
