/* ============================================
   TAVERN ON 103RD — Custom Styles
   ============================================ */

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

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

body {
    margin: 0;
    line-height: 1.6;
}

/* --- Geometric Background Shapes --- */
.geo-shapes {
    z-index: 0;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.geo-circle--1 {
    width: 400px;
    height: 400px;
    background: #D4512C;
    top: 10%;
    right: -100px;
}

.geo-circle--2 {
    width: 250px;
    height: 250px;
    background: #E8C77A;
    bottom: 20%;
    left: -80px;
}

.geo-rect {
    position: absolute;
    opacity: 0.06;
    background: #D4512C;
}

.geo-rect--1 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 5%;
    transform: rotate(15deg);
    border-radius: 20px;
}

.geo-rect--2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 8%;
    transform: rotate(-10deg);
    border-radius: 16px;
    background: #E8C77A;
}

.geo-diamond {
    position: absolute;
    opacity: 0.05;
    background: #D4512C;
}

.geo-diamond--1 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
}

/* --- Section Padding --- */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

/* --- Navigation --- */
.nav-header {
    background: rgba(253, 248, 240, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(28, 20, 16, 0.06);
    transition: box-shadow 0.3s ease;
}

.nav-header.scrolled {
    box-shadow: 0 4px 20px rgba(28, 20, 16, 0.08);
}

/* Mobile menu */
.mobile-menu {
    box-shadow: 0 20px 40px rgba(28, 20, 16, 0.1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav-link {
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D4512C;
    transition: width 0.3s ease;
}

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

/* --- Buttons --- */
.btn-primary {
    background: #D4512C;
    color: #FFFFFF;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background: #B83D1E;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 81, 44, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

/* --- Feature Pills --- */
.feature-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #FDF0EB;
    border: 1px solid #F8C4B0;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #96301A;
    transition: background 0.2s ease, transform 0.15s ease;
}

.feature-pill:hover {
    background: #FCE4D8;
    transform: translateY(-1px);
}

/* --- Menu Cards --- */
.menu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 114, 74, 0.4);
    transform: translateY(-4px);
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(233, 114, 74, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.menu-card:hover .menu-card-icon {
    background: rgba(233, 114, 74, 0.35);
}

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

.vibe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 20, 16, 0.1);
}

/* --- Input Fields --- */
.input-field {
    border: 1.5px solid rgba(28, 20, 16, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    color: #1C1410;
    background: #FDF8F0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
    width: 100%;
}

.input-field::placeholder {
    color: rgba(28, 20, 16, 0.35);
}

.input-field:hover {
    border-color: rgba(28, 20, 16, 0.2);
    background: #fff;
}

.input-field:focus {
    border-color: #D4512C;
    box-shadow: 0 0 0 3px rgba(212, 81, 44, 0.1);
    background: #fff;
}

/* --- Social Icons --- */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.social-icon:hover {
    background: #D4512C;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* --- Success Message --- */
.success-message {
    animation: fadeIn 0.4s ease;
}

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.revealed {
        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; }
}

/* --- Mobile Menu Button Animation --- */
.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 24px;
}

/* --- Selection --- */
::selection {
    background: #F8C4B0;
    color: #652619;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDF8F0;
}

::-webkit-scrollbar-thumb {
    background: #E8C77A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4512C;
}
