/* Reservation Page Styles */
.reservation-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.reservation-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    overflow-x: hidden;
}

/* Header */
.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    position: relative;
    z-index: 10;
}

.back-button {
    width: 40px;
    height: 40px;
    background-color: #333333;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.back-button:hover {
    background-color: #FF9F1C;
    color: black;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
}

.back-button:active {
    transform: scale(0.95);
}

.menu-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.menu-button:hover {
    color: #FF9F1C;
    transform: scale(1.1);
}

/* Main Content */
.reservation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 24px 40px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.reservation-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #CCCCCC;
    text-align: center;
    margin: 0 0 40px 0;
}

/* Form Styles */
.reservation-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #CCCCCC;
    margin: 0;
}

.form-input {
    width: 100%;
    height: 48px;
    background-color: transparent;
    border: 1px solid #666666;
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #FF9F1C;
    box-shadow: 0 0 0 2px rgba(255, 159, 28, 0.2);
}

.form-input::placeholder {
    color: #999999;
}

/* Number input specific styles */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Time input specific styles */
input[type="time"] {
    color-scheme: dark;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Reservation Button */
.reservation-button {
    width: 100%;
    height: 48px;
    background-color: #FF9F1C;
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.reservation-button:hover {
    background-color: #FFB84D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
}

.reservation-button:active {
    transform: translateY(0);
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.circle-top-left {
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
}

.circle-top-right {
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .reservation-content {
        padding: 20px 20px 60px;
        max-width: 100%;
        justify-content: flex-start;
    }
    
    .reservation-title {
        font-size: 20px;
        margin-top: 20px;
    }
    
    .reservation-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .form-input {
        height: 44px;
        font-size: 16px;
    }
    
    .reservation-button {
        height: 44px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .reservation-header {
        padding: 16px 20px;
    }
    
    .back-button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .menu-button {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .reservation-content {
        padding: 20px 16px 60px;
    }
    
    .reservation-title {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .reservation-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .form-input {
        height: 42px;
        font-size: 14px;
    }
    
    .reservation-button {
        height: 42px;
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Animation for form elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reservation-content {
    animation: fadeInUp 0.6s ease-out;
}

.form-group {
    animation: fadeInUp 0.6s ease-out;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.reservation-button {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #0B0B0B 0%, #1a1a1a 100%);
    border-left: 2px solid #FF9F1C;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.mobile-menu-logo span {
    font-family: 'Kaushan Script', cursive;
    font-size: 16px;
    color: #FF9F1C;
    font-weight: 400;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #FF9F1C;
    color: black;
    transform: scale(1.1);
}

.mobile-menu-nav {
    flex: 1;
    padding: 40px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
    width: 200px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 159, 28, 0.2);
    border-color: #FF9F1C;
    color: #FF9F1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.mobile-menu-link i {
    width: 24px;
    font-size: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #333;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background: #FF9F1C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
}

.mobile-social-icon i {
    font-size: 16px;
}

/* Menu Toggle Styles */
.menu-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 8px;
}

.menu-toggle:hover {
    background: rgba(255, 159, 28, 0.1);
    transform: scale(1.1);
}

.menu-toggle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.menu-toggle:hover img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(84%) saturate(2634%) hue-rotate(28deg) brightness(101%) contrast(101%);
}

/* Responsive adjustments for mobile menu */
@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-menu-logo span {
        font-size: 14px;
    }
    
    .mobile-menu-link {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mobile-menu-link i {
        font-size: 16px;
    }
    
    .mobile-menu-footer {
        padding: 15px;
    }
    
    .mobile-social-icon {
        width: 35px;
        height: 35px;
    }
    
    .mobile-social-icon i {
        font-size: 14px;
    }
}
