@tailwind base;
@tailwind components;
@tailwind utilities;

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24
}

.bg-mesh {
    background-image: url('https://i.postimg.cc/mgszfNKK/upscalemedia-transformed-(1).jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.glass-card {
    background: rgba(68, 19, 50, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px)
}

.scrolled-header {
    background-color: #000000 !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(91, 254, 120, 0.2);
    box-shadow: 0 0 15px rgba(228, 0, 109, 0.3);
}

.text-fire {
    text-shadow: 0 0 10px #ff8aa9, 0 0 20px #e4006d, 0 0 40px #ff716c
}

.perspective-1000 { perspective: 1000px; }
.preserve-3d { transform-style: preserve-3d; }

.btn-brand-base {
    border-radius: 14px;
    font-weight: 900; 
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.8);
    transition: all 0.2s ease;
    letter-spacing: 0.1em;
}

.btn-brand-base:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 rgba(0,0,0,0.8);
}

.btn-neon-pink-solid {
    background-color: #E8006F;
    color: #ffffff;
    box-shadow: 0 0 15px #E8006F, 0 4px 0 0 rgba(0,0,0,0.8);
}
.btn-neon-pink-solid:hover {
    box-shadow: 0 0 30px #E8006F, 0 4px 0 0 rgba(0,0,0,0.8);
}
.btn-neon-pink-outline {
    background-color: rgba(33, 3, 22, 0.6);
    border: 3px solid #E8006F;
    color: #E8006F;
    box-shadow: 0 0 10px rgba(232, 0, 111, 0.5);
}
.btn-neon-pink-outline:hover {
    box-shadow: 0 0 20px #E8006F;
    background-color: rgba(232, 0, 111, 0.1);
}

.btn-neon-green-solid {
    background-color: #00C94B;
    color: #ffffff;
    box-shadow: 0 0 15px #00C94B, 0 4px 0 0 rgba(0,0,0,0.8);
}
.btn-neon-green-solid:hover {
    box-shadow: 0 0 30px #00C94B, 0 4px 0 0 rgba(0,0,0,0.8);
}
.btn-neon-green-outline {
    background-color: rgba(33, 3, 22, 0.6);
    border: 3px solid #00C94B;
    color: #00C94B;
    box-shadow: 0 0 10px rgba(0, 201, 75, 0.5);
}
.btn-neon-green-outline:hover {
    box-shadow: 0 0 20px #00C94B;
    background-color: rgba(0, 201, 75, 0.1);
}

.btn-orange-solid {
    background-color: #fba11b;
    color: #ffffff;
    box-shadow: 0 0 15px #fba11b;
}

.neon-border-pink {
    border: 2px solid #E8006F;
    box-shadow: 0 0 20px rgba(232, 0, 111, 0.4), inset 0 0 10px rgba(232, 0, 111, 0.2);
}
.neon-border-green {
    border: 2px solid #00C94B;
    box-shadow: 0 0 20px rgba(0, 201, 75, 0.4), inset 0 0 10px rgba(0, 201, 75, 0.2);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid #E8006F;
    transition: all 0.3s ease;
    cursor: pointer;
}
.gallery-item:hover {
    box-shadow: 0 0 30px #E8006F;
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(33, 3, 22, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.booking-card {
    background: rgba(33, 3, 22, 0.7);
    backdrop-filter: blur(25px);
    border: 2px solid #E8006F;
    box-shadow: 0 0 50px rgba(232, 0, 111, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #210316; 
}
::-webkit-scrollbar-thumb {
    background: #653b52; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #E8006F; 
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    border: 2px solid #E8006F;
    box-shadow: 0 0 50px rgba(232, 0, 111, 0.5);
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    cursor: pointer;
    background: #E8006F;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}
.lightbox-close:hover {
    background: #ff528d;
    transform: scale(1.1);
}
