/*
Theme Name: prime-kitchen
Theme URI: https://primekitchen.ky/
Description: A premium editorial-style theme for Prime Kitchen Cayman.
Version: 1.0.6
Author: Andre Gutierrez
Text Domain: prime-kitchen
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Estilos base en CSS estándar para asegurar compatibilidad con el CDN */
body {
    background-color: #f5f3f0;
    color: #283246;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-align: left !important;
}

/* FORZAR ALINEACIÓN IZQUIERDA ABSOLUTA EN H1 Y H2 */
h1, .hero-title, .elementor-heading-title, h2 {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.container-edge {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: left !important;
    /* FORZAR ALINEACIÓN IZQUIERDA EN CONTENEDORES */
}

@media (min-width: 768px) {
    .container-edge {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(245, 243, 240, 0.6);
    text-align: left !important;
}

.btn-ink {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background-color: #f5f3f0;
    color: #283246;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border: 1px solid #f5f3f0;
    transition: all 0.3s ease;
}

.btn-ink:hover {
    background-color: transparent;
    color: #f5f3f0;
}

/* Custom Fonts */
.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 4rem;
    line-height: 1;
    color: #f5f3f0;
    text-align: left !important;
    /* FORZAR ALINEACIÓN IZQUIERDA EN HERO */
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

/* Transitions */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #283246;
}

::-webkit-scrollbar-thumb {
    background: #f5f3f0;
}

/* Slider Styles */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Infinite Scroll Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-196px * 5)); }
}

@media (min-width: 768px) {
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-266px * 5)); }
    }
}

.animate-scroll {
    animation: scroll 25s linear infinite;
    display: flex;
    width: max-content;
}

.animate-scroll:hover {
    animation-play-state: paused;
}
