/* Color Palette */
:root {
  --primary-color: #3361AC; /* Lapis Lazuli */
  --secondary-color: #E7E6DD; /* Chinese White */
  --accent-color: #E8C766; /* Arylide Yellow */
  --highlight-color: #E8AF30; /* Meat Brown */
  --dark-color: #162F65; /* Rainbow Indigo */
  --deep-dark: #0F2043; /* Yankees Blue */
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: var(--deep-dark);
}

.navbar-brand {
  color: var(--accent-color) !important;
}

.nav-link {
  color: var(--secondary-color) !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--highlight-color) !important;
}

.btn-reserve {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 30px;
  padding: 8px 18px;
  transition: all 0.3s;
}

.btn-reserve:hover {
  background-color: var(--highlight-color);
  color: var(--deep-dark);
}

/* Hero Section */
.hero-section .carousel-item img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(60%);
}

.carousel-caption {
  bottom: 30%;
}

.carousel-caption h1 {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 3rem;
}

.carousel-caption p {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* About Section */
#about {
  background-color: var(--secondary-color);
  color: var(--deep-dark);
}


/* Ratings */
.rating-stars i {
  color: var(--accent-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Chatbot */
.chatbot-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 15px 18px;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
.chatbot-btn:hover {
  background-color: var(--secondary-color);
}
.chatbot-modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.chatbot-body {
  height: 400px;
  overflow-y: auto;
  background-color: #f8f9fa;
  padding: 15px;
}

/* Contact Section */
#contact {
  background-color: var(--deep-dark);
}

/* Footer */
footer {
  background-color: var(--deep-dark);
  color: var(--secondary-color);
}
/* Authentication Styles */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 20px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    color: #1a2a6c;
    margin-bottom: 10px;
    font-size: 2rem;
}

.auth-header p {
    color: #666;
    font-size: 1.1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
}

.auth-form label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-form input,
.auth-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.auth-form input:focus,
.auth-form textarea:focus {
    border-color: #1a2a6c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
}

.auth-footer a {
    color: #1a2a6c;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-container {
    padding: 40px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.welcome-message h2 {
    color: #1a2a6c;
    margin-bottom: 5px;
}

.welcome-message p {
    color: #666;
}

.quick-actions {
    display: flex;
    gap: 15px;
}

.dashboard-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.dashboard-section h3 {
    color: #1a2a6c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Bookings Grid */
.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.booking-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-image {
    height: 180px;
    overflow: hidden;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-details {
    padding: 20px;
}

.booking-details h4 {
    color: #1a2a6c;
    margin-bottom: 15px;
}

.booking-details p {
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Bookings Table */
.bookings-table {
    overflow-x: auto;
}

.bookings-table table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th,
.bookings-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.bookings-table th {
    background: #f8f9fa;
    color: #1a2a6c;
    font-weight: 600;
}

.bookings-table tr:hover {
    background: #f8f9fa;
}

/* Status Styles */
.status-confirmed {
    color: #28a745;
    font-weight: 500;
}

.status-cancelled {
    color: #dc3545;
    font-weight: 500;
}

.status-completed {
    color: #6c757d;
    font-weight: 500;
}

/* Account Styles */
.account-container {
    padding: 40px 0;
}

.account-content {
    display: flex;
    gap: 30px;
}

.account-sidebar {
    width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: fit-content;
}

.account-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar li {
    margin-bottom: 5px;
}

.account-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.account-sidebar a:hover,
.account-sidebar .active {
    background: #1a2a6c;
    color: white;
}

.account-main {
    flex: 1;
}

.account-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    color: #1a2a6c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: #1a2a6c;
    color: white;
}

.btn-primary:hover {
    background: #0f1f4e;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .quick-actions {
        justify-content: center;
    }
    
    .account-content {
        flex-direction: column;
    }
    
    .account-sidebar {
        width: 100%;
    }
    
    .bookings-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
