/* ============================ Las Carinosas - Main Styles ============================ */

/* ============ Fonts ============ */
@font-face {
    font-family: 'Bebas';
    src: url(/res/fonts/Bebas_Regular.otf);
}
@font-face {
    font-family: 'CaviarDreams';
    src: url(/res/fonts/CaviarDreams.ttf);
}
@font-face {
    font-family: 'Conthrax';
    src: url(/res/fonts/Conthrax_SemiBold.otf);
}

/* ============ CSS Variables ============ */
:root {
    --lc-black: #000000;
    --lc-off-black: #0a0a0a;
    --lc-darker: #141414;
    --lc-dark: #1a1a1a;
    --lc-gray: #888888;
    --lc-light: #cccccc;
    --lc-white: #ffffff;
    --lc-gold: #d4af37;
    --lc-gold-light: #f4cf57;
    --lc-pink: #ff6b9d;
    --lc-purple: #9c78ff;

    --gradient-neon: linear-gradient(90deg, #ff7878 0%, #ffdd78 25%, #78ffa3 50%, #9c78ff 75%, #fd78ff 100%);

    --font-display: 'Bebas', sans-serif;
    --font-body: 'CaviarDreams', sans-serif;
    --font-accent: 'Conthrax', sans-serif;

    --navbar-height: 70px;
}

/* ============ Base Styles ============ */
body {
    font-family: var(--font-body);
    background-color: var(--lc-black);
    color: var(--lc-white);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

a {
    color: var(--lc-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--lc-gold);
}

/* ============ Navbar ============ */
#main-navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

#main-navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
}

#main-navbar .navbar-brand img {
    transition: height 0.3s ease;
}

#main-navbar .nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    color: var(--lc-light);
    position: relative;
}

#main-navbar .nav-link:hover,
#main-navbar .nav-link.active {
    color: var(--lc-white);
}

#main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-neon);
}

#main-navbar .btn-outline-light {
    border-color: var(--lc-gold);
    color: var(--lc-gold);
}

#main-navbar .btn-outline-light:hover {
    background: var(--lc-gold);
    border-color: var(--lc-gold);
    color: var(--lc-black);
}

/* ============ Footer ============ */
.site-footer {
    background: linear-gradient(to bottom, var(--lc-off-black), var(--lc-black));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h6 {
    color: var(--lc-gold);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--lc-gray);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--lc-white);
}

.social-links a {
    color: var(--lc-gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--lc-gold);
    transform: translateY(-2px);
}

/* ============ Page Layout ============ */
.page-wrapper {
    padding-top: var(--navbar-height);
    min-height: 100vh;
}

.page-hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, var(--lc-darker), var(--lc-black));
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    color: var(--lc-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    padding: 5rem 0;
}

.page-section.bg-dark {
    background: var(--lc-darker);
}

/* ============ Cards ============ */
.card-custom {
    background: var(--lc-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    border-color: var(--lc-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card-custom .card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* VIP Tier Cards */
.vip-card {
    background: linear-gradient(145deg, var(--lc-darker), var(--lc-off-black));
    border: 2px solid var(--lc-gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-card.featured {
    border-color: var(--lc-gold);
    transform: scale(1.05);
}

.vip-card:hover {
    border-color: var(--lc-gold);
}

.vip-card .tier-name {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.vip-card .tier-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--lc-gold);
    margin-bottom: 1.5rem;
}

.vip-card .tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.vip-card .tier-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-card .tier-features li:last-child {
    border-bottom: none;
}

/* ============ Event Cards ============ */
.event-card {
    background: var(--lc-darker);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.event-card .event-image {
    height: 250px;
    object-fit: contain;
    width: 100%;
    background: var(--lc-darker);
    cursor: pointer;
}

.event-card .event-body {
    padding: 1.5rem;
}

.event-card .event-date {
    display: inline-block;
    background: var(--lc-gold);
    color: var(--lc-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.event-card .event-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

/* ============ Event Image Modal ============ */
.event-image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.event-image-modal.is-open {
    display: flex;
}

.event-image-modal .modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-modal .modal-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.event-image-modal .modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--lc-gold);
    background: var(--lc-darker);
    color: var(--lc-gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10000;
}

.event-image-modal .modal-close:hover {
    background: var(--lc-gold);
    color: var(--lc-black);
}

/* ============ Forms ============ */
.form-control-dark {
    background: var(--lc-darker);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--lc-white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control-dark:focus {
    background: var(--lc-dark);
    border-color: var(--lc-gold);
    color: var(--lc-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.form-control-dark::placeholder {
    color: var(--lc-gray);
}

.form-label-light {
    color: var(--lc-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ============ Buttons ============ */
.btn-gold {
    background: var(--lc-gold);
    border-color: var(--lc-gold);
    color: var(--lc-black);
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--lc-gold-light);
    border-color: var(--lc-gold-light);
    color: var(--lc-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--lc-gold);
    color: var(--lc-gold);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--lc-gold);
    color: var(--lc-black);
}

/* Neon Button (from home.css) */
.neon-button {
    background-color: var(--lc-black);
    color: var(--lc-white);
    border-radius: 9999px;
    padding: 14px 35px;
    font-size: 1.5rem;
    box-shadow: 0px 0px 45px -5px var(--lc-white);
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.neon-button:hover {
    color: var(--lc-white);
    box-shadow: 0px 0px 60px -5px var(--lc-white);
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border-top: 6px solid rgba(255, 255, 255, 0.2);
}

.neon-button::after {
    content: '';
    position: absolute;
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-neon);
    z-index: -1;
    border-radius: 999px;
    padding: 3px;
}

/* ============ Contact Info ============ */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--lc-gold);
    margin-right: 1rem;
    width: 30px;
}

.contact-item .contact-text {
    color: var(--lc-light);
}

.contact-item .contact-text strong {
    display: block;
    color: var(--lc-white);
    margin-bottom: 0.25rem;
}

/* ============ Map ============ */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ============ Gallery ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============ Utility Classes ============ */
.text-gold {
    color: var(--lc-gold) !important;
}

.bg-darker {
    background-color: var(--lc-darker) !important;
}

.border-gold {
    border-color: var(--lc-gold) !important;
}

.glow-text {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ============ Animations ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============ Mobile Responsiveness ============ */
@media (max-width: 991.98px) {
    #main-navbar .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    #main-navbar .nav-link.active::after {
        display: none;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .vip-card.featured {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-section {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--lc-black);
}

::-webkit-scrollbar-thumb {
    background: var(--lc-gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lc-gold);
}
