/* ============================================
   WILDCAT CAFE — Custom Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
}

/* --- Geometric Background Shapes --- */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: float-slow 20s ease-in-out infinite;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

.geo-diamond {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(20, 184, 166, 0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.geo-diamond--1 {
    top: 30%;
    right: 10%;
    animation: float-medium 15s ease-in-out infinite;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(20, 184, 166, 0.06);
    pointer-events: none;
}

.geo-triangle--1 {
    bottom: 20%;
    left: 5%;
    animation: float-medium 18s ease-in-out infinite;
    transform: rotate(-15deg);
}

.geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(20, 184, 166, 0.15);
    pointer-events: none;
}

.geo-ring--1 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation: float-slow 22s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(50deg); }
}

/* --- Navbar --- */
.nav-header {
    background: rgba(8, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-header.scrolled {
    background: rgba(8, 15, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #14b8a6;
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: #14b8a6;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn--teal {
    background: #14b8a6;
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
}

.btn--teal:hover {
    background: #2dd4bf;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
}

.btn--outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: #14b8a6;
    color: #14b8a6;
    transform: translateY(-2px);
}

.btn--dark {
    background: #0f172a;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn--dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn--white {
    background: white;
    color: #0f172a;
}

.btn--white:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* --- Hero --- */
.hero-bg-gradient {
    background: linear-gradient(135deg, #080f1a 0%, #0f172a 40%, #115e59 100%);
}

.hero-geo-1 {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
}

.hero-geo-2 {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.hero-badge {
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stat {
    text-align: center;
    padding: 1rem;
}

.scroll-indicator {
    opacity: 0.6;
    animation: fadeIn 1s ease-out 1.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-dot {
    animation: bounce-dot 1.5s ease-in-out infinite;
}

@keyframes bounce-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
}

/* --- Marquee --- */
.marquee-strip {
    overflow: hidden;
}

.marquee-track {
    animation: marquee 30s linear infinite;
}

.marquee-content {
    animation: marquee 30s linear infinite;
}

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

/* --- Section Styles --- */
.section {
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Menu Cards --- */
.menu-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.menu-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6, #2dd4bf, #5eead4);
    border-radius: 2px 2px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-card-accent {
    opacity: 1;
}

.menu-card-accent--slate {
    background: linear-gradient(90deg, #475569, #64748b, #94a3b8);
}

.menu-icon {
    width: 48px;
    height: 48px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    flex-shrink: 0;
}

.menu-icon-teal {
    width: 52px;
    height: 52px;
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5eead4;
    flex-shrink: 0;
}

.menu-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* --- About --- */
.about-img-wrapper {
    position: relative;
    aspect-ratio: 5/4;
}

.about-img {
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float-medium 4s ease-in-out infinite;
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about-deco-1 {
    animation: float-slow 10s ease-in-out infinite;
}

.about-deco-2 {
    animation: float-medium 8s ease-in-out infinite;
}

.about-feature {
    padding: 1rem 0;
}

.about-feature-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(20, 184, 166, 0.4);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

/* --- Hours --- */
.hours-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: #e2e8f0;
}

.hours-time {
    color: #14b8a6;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.hours-row--closed .hours-day {
    color: #94a3b8;
}

.hours-row--closed .hours-time-closed {
    color: #ef4444;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

/* --- Location --- */
.location-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.location-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #475569, #64748b, #94a3b8, #64748b, #475569);
    border-radius: 2px 2px 0 0;
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.location-detail-value {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.6;
}

/* --- CTA --- */
.cta-bg {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #0f766e 100%);
}

/* --- Mobile Menu --- */
.mobile-menu {
    transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: #14b8a6;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-geo-1 {
        width: 300px;
        height: 300px;
    }

    .hero-geo-2 {
        width: 150px;
        height: 150px;
    }

    .menu-card {
        padding: 1.5rem;
    }

    .about-float-card {
        bottom: -10px;
        left: 10px;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
