* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4AF37;
    --secondary-color: #1E40AF;
    --accent-color: #F97316;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-800: #1F2937;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
}

 /* Unified button style for nav actions */
.nav-actions .btn,
.auth-btn {
    background-color: var(--primary-color); /* Same background color */
    color: var(--white); /* Same text color */
    border: none; /* Remove any borders */
    padding: 0.6rem 1.5rem; /* Same padding */
    font-size: 1rem; /* Same font size */
    border-radius: 25px; /* Same rounded corners */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Hover effect */
.nav-actions .btn:hover,
.auth-btn:hover {
    background-color: #B8941F; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.button.btn_sm.btn_blue {
    color: #102247; /* golden yellow */
    border: none;
    background: transparent;
    
    text-transform: uppercase;
    text-decoration: underline;
    padding: 0;
}

.button.btn_sm.btn_blue:hover {
    color: #b8860b; /* slightly darker gold on hover */
    text-decoration: none;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-dropdown {
    position: relative;
    display: inline-block;
}

.auth-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1001;
    right: 0;
    top: 100%;
    margin-top: 5px;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--gray-50);
    color: var(--primary-color);
}

.auth-dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlide 0.3s ease;
}

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

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input,
.modal-content select {
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background-color: #ECFDF5;
    color: var(--success);
    border: 1px solid #A7F3D0;
}

.message.error {
    background-color: #FEF2F2;
    color: var(--error);
    border: 1px solid #FECACA;
}

/* Footer Styles */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--gray-200);
    line-height: 1.6;
}

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

