background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-menu {
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 500;
    min-width: 180px;
    padding: 12px 20px;
}
.btn-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}
.header-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}
.footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.back-button {
    display: inline-block;
    color: white;
    text-decoration: none;
    margin-bottom: 25px;
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #0044aa;
    background-color: white;
    text-decoration: none;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.btn-menu {
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 500;
    min-width: 180px;
    padding: 12px 20px;
}

.btn-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.header-title {
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    margin-bottom: 30px;
}

.footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h3 {
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.author {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}

.gallery-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}

.card {
    background-color: rgba(255, 255, 255, 0.08);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card img {
    border-radius: 10px;
    object-fit: cover;
    height: 250px;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.carousel-inner img {
    border-radius: 10px;
    max-height: 500px;
    object-fit: cover;
}

.carousel-indicators [data-bs-target] {
    background-color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
}

a.contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-link:hover {
    color: #aaddff;
    text-decoration: underline;
}
