/* ================================
   CSS Variables & Reset
================================ */
:root {
    --color-bg: #000000;
    --color-text: #e9f1f7;
    --color-text-muted: rgba(233, 241, 247, 0.7);
    --color-purple: #5050fa;
    --color-orange: #efa765;
    --color-green: #cff27e;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================================
   Utility Classes
================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent-purple { color: var(--color-purple); }
.accent-orange { color: var(--color-orange); }
.accent-green { color: var(--color-green); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ================================
   Buttons
================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    color: var(--color-text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(80, 80, 250, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-green);
}

.btn-secondary:hover {
    background: var(--color-green);
    color: var(--color-bg);
}

.btn-app {
    background: var(--color-purple);
    color: var(--color-text);
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-app:hover {
    background: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 167, 101, 0.3);
}

/* ================================
   Header & Navigation
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 241, 247, 0.1);
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    justify-self: start;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-self: center;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--color-orange);
}

/* Nav Actions (App Button + Mobile Menu) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* ================================
   Hero Section
================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Video Background Container */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Dark overlay for text readability with brand gradient tint */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

/* Subtle brand color glow effect */
.hero-video-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(80, 80, 250, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-decoration {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ================================
   About Section
================================ */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(80, 80, 250, 0.05) 50%, var(--color-bg) 100%);
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background: rgba(233, 241, 247, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(233, 241, 247, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 0 1 300px;
    max-width: 350px;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-orange), var(--color-green));
    opacity: 0;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 241, 247, 0.2);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Premium Kava Card - Background Image */
.feature:first-child {
    background: url('assets/woman_holding_kava_cup.jpg') center center / cover no-repeat;
    position: relative;
}

.feature:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s ease-in-out;
    z-index: 0;
}

.feature:first-child:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.feature:first-child .feature-icon,
.feature:first-child h3,
.feature:first-child p {
    position: relative;
    z-index: 1;
}

/* Community First Card - Background Image */
.feature:nth-child(2) {
    background: url('assets/hava_kava_bar_people.png') center center / cover no-repeat;
    position: relative;
}

.feature:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s ease-in-out;
    z-index: 0;
}

.feature:nth-child(2):hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.feature:nth-child(2) .feature-icon,
.feature:nth-child(2) h3,
.feature:nth-child(2) p {
    position: relative;
    z-index: 1;
}

/* Live Events Card - Background Image */
.feature:nth-child(3) {
    background: url('assets/hava_kava_live_events.png') center center / cover no-repeat;
    position: relative;
}

.feature:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s ease-in-out;
    z-index: 0;
}

.feature:nth-child(3):hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.feature:nth-child(3) .feature-icon,
.feature:nth-child(3) h3,
.feature:nth-child(3) p {
    position: relative;
    z-index: 1;
}

/* ================================
   Events Section
================================ */
.events {
    padding: 100px 0;
    background: var(--color-bg);
}

.events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(233, 241, 247, 0.05) 0%, rgba(233, 241, 247, 0.02) 100%);
    border: 1px solid rgba(233, 241, 247, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 0 1 300px;
    max-width: 350px;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-orange), var(--color-green));
    opacity: 0;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 241, 247, 0.2);
}

.event-card:hover::before {
    opacity: 1;
}

.event-day {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-orange);
    margin-bottom: 0.75rem;
}

.event-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Alternate card accent colors */
.event-card:nth-child(1) .event-day { color: var(--color-purple); }
.event-card:nth-child(2) .event-day { color: var(--color-orange); }
.event-card:nth-child(3) .event-day { color: var(--color-green); }
.event-card:nth-child(4) .event-day { color: var(--color-orange); }
.event-card:nth-child(5) .event-day { color: var(--color-purple); }
.event-card:nth-child(6) .event-day { color: var(--color-green); }
.event-card:nth-child(7) .event-day { color: var(--color-orange); }

/* ================================
   Special Events Section
================================ */
.special-events {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(80, 80, 250, 0.05) 50%, var(--color-bg) 100%);
}

.special-events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.special-event-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(233, 241, 247, 0.05) 0%, rgba(233, 241, 247, 0.02) 100%);
    border: 1px solid rgba(233, 241, 247, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 0 1 600px;
    max-width: 700px;
}

.special-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-orange), var(--color-green));
    opacity: 0;
    transition: var(--transition);
}

.special-event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 241, 247, 0.2);
}

.special-event-card:hover::before {
    opacity: 1;
}

.special-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 1rem;
    background: rgba(80, 80, 250, 0.15);
    border-radius: 15px;
    text-align: center;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-orange);
    font-weight: 600;
}

.date-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    margin: 0.25rem 0;
}

