body {
    padding-top: 56px;
    font-family: 'Arial', sans-serif;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

#hero {
    position: relative;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    font-weight: 600;
    padding: 10px 25px;
    text-transform: uppercase;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

section {
    overflow: hidden;
}

section h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

section h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #dc3545;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bg-black {
    background-color: #000;
}

.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

#eventos .card {
    overflow: hidden;
    border-radius: 10px;
}

#eventos .display-1 {
    font-weight: 700;
    color: #dc3545;
}

#galeria img {
    transition: all 0.3s ease;
    cursor: pointer;
}

#galeria img:hover {
    transform: scale(1.05);
}

#contacto a {
    transition: all 0.3s ease;
}

#contacto a:hover {
    color: #dc3545 !important;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    
    #eventos .display-1 {
        font-size: 3rem;
    }
}

.social-icon {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icons {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
    position: relative;
    overflow: visible !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 450px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
    color: #dc3545 !important;
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    margin: 0 10px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.swiper-pagination-bullet-active {
    background: #dc3545 !important;
    transform: scale(1.2);
}

#hero .swiper-button-next,
#hero .swiper-button-prev {
    display: none !important;
}

/* Event section styling */
#eventos .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #1a1a1a;
}

#eventos .card-body {
    padding: 0;
}

#eventos .col-md-4 {
    padding: 0;
}

#eventos .col-md-4 img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

#eventos .col-md-8 {
    padding: 20px;
}

#eventos .venue-name {
    color: #ffcc00;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
}

#eventos .country {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}

#eventos .event-name {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
}

#eventos .venue-type {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}

#eventos .event-date {
    color: #ffcc00;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffcc00;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: #0066ff;
    font-weight: 600;
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 10px;
    line-height: 1;
    padding-bottom: 15px;
}

.stats-card {
    background-color: #2d1b36;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.8;
}

.divider {
    height: 60px;
    width: 1px;
    background-color: rgba(255,255,255,0.3);
    margin: 0 auto;
}

.magic-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-btn {
    display: inline-block;
    background-color: #8e44ad;
    color: #ffffff;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
    color: #ffffff;
}

footer {
    background-color: #121212;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffcc00;
}

.footer-contact {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-social a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffcc00;
}

.biografia-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.biografia-img {
    transition: transform 0.5s ease;
}

.biografia-img-container:hover .biografia-img {
    transform: scale(1.05);
}

.biografia-texto p {
    font-size: 1rem;
    line-height: 1.9;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.8rem;
    letter-spacing: 0.03em;
    text-align: justify;
    color: #333;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

.biografia-texto p:first-child {
    font-size: 1rem;
    font-weight: 500;
    border-left: 4px solid #8e44ad;
    padding-left: 15px;
}

.biografia-texto p:first-child::first-letter {
    font-size: 2.3rem;
    font-weight: bold;
    color: #8e44ad;
    float: left;
    line-height: 0.8;
    margin-right: 0.2em;
    font-family: 'Playfair Display', serif;
}

.biografia-texto strong {
    color: #8e44ad;
    font-weight: 600;
}

#historia h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

#historia h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #8e44ad;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
