/* style.css */

:root {
    --primary-color: #00a97f;
    --secondary-color: #00785c;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-navbar: rgba(255, 255, 255, 0.85);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Navbar styles */
  .navbar {
    background: var(--bg-navbar);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.35rem;
  }
  
  .menu-icon span {
    height: 3px;
    width: 28px;
    background: var(--text-color);
    display: block;
    border-radius: 2px;
    transition: var(--transition);
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
  }
  
  .nav-links a:hover {
    color: #000!important;
  }

  .nav-links .nav-cta a {
    color: white !important;
  }

  .nav-links .nav-cta a:hover {
    color: white !important;
  }

  .nav-cta {
    margin-left: 1rem;
  }
  
  @media (max-width: 768px) {
    .menu-icon {
      display: flex;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--bg-navbar);
      backdrop-filter: blur(10px);
      flex-direction: column;
      align-items: center;
      display: none;
      padding: 2rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
  
    .menu-toggle:checked + .menu-icon + .nav-links {
      display: flex;
    }
  
    .nav-links li {
      width: 100%;
      text-align: center;
      padding: 0.75rem 0;
    }
  
    .nav-cta {
      margin-left: 0;
      margin-top: 1rem;
    }
  
    .nav-links a::after {
      display: none;
    }
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 8rem 1rem;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
  }
  
  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    .hero p {
      font-size: 1rem;
    }
  }
  
  /* Button */
  .btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  /* Section */
  .section {
    padding: 4rem 0;
  }
  
  .light-bg {
    background-color: var(--bg-white);
  }
  
  h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #222;
  }
  
  @media (max-width: 768px) {
    .section {
      padding: 3rem 1rem;
    }
    h2 {
      font-size: 2rem;
    }
  }
  
  /* Grid */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  /* Feature, Room, Blockquote */
  .feature, .room, blockquote {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .feature:hover, .room:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .room img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  /* Explore List */
  .explore-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Form */
  form {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  form input,
  form select,
  form textarea,
  form button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: var(--transition);
  }
  
  form input:focus,
  form select:focus,
  form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
  }
  
  form button {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
  }
  
  form button:hover {
    background: var(--secondary-color);
  }
  
  /* Blockquote */
  blockquote {
    font-style: italic;
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
    margin: 0;
  }
  
  cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
  }
  
  /* Footer */
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    margin-top: 3rem;
  }
  
  /* Back to Top */
  #back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  #back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }
  
    .grid {
      grid-template-columns: 1fr;
    }
  
    .hero {
      padding: 6rem 1rem;
    }
  }