.date-year {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.special-event-content {
    flex: 1;
}

.special-event-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.special-event-description {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.special-event-icon {
    font-size: 3.5rem;
    opacity: 0.6;
}

/* ================================
   Menu Section
================================ */
.menu {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(207, 242, 126, 0.03) 50%, var(--color-bg) 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-category {
    background: linear-gradient(135deg, rgba(233, 241, 247, 0.05) 0%, rgba(233, 241, 247, 0.02) 100%);
    border: 1px solid rgba(233, 241, 247, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-orange), var(--color-green));
    opacity: 0;
    transition: var(--transition);
}

.menu-category:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 241, 247, 0.2);
    background: linear-gradient(135deg, rgba(233, 241, 247, 0.08) 0%, rgba(233, 241, 247, 0.04) 100%);
}

.menu-category:hover::before {
    opacity: 1;
}

.menu-category-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.menu-category h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.menu-category p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-orange);
    background: rgba(239, 167, 101, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(239, 167, 101, 0.3);
    font-weight: 500;
}

.menu-category-featured {
    grid-column: span 1;
}

.kava-sizes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(80, 80, 250, 0.08);
    border-radius: 15px;
}

.kava-size-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(233, 241, 247, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(80, 80, 250, 0.2);
    transition: var(--transition);
}

.kava-size-item:hover {
    background: rgba(80, 80, 250, 0.12);
    border-color: rgba(80, 80, 250, 0.4);
    transform: translateY(-3px);
}

.size-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.size-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-orange);
}

.menu-subheader {
    color: var(--color-text-muted) !important;
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
    font-style: italic;
}

.addins-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(80, 80, 250, 0.08);
    border-radius: 15px;
}

.addin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(233, 241, 247, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(80, 80, 250, 0.2);
    transition: var(--transition);
}

.addin-item:hover {
    background: rgba(80, 80, 250, 0.12);
    border-color: rgba(80, 80, 250, 0.4);
    transform: translateX(5px);
}

.addin-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.addin-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-orange);
    min-width: 60px;
    text-align: right;
}

.shots-price-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-orange);
    background: rgba(239, 167, 101, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(239, 167, 101, 0.3);
    margin: 1rem 0;
}

.shots-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(80, 80, 250, 0.08);
    border-radius: 15px;
}

.shot-item {
    padding: 12px 24px;
    background: rgba(233, 241, 247, 0.05);
    border: 2px solid rgba(80, 80, 250, 0.2);
    border-radius: 20px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.shot-item:hover {
    background: rgba(80, 80, 250, 0.15);
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-3px);
}

.canned-subsection {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(80, 80, 250, 0.08);
    border-radius: 15px;
}

.subsection-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(80, 80, 250, 0.2);
}

.subsection-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    padding: 8px;
    background: rgba(239, 167, 101, 0.15);
    border: 2px solid rgba(239, 167, 101, 0.3);
    border-radius: 12px;
}

.subsection-header h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.subsection-title-only {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(80, 80, 250, 0.2);
}

.canned-drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.canned-drink-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: rgba(233, 241, 247, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(80, 80, 250, 0.2);
    transition: var(--transition);
}

.canned-drink-item:hover {
    background: rgba(80, 80, 250, 0.12);
    border-color: rgba(80, 80, 250, 0.4);
    transform: translateY(-3px);
}

.drink-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.drink-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-orange);
}

.snacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(80, 80, 250, 0.08);
    border-radius: 15px;
}

.snack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: rgba(233, 241, 247, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(80, 80, 250, 0.2);
    transition: var(--transition);
}

.snack-item:hover {
    background: rgba(80, 80, 250, 0.12);
    border-color: rgba(80, 80, 250, 0.4);
    transform: translateY(-3px);
}

.snack-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.snack-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-orange);
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(80, 80, 250, 0.08);
    border-radius: 15px;
}

.coffee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: rgba(233, 241, 247, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(80, 80, 250, 0.2);
    transition: var(--transition);
}

.coffee-item:hover {
    background: rgba(80, 80, 250, 0.12);
    border-color: rgba(80, 80, 250, 0.4);
    transform: translateY(-3px);
}

.coffee-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.coffee-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-orange);
}

