/* --- Base Styles (From User Code) --- */
body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #F9FAFB;
    color: #1f2937;
}

h1,
h2,
h3,
.font-display {
    font-family: 'Roboto Condensed', sans-serif;
}

#global-header {
    min-height: 80px;
}

/* --- Brand Colors --- */
:root {
    --brand-teal: #02a69b;
    --brand-teal-dark: #01746c;
    --color-lavender: #E6E6FA;
    --color-wine-dark: #4a1e2c;
}

.text-brand-teal {
    color: var(--brand-teal);
}

.bg-brand-teal {
    background-color: var(--brand-teal);
}

.hover\:bg-brand-teal-dark:hover {
    background-color: var(--brand-teal-dark);
}

/* --- Navigation (Gradient) --- */
.nav-gradient {
    background: linear-gradient(to right, #02a69b, #01746c);
}

/* --- Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px #02a69b, 0 0 10px #02a69b;
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px #02a69b, 0 0 20px #02a69b, 0 0 25px #01746c;
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2.5s infinite ease-in-out;
}

/* --- Night Mode / Wine Bar Specifics --- */
.night-mode {
    background-color: #111;
    color: #eee;
}

.night-mode .nav-gradient {
    background: linear-gradient(to right, #2d1b32, #4a1e2c);
    /* Wine gradient */
}

/* --- Utilities --- */


/* --- Logo Standardization --- */
.logo-standard {
    height: 4rem;
    /* h-16 equivalent (64px) */
    width: auto;
    object-fit: contain;
    /* Removed background/border to allow transparent logo to sit on nav gradient */
    transition: transform 0.3s ease;
}

.logo-standard:hover {
    transform: scale(1.05);
}

/* --- Neon Night Theme --- */
.text-neon-purple {
    color: #d8b4fe;
    text-shadow: 0 0 5px #a855f7, 0 0 10px #a855f7;
}

.text-neon-teal {
    color: #5eead4;
    text-shadow: 0 0 5px #14b8a6, 0 0 10px #14b8a6;
}

.border-neon-purple {
    border-color: #a855f7;
    box-shadow: 0 0 5px #a855f7, inset 0 0 5px #a855f7;
}

.bg-night-glass {
    background: rgba(20, 10, 30, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.night-mode body {
    background-color: #0f0518;
    /* Deep Purple Black */
    background-image: radial-gradient(circle at 50% 0%, #2e1065 0%, #0f0518 70%);
}

/* --- Text Utilities --- */
.text-shadow-strong {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* --- Marquee Animation --- */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Reverse Marquee for Reviews if desired, or just standard */


/* --- Manual Transform Classes (Polyfill for missing Tailwind classes) --- */
.translate-x-0 {
    transform: translateX(0) !important;
}

.translate-x-full {
    transform: translateX(100%) !important;
}

.-translate-x-full {
    transform: translateX(-100%) !important;
}

/* Ensure absolute positioning works for slides */
.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Manual Hover Scale for Client Logos - Removed */

.transform {
    transform-origin: center;
    /* Ensure hardware acceleration for smooth transform */
    backface-visibility: hidden;
}