:root {
  --primary: #0a5d70;
  --secondary: #f8f9fa;
  --accent: #ff6b6b;
  --dark: #1a1a2e;
  --light: #ffffff;
}

body {
  color: #333;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--light), var(--primary));
}
span{
    color: white !important;
}
/* Header Styles */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

#logoimg {
  height: 10% !important;
  width: 100;
}
.navbar-brand {
  font-family: "Raleway", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.navbar-scrolled {
  background: linear-gradient(135deg, var(--primary), var(--light));
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-book {
  background-color: var(--accent);
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-book:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
}
.btn-access {
  background-color: var(--primary);
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-access:hover {
  background-color: #52e8ff;
  transform: translateY(-2px);
}
/* CAROUSEL SPECIFIC STYLES */
.carousel-item {
  height: 100vh;
  min-height: 600px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.carousel-caption {
  bottom: 30%;
  text-align: left;
  max-width: 600px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption {
    bottom: 20%;
    padding: 20px;
  }
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding-bottom: 15px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.login-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.login-header {
  background: var(--primary);
  color: white;
  padding: 25px;
  text-align: center;
}

.login-header h1 {
  font-weight: 700;
  margin: 0;
  font-size: 1.8rem;
}

.login-header p {
  opacity: 0.9;
  margin: 10px 0 0;
}

.login-form {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 93, 112, 0.2);
  outline: none;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.input-icon input {
  padding-left: 45px;
}

.btn-login {
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-login:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 8px;
}

.forgot-password {
  color: var(--primary);
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0;
  color: #aaa;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.separator span {
  padding: 0 15px;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
}

.social-btn.facebook {
  background: #3b5998;
}

.social-btn.google {
  background: #dd4b39;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}

.signup-link a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .login-container {
    border-radius: 10px;
  }

  .login-header {
    padding: 20px;
  }

  .login-form {
    padding: 20px;
  }
}
  .footer {
            text-align: center;
            padding: 40px 0;
            color: rgba(3, 3, 3, 1);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 60px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 20px 0;
        }

        .footer-link {
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s;
        }
