/* ===================================
   One Sip Restaurant - Modern Stylesheet
   Inspired by Squarespace Template Design
   =================================== */

/* CSS Custom Properties (Variables) */
:root {
    /* Premium Color Palette */
    --primary-color: #ffffff;
    --secondary-color: #1a1a1a;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E8D090;
    --accent-sage: #8B9A7E;
    --text-color: #2c2c2c;
    --text-light: #6b6b6b;
    --text-lighter: #999999;
    --white: #ffffff;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F1EB;
    --border-color: #E5DFD6;
    --overlay-dark: rgba(26, 26, 26, 0.65);
    --overlay-light: rgba(26, 26, 26, 0.4);

    /* Premium Typography */
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --max-width: 1400px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    text-transform: capitalize;
    letter-spacing: 0.02em;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: var(--spacing-md) auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    line-height: 1.8;
}

/* ===================================
   Navigation Header
   =================================== */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-header.header-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: var(--header-height);
    gap: var(--spacing-md);
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    font-style: italic;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-left: auto;
    margin-right: var(--spacing-md);
}

.nav-link {
    padding: var(--spacing-xs) 0;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 1px;
    background: var(--accent-gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Social Icons in Navigation */
.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.social-icon {
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    opacity: 0.7;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero_image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    line-height: 1.2;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-gold-light);
    font-weight: 400;
    letter-spacing: 0.03em;
    font-family: var(--font-secondary);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

/* ===================================
   Destination Section
   =================================== */
.destination-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.destination-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
}

.destination-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-secondary);
    font-weight: 400;
}

/* ===================================
   Featured Section
   =================================== */
.featured-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/restaurant-interior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.35);
}

.featured-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: var(--spacing-lg);
}

.featured-title {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    line-height: 1.2;
}

.featured-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.9;
    font-family: var(--font-secondary);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1.125rem 3rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    border: 2px solid var(--white);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-width: 44px;
    min-height: 44px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    color: var(--white) !important;
    border: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--white) !important;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline-dark {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.15) 100%);
    color: var(--secondary-color);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-outline-dark:hover {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
}

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

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

.btn-book {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 0.75rem 2.5rem;
    font-weight: 600;
}

.btn-book:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Feature Cards Section
   =================================== */
.feature-cards-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 40%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-overlay-text {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 0.03em;
    text-align: center;
}

.feature-card:hover .feature-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
}

.feature-card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.feature-card-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: var(--secondary-color);
}

.feature-card-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}

.view-menu-btn-container {
    text-align: center;
    padding: var(--spacing-md) 0;
}

/* ===================================
   Menu Section
   =================================== */
.menu-section {
    background: var(--bg-light);
    min-height: 50vh;
}

.menu-placeholder {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.menu-placeholder p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Reservations Section
   =================================== */
.reservations-section {
    padding: 0;
}

.reservations-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    /* Add your reservations image here:
    background-image: url('../images/reservations-bg.jpg');
    */
}

.reservations-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: var(--spacing-lg);
}

.reservations-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.reservations-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Booking Widget */
.booking-widget {
    background: var(--white);
    padding: var(--spacing-lg);
    max-width: 900px;
    margin: -60px auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    align-items: end;
}

.booking-field {
    display: flex;
    flex-direction: column;
}

.booking-field label {
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.booking-field input,
.booking-field select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.booking-powered {
    text-align: center;
    margin-top: var(--spacing-sm);
    color: #4a4a4a;
    font-size: 0.9rem;
}

.booking-powered::before {
    content: '🔵 ';
}

/* Reservation Form Styles */
.reservation-form {
    width: 100%;
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.reservation-form .form-group {
    display: flex;
    flex-direction: column;
}

.reservation-form .form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.reservation-form .form-group input,
.reservation-form .form-group select,
.reservation-form .form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
    background: var(--white);
}

.reservation-form .form-group input:focus,
.reservation-form .form-group select:focus,
.reservation-form .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

.reservation-form .btn-book {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: var(--spacing-sm);
    border-radius: 4px;
    margin-top: var(--spacing-md);
    text-align: center;
    display: block;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: var(--spacing-sm);
    border-radius: 4px;
    margin-top: var(--spacing-md);
    text-align: center;
    display: block;
}

/* Reservation Info Section */
.reservation-info-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.reservation-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.reservation-info-card {
    background: var(--white);
    padding: var(--spacing-lg);
    text-align: left;
}

.reservation-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    font-family: var(--font-primary);
}