.footer-section a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-200);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

        
        /* MODIFIED: Selectors now include 'a' tags for the Book Now link */
        .auth-buttons a,
        .auth-buttons button {
            display: inline-block; /* Ensures the 'a' tag respects padding */
            text-decoration: none; /* Removes the underline from the link */
            margin-left: 10px;
            padding: 8px 16px;
            border: 1px solid #d4ac2b;
            background-color: transparent;
            color: #d4ac2b;
            border-radius: 20px; /* More rounded */
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease-in-out;
        }
        .auth-buttons a:hover,
        .auth-buttons button:hover {
            background-color: #d4ac2b;
            color: #1A2B4E;
        }

        /* --- NEW: User Menu Dropdown Styles --- */
        .user-menu {
            position: relative; /* Crucial for positioning the dropdown */
            display: none; /* Hidden by default */
        }

        .user-menu-toggle {
            background-color: #d4ac2b; /* Gold color from image */
            color: white;
            font-weight: bold;
            padding: 8px 20px;
            border: none;
            border-radius: 20px; /* Pill shape */
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 0 15px rgba(212, 172, 43, 0.4); /* Glow effect */
        }
        
        .user-menu-dropdown {
            display: none; /* Hidden by default */
            position: absolute;
            top: 120%; /* Position below the button */
            right: 0;
            background-color: white;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 8px;
            overflow: hidden; /* Ensures child elements conform to border-radius */
        }
        
        .user-menu-dropdown a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 14px;
        }
        
        .user-menu-dropdown a:hover {
            background-color: #f1f1f1;
        }

        /* Class to show the dropdown with JS */
        .user-menu-dropdown.show {
            display: block;
        }

        /* --- Modal Styles (Largely Unchanged) --- */
        .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.5); align-items: center; justify-content: center; padding: 20px; }
        .modal-content { background-color: #fefefe; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); max-width: 550px; }
        .modal-content.register-content { display: flex; flex-direction: column; max-height: 90vh; width: 100%; overflow: hidden; margin: 0; }
        .modal-header { flex-shrink: 0; padding: 20px 30px; border-bottom: 1px solid #e5e5e5; display: flex; justify-content: space-between; align-items: flex-start; }
        .modal-header h2 { margin: 0 0 5px 0; }
        .modal-header p { margin: 0; color: #666; font-size: 14px; }
        .modal-body { flex-grow: 1; overflow-y: auto; padding: 20px 30px; }
        .modal-body::-webkit-scrollbar { width: 8px; }
        .modal-body::-webkit-scrollbar-track { background: #f1f1f1; }
        .modal-body::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
        .modal-body::-webkit-scrollbar-thumb:hover { background: #aaa; }
        .modal-header .close { position: static; float: none; font-size: 32px; line-height: 1; margin-left: 20px; color: #aaa; cursor: pointer; font-weight: bold; }
        .modal-header .close:hover { color: #000; }
        .form-row { display: flex; gap: 20px; flex-wrap: wrap; }
        .form-row .form-group { flex: 1; min-width: 150px; }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; color: #333; }
        input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 14px; }
        input::placeholder { color: #aaa; }
        .input-with-button { display: flex; gap: 10px; }
        .input-with-button input { flex-grow: 1; }
        .btn-verify { padding: 10px 15px; border: 1px solid #ccc; background-color: #f0f0f0; border-radius: 4px; cursor: pointer; white-space: nowrap; }
        .btn, .btn-primary { width: 100%; padding: 12px; border: none; border-radius: 5px; color: white; background-color: #007bff; cursor: pointer; font-size: 16px; font-weight: bold; margin-top: 10px; }
        .btn:hover, .btn-primary:hover { background-color: #b8860b; }
        .divider { text-align: center; margin: 20px 0; color: #888; display: flex; align-items: center; }
        .divider span { padding: 0 15px; }
        .divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #e0e0e0; }
        .social-login-options { text-align: center; }
        .social-login-options p { margin-bottom: 10px; color: #666; }
        .social-btn { width: 100%; padding: 12px; margin-bottom: 10px; border-radius: 5px; border: 1px solid #ccc; background-color: #fff; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
        .social-btn i { margin-right: 10px; font-size: 18px; }
        .message { margin-top: 15px; padding: 10px; border-radius: 4px; text-align: center; font-size: 14px; }
        .message.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
        .message.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
    

       
  

    

    .hero {
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
       background-image: url('images/slider/img-5.jpg'); 
      padding: 50px 20px;
      text-align: center;
    }

    .hero h2 {
      font-size: 3rem;
      font-weight: bold;
      line-height: 1.4;
    }

    .booking-form-container {
      background-color: #ebe6cb;
      padding: 20px;
      max-width: 1000px;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-top: 350px;
    }

    .booking-form {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: end;
    }

    .input-group {
      position: relative;
      flex: 1;
      min-width: 150px;
    }

    .input-group svg {
      position: absolute;
      left: 10px;
      top: 12px;
      width: 20px;
      height: 20px;
      fill: none;
      stroke: #666;
      stroke-width: 2;
    }

    .input-group input,
    .input-group select {
      width: 100%;
      padding: 12px 12px 12px 40px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      color: #000; /* 🔑 Black text */
      outline: none;
    }

    .input-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath strokeLinecap='round' strokeLinejoin='round' strokeWidth='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px;
      padding-right: 36px;
    }
    .input-group input[type="date"] {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #000;
  outline: none;
  background-color: #fff;
}
    .fake-placeholder {
  position: absolute;
  left: 40px;
  top: 12px;
  color: black;
  pointer-events: none;
  transition: 0.2s ease all;
  font-size: 1rem;
}

/* Hide the label when input has a value */
.input-group input:valid + .fake-placeholder,
.input-group input:focus + .fake-placeholder {
  top: -8px;
  left: 35px;
  font-size: 0.75rem;
  background: #fff;
  padding: 0 4px;
  color: #333;
}

    .booking-form button {
      padding: 12px 20px;
      background-color: #B8941F;
      color: white;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .booking-form button:hover {
      background-color: #B8941F;
    }
    select:disabled {
  background-color: #eee;
  color: #888;
  cursor: not-allowed;
}



    @media (max-width: 768px) {
      .booking-form {
        flex-direction: column;
        align-items: stretch;
      }
    }
 /* Desktop Default */
.nav-menu {
  display: flex;
  gap: 20px;
}

/* Hamburger default hidden */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  display: block;
}

/* Mobile view */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #102247;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 99;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
