/* Definición de fuentes */
@font-face {
    font-family: 'Boiling';
    src: url('fonts/Boiling-BlackDemo.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-family/Montserrat-Light.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-family/Montserrat-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-family/Montserrat-Medium.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-family/Montserrat-Bold.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --gold: #bda169;
    --black: #100D0B;
}

.ratio-9x16 {
    --bs-aspect-ratio: 177.77%; /* 9:16 ratio */
    min-height: 100vh;
}
.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.font-boiling {
    font-family: 'Boiling', sans-serif;
    color: var(--gold);
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: var(--black);
    color: white;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/olivias-after-hours-club-costa-del-sol-main.webp');
    background-size: cover;
    background-position: center;
}
.hero-section_2 {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/olivias-after-hours-club-costa-del-sol-party.webp');
    background-size: cover;
    background-position: center;
}
.theme-night {
    transition: transform 0.3s;
}

.theme-night:hover {
    transform: translateY(-10px);
}

.gold{
    color: var(--gold);
}

.bg-gold{
    background-color: var(--gold);
    color: var(--black);
}
img.logo {
    max-width: 100%;
    margin-bottom: 2rem !important;
    height: auto;
}
.hero-section {
    height: auto !important;
    min-height: 50vh;
    padding: 2rem 0;
}
.hero-section_2 {
    height: auto !important;
    min-height: 50vh;
    padding: 2rem 0;
}
.btn {
    padding: 0.5rem 3rem !important;
    font-size: 1.15rem;
    font-weight: 700;
}
.btn:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: transparent;
}

/* Color dorado personalizado */
.accordion-gold {
    background-color: var(--gold);
    color: #000; /* Texto negro para contraste */
    border: 1px solid var(--gold);
    box-shadow: none;
}
.accordion-button::after{
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DAA520' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5L8 12l6.5-6.5L13.5 4l-5.5 5.5L2.5 4l-1 1.5z'/%3E%3C/svg%3E") !important;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DAA520' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5L8 12l6.5-6.5L13.5 4l-5.5 5.5L2.5 4l-1 1.5z'/%3E%3C/svg%3E") !important;
}
/* Cuando está colapsado */
.accordion-gold.collapsed {
    background-color: #000000; /* Opcional: fondo blanco cuando está cerrado */
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* Cambiar color del borde del item */
.border-gold {
    border: 1px solid var(--gold);
}

/* Cambiar el icono de la flecha del botón */
.accordion-gold::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DAA520' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5L8 12l6.5-6.5L13.5 4l-5.5 5.5L2.5 4l-1 1.5z'/%3E%3C/svg%3E") !important;
}

.accordion-gold:not(.collapsed) {
    background-color: var(--gold) !important; 
    color: #000 !important;
    border: 1px solid var(--gold);
    box-shadow: none; 
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
.accordion-button:focus {
    box-shadow: none !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
    animation: float 2s ease-in-out infinite;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}

/* Animación de flotación */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Efecto hover */
.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}


@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
    }  
    .whatsapp-float img {
        width: 60px;
        height: 60px;
    } 
    
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
    }
    .hero-section_2 {
        min-height: 100vh;
    }
}

@media (min-width: 1400px) {
    img.logo {
        max-width: 75%;
    }
}