/* ================================
   Contact Section
================================ */
.contact {
    padding: 100px 0;
    background: var(--color-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: rgba(233, 241, 247, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(233, 241, 247, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(233, 241, 247, 0.05);
    border: 1px solid rgba(233, 241, 247, 0.1);
    border-radius: 10px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    background: rgba(233, 241, 247, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(233, 241, 247, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-bg);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    background: rgba(233, 241, 247, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(233, 241, 247, 0.08);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-orange);
}

.info-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ================================
   Footer
================================ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(233, 241, 247, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 241, 247, 0.05);
    border-radius: 50%;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 241, 247, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-actions .btn-app {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links::after {
        content: 'Download Our App';
        display: block;
        padding: 12px 28px;
        background: var(--color-purple);
        color: var(--color-text);
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .events-grid {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        width: 100%;
        max-width: 400px;
    }

    .special-event-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .special-event-date {
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .date-day {
        font-size: 2rem;
    }

    .special-event-icon {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .menu-category {
        padding: 2rem 1.5rem;
    }

    .menu-category h3 {
        font-size: 1.3rem;
    }

    .menu-category-icon {
        font-size: 3rem;
    }

    .kava-sizes {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin: 1.2rem 0;
        padding: 1.2rem;
    }

    .kava-size-item {
        padding: 0.8rem;
    }

    .size-price {
        font-size: 1.3rem;
    }

    .addins-list {
        gap: 0.6rem;
        margin: 1.2rem 0;
        padding: 1.2rem;
    }

    .addin-item {
        padding: 0.85rem;
    }

    .addin-price {
        font-size: 1.1rem;
        min-width: 55px;
    }

    .shots-price-tag {
        font-size: 1.2rem;
        padding: 8px 16px;
        margin: 0.8rem 0;
    }

    .shots-list {
        gap: 0.75rem;
        margin: 1.2rem 0;
        padding: 1.2rem;
    }

    .shot-item {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .snacks-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.8rem;
        margin: 1.2rem 0;
        padding: 1.2rem;
    }

    .snack-item {
        padding: 1rem;
    }

    .snack-price {
        font-size: 1.1rem;
    }

    .coffee-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.8rem;
        margin: 1.2rem 0;
        padding: 1.2rem;
    }

    .coffee-item {
        padding: 1rem;
    }

    .coffee-price {
        font-size: 1.1rem;
    }

    .canned-subsection {
        margin-top: 1.2rem;
        padding: 1.2rem;
    }

    .subsection-logo {
        height: 60px;
        padding: 6px;
    }

    .subsection-header h4 {
        font-size: 1.1rem;
    }

    .subsection-title-only {
        font-size: 1.1rem;
        margin: 0 0 1.2rem 0;
        padding-bottom: 0.8rem;
    }

    .canned-drinks-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.8rem;
    }

    .canned-drink-item {
        padding: 1rem;
    }

    .drink-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .logo img {
        height: 40px;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 400px;
    }

    .contact-info {
        flex-direction: column;
    }

    .info-card {
        min-width: auto;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menu-category {
        padding: 1.5rem 1rem;
    }

    .menu-category h3 {
        font-size: 1.2rem;
    }

    .menu-category-icon {
        font-size: 2.5rem;
    }

    .menu-category p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .kava-sizes {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 1rem;
    }

    .kava-size-item {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem;
    }

    .size-name {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .size-price {
        font-size: 1.2rem;
    }

    .addins-list {
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 1rem;
    }

    .addin-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
    }

    .addin-name {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .addin-price {
        font-size: 1rem;
        min-width: auto;
        text-align: left;
    }

    .shots-price-tag {
        font-size: 1.1rem;
        padding: 8px 16px;
        margin: 0.75rem 0;
    }

    .shots-list {
        flex-direction: column;
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 1rem;
    }

    .shot-item {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
        text-align: center;
    }

    .snacks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin: 1rem 0;
        padding: 1rem;
    }

    .snack-item {
        padding: 0.8rem;
    }

    .snack-name {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .snack-price {
        font-size: 1rem;
    }

    .coffee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin: 1rem 0;
        padding: 1rem;
    }

    .coffee-item {
        padding: 0.8rem;
    }

    .coffee-name {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .coffee-price {
        font-size: 1rem;
    }

    .canned-subsection {
        margin-top: 1rem;
        padding: 1rem;
    }

    .subsection-header {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .subsection-logo {
        height: 55px;
        padding: 5px;
    }

    .subsection-header h4 {
        font-size: 1rem;
    }

    .subsection-title-only {
        font-size: 1rem;
        margin: 0 0 1rem 0;
        padding-bottom: 0.6rem;
    }

    .canned-drinks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .canned-drink-item {
        padding: 0.8rem;
    }

    .drink-name {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .drink-price {
        font-size: 1rem;
    }
}

/* ================================
   Hero Video Mobile Optimizations
================================ */

/* Tablet adjustments */
@media (max-width: 768px) {
    .hero-video {
        /* Ensure video covers on portrait orientation */
        min-height: 100%;
        width: auto;
    }

    .hero-video-overlay {
        /* Slightly darker overlay on mobile for better readability */
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hero h1 {
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    }

    .hero-tagline {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    }
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        /* Pause video for users who prefer reduced motion */
        animation: none;
    }

    .hero-decoration {
        animation: none;
        opacity: 0.7;
    }

    /* Remove all transitions */
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
