/* ===== CSS Custom Properties ===== */
:root {
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #2D2D2D;
    --color-charcoal-mid: #3A3A3A;
    --color-coral: #F26B3A;
    --color-coral-light: #F78A62;
    --color-coral-dark: #D95A2B;
    --color-cream: #F5F0EB;
    --color-white: #FFFFFF;
    --color-text: #E8E8E8;
    --color-text-muted: #999999;
    --color-border: rgba(255,255,255,0.08);
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-coral: 0 8px 30px rgba(242,107,58,0.3);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===== Typography ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-sm);
    padding: 0.4em 1em;
    border: 1px solid var(--color-coral);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.text-coral {
    color: var(--color-coral);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 520px;
    line-height: 1.7;
}

.center {
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--color-coral);
    color: var(--color-white);
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
    background: var(--color-coral-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(242,107,58,0.4);
}

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

.btn-outline:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--color-coral);
    color: var(--color-white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-coral-light);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 var(--space-2xl);
    overflow: hidden;
    background: var(--color-charcoal);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(242,107,58,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(242,107,58,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(242,107,58,0.1);
    border: 1px solid rgba(242,107,58,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-coral);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-image-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--color-charcoal-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.float-card-1 {
    bottom: 12%;
    left: -8%;
    animation-delay: 0s;
}

.float-card-1 .float-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-coral);
    line-height: 1;
}

.float-card-1 .float-card-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.float-card-2 {
    top: 8%;
    right: -5%;
    animation-delay: 1s;
}

.float-card-2 .float-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-coral);
    line-height: 1;
}

.float-card-2 .float-card-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.float-card-3 {
    bottom: 38%;
    left: -12%;
    animation-delay: 2s;
    flex-direction: row;
    gap: 0.75rem;
}

.float-card-3 span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
}

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

/* Geometric Shapes */
.geo-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.geo-circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(242,107,58,0.15);
    top: 10%;
    right: -5%;
    animation: spin 20s linear infinite;
}

.geo-square-1 {
    width: 80px;
    height: 80px;
    background: var(--color-coral);
    opacity: 0.08;
    bottom: 20%;
    right: 5%;
    transform: rotate(45deg);
    animation: spin 15s linear infinite reverse;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(242,107,58,0.1);
    top: 25%;
    left: 45%;
    animation: float 5s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--color-coral);
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

/* ===== About Section ===== */
.about {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-charcoal);
}