.reservation-info-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.reservation-info-card p:last-child {
    margin-bottom: 0;
}

.reservation-info-card strong {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ===================================
   Locations Section
   =================================== */
.locations-section {
    padding: 0;
}

.location-showcase {
    width: 100%;
    height: 70vh;
    background: var(--bg-light);
}

.location-image-large {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../images/retsaurant_dining_room.jpg');
}

.location-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.location-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.location-detail-card p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    color: var(--text-color);
}

/* ===================================
   What's On Section
   =================================== */
.whats-on-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.event-card-featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--white);
    border-color: var(--accent-gold);
}

.event-card-featured .event-title,
.event-card-featured .event-time,
.event-card-featured .event-description {
    color: var(--white);
}

.event-card-featured .event-time {
    opacity: 0.9;
}

.event-card-featured .event-description {
    opacity: 0.85;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-badge-featured {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    animation: pulse 2s ease-in-out infinite;
}

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

.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.event-card-featured .event-icon {
    background: var(--white);
    color: var(--accent-gold);
}

.event-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.event-time {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card-featured .event-time {
    color: var(--accent-gold-light);
}

.event-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.event-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: auto;
}

.event-card-featured .event-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.whats-on-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.whats-on-cta-text {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* Responsive Design for What's On Section */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .event-card {
        padding: var(--spacing-md);
    }

    .event-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .event-title {
        font-size: 1.25rem;
    }

    .event-badge {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .whats-on-cta-text {
        font-size: 1.1rem;
    }
}

/* ===================================
   Login Section
   =================================== */
.login-section {
    background: var(--white);
}

.login-container {
    max-width: 450px;
    margin: 0 auto;
}

.login-form {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
}

.forgot-link {
    color: var(--text-color);
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    margin: var(--spacing-md) 0;
    color: var(--text-light);
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.form-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social-links a {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --spacing-xl: 3rem;
    }

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

    .hero-title,
    .featured-title {
        font-size: 2.5rem;
    }

    .reservations-title {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .featured-description {
        font-size: 1.1rem;
    }

    /* Hero Section - Mobile Responsive Images */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        height: auto;
    }

    /* Featured Section - Mobile Responsive */
    .featured-section {
        min-height: 60vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    /* Feature Cards - Responsive Image Heights */
    .feature-card-image {
        height: 250px;
        background-size: cover;
        background-position: center;
    }

    /* Location Section - Responsive Background */
    .location-image {
        background-size: cover;
        background-position: center center;
        min-height: 300px;
    }

    /* Reservations Hero - Tablet Responsive */
    .reservations-hero {
        min-height: 50vh;
        background-size: cover;
        background-position: center center;
    }

    /* Menu Hero - Tablet Responsive */
    .menu-hero {
        min-height: 50vh;
        background-size: cover;
        background-position: center center;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--spacing-lg);
        gap: var(--spacing-md);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .social-icons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .reservation-form .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .reservation-info-cards {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 480px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-title,
    .featured-title {
        font-size: 2rem;
    }

    .reservations-title {
        font-size: 2rem;
    }

    .hero-subtitle,
    .featured-description {
        font-size: 1rem;
    }

    /* Mobile Image Responsive Fixes */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        height: auto;
    }

    .featured-section {
        min-height: 50vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        padding: var(--spacing-lg) 0;
    }

    .feature-card-image {
        height: 220px;
        background-size: cover;
        background-position: center;
    }

    .location-image {
        background-size: cover;
        background-position: center center;
        min-height: 250px;
        height: auto;
    }

    /* Reservations Hero - Mobile Responsive */
    .reservations-hero {
        min-height: 40vh;
        background-size: cover;
        background-position: center center;
    }

    /* Menu Hero - Mobile Responsive */
    .menu-hero {
        min-height: 40vh;
        background-size: cover;
        background-position: center center;
    }

    /* Ensure no image overflow on mobile */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn {
        padding: 0.875rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }
}

/* ===================================
   Accessibility & Utility Classes
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* ===================================
   Premium Animations & Keyframes
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for multiple elements */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }

/* Premium decorative elements */
.decorative-line {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: var(--spacing-md) auto;
}

.decorative-line-long {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: var(--spacing-lg) auto;
}

/* Premium badge/label */
.premium-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

/* Enhanced smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   Menu Page Styles
   =================================== */

/* Menu Hero Section - Matching Reservations Style */
.menu-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: var(--spacing-lg);
}

