/* Basic resets */
.banner {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner h1 {
    font-size: 3rem;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9), 
                 6px 6px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    font-weight: normal;
    color: #ffffff;
}

.banner-links {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    text-align: left;
}

.banner-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.banner-links a:hover {
    color: #ffcc00; 
}

.banner-links span {
    color: white;
    margin: 0 5px;
}

/* General Styles */
main {
    padding: 20px;
    max-width: 1250px;
    margin: 0 auto;
	color: #555555;
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.7;
}

/* Tour Menu Section */
.tour-menu-title {
    font-size: 2.3rem;
    font-family: 'SangBleu Kingdom', serif;
    color: #44313A;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Container for the buttons */
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Spacing between buttons */
    margin-top: 20px; /* Space between paragraph and buttons */
}

/* Styling for the buttons */
.resource-button {
    background-color: #007bff; /* Primary blue color */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

/* Hover effect for buttons */
.resource-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}

/* Responsive: Stack buttons on smaller screens */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-button {
        width: 100%; /* Make buttons take full width on small screens */
        text-align: center;
    }
}

.accordion {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-title {
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    padding: 15px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    border: none;
    outline: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title:hover {
    background-color: #e6e6e6; /* Color de fondo al pasar el cursor */
    color: #007bff; /* Cambiar el color del texto al pasar el cursor */
}

.accordion-title:after {
    content: '\002B'; /* Plus icon */
    font-size: 20px;
}

.accordion-title.active:after {
    content: '\2212'; /* Minus icon */
}

.accordion-content {
    padding: 15px;
    background-color: white;
    display: none;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
}

.accordion-content p {
    margin: 0;
}

/* Estilo del H3 dentro del acordeón */
.accordion-content h3 {
    font-size: 16px;
    color: #007bff;
    margin-bottom: 1px;
    font-weight: bold;
}