.about-img-secondary img {
    width: 400px;
    height: 320px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accent-block {
    width: 60px;
    height: 12px;
    border-radius: 6px;
}

.accent-coral {
    background: var(--color-coral);
}

.accent-charcoal {
    background: var(--color-charcoal-mid);
}

.about-content {
    padding: var(--space-lg) 0;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(242,107,58,0.1);
    border: 1px solid rgba(242,107,58,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ===== Menu Section ===== */
.menu {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--color-charcoal-light);
    overflow: hidden;
}

.menu-bg-block {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(242,107,58,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 5% 90%, rgba(242,107,58,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.menu .container {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* Menu Categories */
.menu-categories {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.menu-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.menu-cat-btn:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
}

.menu-cat-btn.active {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-white);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.menu-card {
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242,107,58,0.2);
}

.menu-card-visual {
    position: relative;
    overflow: hidden;
}

.menu-card-img {
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-tag {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--color-coral);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3em 0.75em;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.special-tag {
    background: var(--color-charcoal-mid);
    border: 1px solid var(--color-coral);
    color: var(--color-coral);
}

.menu-card-body {
    padding: var(--space-md);
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: var(--color-white);
}

.menu-card-size {
    font-size: 0.8125rem;
    color: var(--color-coral);
    font-weight: 600;
    white-space: nowrap;
    padding: 0.25em 0.625em;
    background: rgba(242,107,58,0.1);
    border-radius: 50px;
}

.menu-card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===== Events Section ===== */
.events {
    padding: var(--space-3xl) 0;
    position: relative;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.events-content {
    padding-right: var(--space-lg);
}

.events-text {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.event-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-charcoal-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.event-item:hover {
    border-color: rgba(242,107,58,0.3);
    transform: translateX(8px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: var(--space-sm);
    background: rgba(242,107,58,0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(242,107,58,0.2);
}

.event-day {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-coral);
    line-height: 1;
}

.event-month {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    letter-spacing: 0.03em;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.event-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.event-arrow {
    color: var(--color-coral);
    opacity: 0;
    transition: all var(--transition);
}

.event-item:hover .event-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Events Visual */
.events-visual {
    position: relative;
}

.events-img-stack {
    position: relative;
    height: 500px;
}

.events-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.events-img-1 img {
    width: 420px;
    height: 500px;
    object-fit: cover;
}

.events-img-2 {
    position: absolute;
    top: 60px;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    border: 4px solid var(--color-charcoal);
}

.events-img-2 img {
    width: 420px;
    height: 500px;
    object-fit: cover;
}

.events-accent-block {
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 120px;
    height: 120px;
    background: var(--color-coral);
    border-radius: var(--radius-md);
    opacity: 0.15;
    z-index: 0;
}

/* ===== Vibe Section ===== */
.vibe {
    padding: var(--space-3xl) 0;
    background: var(--color-charcoal-light);
    position: relative;
    overflow: hidden;
}

.vibe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-coral), transparent);
}

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

.vibe-quote {
    position: relative;
    margin-bottom: var(--space-xl);
}

.vibe-quote-mark {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.vibe-text {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
    font-style: italic;
}

.vibe-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.vibe-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-coral);
    padding: 2px;
}

.vibe-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.vibe-author-name {
    display: block;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
}

.vibe-author-location {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--space-3xl) 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-text {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(242,107,58,0.1);
    border: 1px solid rgba(242,107,58,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 500;
}

.contact-value a {
    transition: color var(--transition);
}

.contact-value a:hover {
    color: var(--color-coral);
}

/* Hours */
.contact-hours {
    background: var(--color-charcoal-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.contact-hours h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9375rem;
}

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

.hour-row span:first-child {
    color: var(--color-text-muted);
}

.hour-row span:last-child {
    color: var(--color-white);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--color-charcoal-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.03em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-coral);
    box-shadow: 0 0 0 3px rgba(242,107,58,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-xl);
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    margin-bottom: var(--space-md);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-text-muted);
}

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

/* ===== Map Section ===== */
.map-section {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) brightness(0.5);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-card {
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.map-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.03em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.map-card p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-charcoal-light);
    border-top: 1px solid var(--color-border);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

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

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.footer-contact a {
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-coral);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

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

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-coral);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-coral);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-coral-light);
    transform: translateY(-4px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .float-card-1 { left: 0; }
    .float-card-3 { left: 0; }
    
    .about-grid,
    .events-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        right: 0;
    }
    
    .about-content {
        padding: var(--space-xl) 0;
    }
    
    .events-content {
        padding-right: 0;
    }
    
    .events-img-stack {
        height: 400px;
        margin-top: var(--space-xl);
    }
    
    .events-img-1 img,
    .events-img-2 img {
        width: 280px;
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-charcoal-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem 0 var(--space-2xl);
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-image-main img {
        height: 400px;
    }
    
    .float-card {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-img-main img {
        height: 350px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-md);
        border: none;
    }
    
    .about-img-secondary img {
        width: 100%;
        height: 250px;
    }
    
    .about-accent {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-wrap: wrap;
    }
    
    .event-arrow {
        display: none;
    }
    
    .events-img-stack {
        height: 300px;
    }
    
    .events-img-1 img,
    .events-img-2 img {
        width: 200px;
        height: 300px;
    }
    
    .events-img-2 {
        top: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .map-section {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-categories {
        flex-direction: column;
    }
    
    .menu-cat-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-card {
        padding: var(--space-md);
    }
    
    .map-card {
        padding: var(--space-md);
        margin: 0 var(--space-md);
    }
}

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