.menu-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.menu-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.menu-tab {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition-normal);
}

.menu-tab:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.menu-tab.active {
    background: var(--secondary-color);
    color: var(--white);
}

/* Menu Images Section */
.menu-images-section {
    background: var(--bg-light);
    padding-bottom: var(--spacing-xl);
}

.menu-gallery {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.menu-image-wrapper {
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
    padding: 1rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.menu-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.menu-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Menu Page */
@media (max-width: 768px) {
    .menu-title {
        font-size: 2.5rem;
    }

    .menu-subtitle {
        font-size: 1rem;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .menu-tab {
        width: 80%;
        max-width: 300px;
    }

    .menu-gallery {
        padding: 0 var(--spacing-sm);
    }

    .menu-image-wrapper {
        padding: 0.5rem;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .menu-title {
        font-size: 2rem;
    }

    .menu-hero {
        min-height: 50vh;
    }
}

/* ===================================
   Signup Modal Styles
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.close-modal {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
    padding: 0;
    background: none;
    border: none;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.signup-form {
    padding: var(--spacing-md);
}

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

.signup-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.signup-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition-normal);
    background-color: var(--white);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.signup-form input::placeholder {
    color: var(--text-lighter);
}

.signup-form .btn-full {
    margin-top: var(--spacing-sm);
}

.signup-form .form-message {
    margin-top: var(--spacing-md);
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .signup-form {
        padding: var(--spacing-sm);
    }
}

/* ===================================
   User Profile Styles (When Logged In)
   =================================== */

.user-profile {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.user-avatar {
    flex-shrink: 0;
}

.user-avatar i {
    font-size: 5rem;
    color: var(--secondary-color);
}

.user-details {
    flex: 1;
}

.user-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.user-email {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.user-role {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.user-actions {
    text-align: center;
}

.user-actions .btn {
    min-width: 200px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
}

.user-actions .btn-outline-dark {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.user-actions .btn-outline-dark:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-profile {
        padding: var(--spacing-md);
    }

    .user-info {
        flex-direction: column;
        text-align: center;
    }

    .user-avatar i {
        font-size: 4rem;
    }

    .user-name {
        font-size: 1.5rem;
    }
}

/* ===================================
   RESERVATION SUCCESS UI
   Premium celebration interface
   =================================== */

.reservation-success {
    background: linear-gradient(135deg, #FAF8F5 0%, #FFFFFF 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease;
}

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

/* Success Icon - Animated Checkmark */
.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.success-checkmark {
    width: 100%;
    height: 100%;
    display: block;
}

.checkmark-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
}

.checkmark-path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.success-icon.animate .checkmark-circle {
    animation: drawCircle 0.6s ease forwards;
}

.success-icon.animate .checkmark-path {
    animation: drawCheck 0.4s 0.4s ease forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Success Title & Subtitle */
.success-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.success-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* Success Details - Grid of Info Cards */
.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-detail-item {
    background: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.4;
}

/* Success Message Box */
.success-message-box {
    background: #FFF9E6;
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.success-message-box h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-message-box p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.success-message-box p:last-child {
    margin-bottom: 0;
}

.email-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Success Actions - Buttons */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.success-actions .btn {
    min-width: 200px;
}

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

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Success Footer */
.success-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.success-footer p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.success-footer .footer-tagline {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .reservation-success {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 100px;
        height: 100px;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-subtitle {
        font-size: 1rem;
    }

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

    .success-detail-item {
        padding: 1rem;
    }

    .detail-icon {
        font-size: 2rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
        min-width: auto;
    }
}
