* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-copper: #b87333;
    --accent-amber: #ff8c00;
    --text-light: #f8f8f8;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-intense: 0 25px 50px rgba(0, 0, 0, 0.4);
    --shadow-subtle: 0 8px 32px rgba(0, 0, 0, 0.2);

    /*menu*/
    --color-primary: #1C1B1A;     /* Sfondo principale */
    --color-secondary: #DCA92E;   /* Testo e bordi */
    --color-accent: #333333;      /* Hover effects */
    --color-light-gray: #343434;  /* Hover items */
    --color-medium-gray: #979797; /* Ingredienti */
    --color-border: #eeeeee;      /* Bordi sottili */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Enhanced Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}       

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-amber));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Hero Section - Ultra Modern */
.hero {
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(184, 115, 51, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(59, 20, 43, 0.6)), url("a5cd69bf-5410-469b-afd1-88f161235ca6.png");
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ff8c00" opacity="0.1"/><circle cx="50" cy="90" r="1" fill="%23b87333" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    padding: 3rem;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-gold) 50%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-amber) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: var(--shadow-intense);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 32px 64px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary-gold);
}

/* Modern Sections */
.section {
    padding: 120px 5%;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Reservation Section - Ultra Modern */
.reservation {
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(255, 140, 0, 0.03) 0%, transparent 70%),
        var(--secondary-dark);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.reservation-container {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-intense);
    position: relative;
    overflow: hidden;
}

.reservation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

/* Restaurant Booking System Styles */
#reservation-app {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.restaurant-booking-system {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    width: 100%;
}

.booking-section {
    margin-bottom: 3rem;
}

.booking-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Calendar Styles */
.rb-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.calendar-day {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.calendar-day .day-name,
.calendar-day .day-number {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.calendar-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-amber));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.calendar-day:hover::before {
    transform: scaleX(1);
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-amber) 100%);
    border-color: var(--accent-amber);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
}

.calendar-day.selected .day-name,
.calendar-day.selected .day-number {
    color: var(--primary-dark);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.02);
}

.calendar-day .day-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.calendar-day .day-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Time Slots */
.time-slots-section {
    margin-top: 2rem;
}

.period-header {
    color: var(--primary-gold);
    margin: 2rem 0 1rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.period-header:first-child {
    margin-top: 0;
}

.time-slot {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.time-slot-time,
.time-slot-available {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-amber));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.time-slot:hover::before {
    transform: scaleX(1);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.2);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-amber) 100%);
    border-color: var(--accent-amber);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.time-slot.selected .time-slot-time,
.time-slot.selected .time-slot-available {
    color: var(--primary-dark);
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.time-slot.limited {
    border-color: var(--accent-amber);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.time-slot-time {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.time-slot-available {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: right;
    flex-grow: 1;
    margin-left: 1rem;
    font-weight: 500;
}

/* Form Styles */
.booking-form-section {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 2rem;
    position: relative;
}

.booking-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    font-family: 'Inter', sans-serif;
}

/* Special styling for select dropdown */
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23d4af37" d="M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 0.8rem;
    font-size: 1rem;
    border: none;
    font-family: 'Inter', sans-serif;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: var(--secondary-dark);
    color: var(--primary-gold);
}

/* Firefox specific select styling */
@-moz-document url-prefix() {
    .form-group select {
        background-image: none;
        padding-right: 1.2rem;
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Buttons */
.rb-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-amber) 100%);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.rb-button span {
    position: relative;
    z-index: 2;
}

.rb-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.rb-button:hover::before {
    opacity: 1;
}

.rb-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.rb-button:active {
    transform: translateY(0);
}

.rb-button:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.rb-button-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.rb-button-secondary::before {
    background: rgba(255, 255, 255, 0.1);
}

.rb-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.rb-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rb-button:hover::before {
    opacity: 1;
}

.rb-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.rb-button:active {
    transform: translateY(-1px) scale(1.01);
}

.rb-button:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.rb-button-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.rb-button-secondary::before {
    background: rgba(255, 255, 255, 0.1);
}

.rb-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Success Message */
.booking-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    backdrop-filter: blur(16px);
}

.booking-success h3 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-success p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Loading and Error States */
.loading-message, 
.no-slots, 
.error-slots {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-slots-icon, 
.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.no-slots h4, 
.error-slots h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.no-slots p, 
.error-slots p {
    color: var(--text-muted);
    margin: 0;
}

/* Form Validation */
.form-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group input.error, 
.form-group select.error, 
.form-group textarea.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* Form Buttons Container */
.form-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* About Section */
.about {
    background: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card h3,
.feature-card p,
.feature-icon {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-amber));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Menu Section */
.menu {
    background: var(--secondary-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.menu-item {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    opacity: 0.03;
    transform: translate(50%, -50%);
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-subtle);
}

.menu-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.menu-item p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    color: var(--accent-amber);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: var(--primary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    to {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Text Selection */
::selection {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amber);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        margin-top: 70px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .reservation-container {
        padding: 2.5rem;
        margin: 0 1rem;
    }

    .features-grid,
    .menu-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 80px 5%;
    }

    .hero-content {
        padding: 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .feature-card,
    .menu-item,
    .contact-card {
        padding: 2rem;
    }

    /* Booking System Mobile */
    .rb-calendar {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .calendar-day {
        padding: 1rem 0.5rem;
    }
    
    .calendar-day .day-number {
        font-size: 1.2rem;
    }
    
    .time-slot {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .time-slot-time {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .time-slot-available {
        text-align: center;
        margin-left: 0;
        font-size: 0.85rem;
    }
    
    .booking-form-section {
        padding: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .rb-button {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .reservation-container {
        padding: 1.5rem;
    }

    .feature-card,
    .menu-item,
    .contact-card {
        padding: 1.5rem;
    }

    /* Booking System Small Mobile */
    .rb-calendar {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .time-slot-time {
        font-size: 1.2rem;
    }
    
    .booking-section h3 {
        font-size: 1.5rem;
    }
    
    .booking-form-section {
        padding: 1.5rem;
    }
}

a{
    text-decoration: none !important;
    text-decoration-line: none !important;
    color: white;
}
a:hover{
    color: #EE9A16;
}