/* =================================================================================================
   CUSTOM WEB STYLES
   Project: Rodrigo Cutrera
   ================================================================================================= */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateVinyl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-animate {
    font-family: 'Michroma', sans-serif;
    animation: fadeInUp 1.2s ease-out forwards;
}

.logo-animate {
    animation: scaleIn 1.5s ease-out forwards;
}

.vinyl-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
    position: relative;
    opacity: 0;
    animation: scaleIn 1s ease-out 0.8s forwards;
}

.rotating-record {
    transform-origin: center;
    animation: rotateVinyl 4s linear infinite;
}

.tonearm {
    transform-origin: 160px 20px;
    animation: moveTonearm 10s ease-in-out infinite alternate;
}

@keyframes moveTonearm {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(5deg);
    }
}

.vinyl-record circle {
    fill-rule: evenodd;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Global Design System - Sharp Edges */
.btn,
.btn-primary,
.btn-outline,
.music-card-premium,
.event-premium-card,
.video-card,
.qtgallery img,
.music-art-container,
.event-img-container,
.contact-premium-container,
.event-status-badge,
.contact-icon-box,
.music-play-icon,
.modal,
.qt-framed,
.input-field input,
.input-field textarea {
    border-radius: 0 !important;
}

.btn,
.btn-primary,
.btn-outline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.qt-section-title {
    color: #fff !important;
    font-weight: 300 !important;
    letter-spacing: 5px;
}

/* Photo Gallery Fixes */
.qtgallery .slick-slide img {
    max-height: 95vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.qtgallery .slick-track {
    display: flex;
    align-items: center;
}

/* Section Responsive Padding */
@media only screen and (max-width: 992px) {
    .section-presskit .qt-framed {
        width: 95% !important;
        max-width: 95% !important;
    }
}

/* Logo in menu */
.logo-menu {
    float: left;
    padding: 5px 20px;
}

.logo-menu img {
    max-height: 50px;
    width: auto;
}

@media only screen and (max-width: 600px) {
    .logo-menu img {
        max-height: 40px;
    }
}

/* Music Section Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.music-card-premium {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    padding: 15px;
    text-align: center;
}

.music-card-premium:hover {
    border-color: #1565C0;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.music-art-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 0;
    overflow: hidden;
}

.music-art-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.music-card-premium:hover .music-art-container img {
    transform: scale(1.1);
}

.music-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-card-premium:hover .music-play-overlay {
    opacity: 1;
}

.music-play-icon {
    width: 60px;
    height: 60px;
    background: #1565C0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.4);
}

.music-info-block {
    margin-top: 15px;
}

.music-info-block h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.music-info-block p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 5px 0 0;
}

/* Dates Slider Section */
.dates-slider-container {
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
}

.dates-slider .slick-list {
    padding: 20px 0 40px !important;
    overflow: visible;
}

.event-slide {
    padding: 0 15px;
    outline: none;
    transition: transform 0.3s ease;
}

.event-premium-card {
    background: #0a0a0a;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.event-img-container {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.event-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.event-premium-content {
    padding: 20px;
    background: #0a0a0a;
}

.event-date-small {
    color: #1565C0;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.event-title-premium {
    color: #fff;
    font-weight: 900;
    margin: 5px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-venue-small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

.event-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.badge-proxima {
    border-color: #1565C0;
    color: #42a5f5;
}

.badge-past {
    border-color: rgba(255, 255, 255, 0.2);
    color: #888;
}

/* Unified Slick Arrows - Global */
.slick-prev,
.slick-next {
    width: 60px !important;
    height: 60px !important;
    background: rgba(10, 10, 10, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 100 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    /* Sharp edges */
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 20px !important;
    color: #fff !important;
    opacity: 1 !important;
}

.slick-prev:before {
    content: "\f053" !important;
}

.slick-next:before {
    content: "\f054" !important;
}

.slick-prev:hover,
.slick-next:hover {
    background: #1565C0 !important;
    border-color: #1565C0 !important;
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.4);
}

.slick-prev {
    left: 20px !important;
}

.slick-next {
    right: 20px !important;
}

@media (max-width: 1200px) {

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

/* Contact Premium Section */
.contact-premium-container {
    background: rgba(10, 10, 10, 0.85);
    border-radius: 0;
    padding: 60px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.contact-sidebar {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    background: rgba(21, 101, 192, 0.15);
    border: 1px solid rgba(21, 101, 192, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #42a5f5;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon-box {
    background: #1565C0;
    color: #fff;
    transform: scale(1.1);
}

.contact-text h6 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.contact-text p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 5px 0 0;
}

.contact-form-side {
    padding-left: 40px;
}

.qt-contact-form .input-field input,
.qt-contact-form .input-field textarea {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.qt-contact-form .input-field label {
    color: rgba(255, 255, 255, 0.5) !important;
}

.qt-contact-form .btn-primary {
    margin-top: 30px;
    height: 55px;
    line-height: 55px;
    font-weight: 900;
    letter-spacing: 2px;
    width: 100%;
    border-radius: 0;
}

@media (max-width: 992px) {
    .contact-premium-container {
        padding: 40px 20px;
    }

    .contact-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .contact-form-side {
        padding-left: 0;
    }
}

/* Modals */
#videoModal .modal-content iframe {
    background: #000 url('../images/loading.gif') center no-repeat;
}

/* Mobile View Adjustments */
@media only screen and (max-width: 992px) {
    .qt-menu-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 64px !important;
        z-index: 9999 !important;
        background: #000 !important;
    }

    .qt-menu {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 64px !important;
        padding: 0 15px !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .qt-menu-switch {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        height: 64px !important;
        line-height: 64px !important;
        display: flex !important;
        align-items: center;
        width: auto !important;
        color: #1565C0 !important;
        /* Standard red for toggle */
    }

    .qt-desktopmenu {
        display: none !important;
    }

    /* Fix footer extra space */
    body {
        background-color: #000 !important;
    }

    .qt-footer {
        margin-bottom: 0 !important;
        min-height: auto !important;
    }
}

/* Desktop Sticky Menu Restoration */
@media only screen and (min-width: 993px) {

    .qt-menu-wrapper.skrollable-after,
    .qt-menu-wrapper.sticky-fixed,
    .qt-menu-wrapper.fixed {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}