:root {
  --deep-lagoon: #1E3D59;
  --ocean-mist: #A8DADC;
  --coral-flame: #FF6F59;
  --night-indigo: #0A2342;
  --shell-white: #F9F9F9;
  --seafoam-gray: #E0F2F1;
  --nav-width: 100px;
  --nav-width-expanded: 240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--night-indigo);
  background-color: var(--shell-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  line-height: 1.2;
}

.vertical-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--nav-width);
  background-color: rgba(30, 61, 89, 0.95);
  backdrop-filter: blur(10px);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(168, 218, 220, 0.1);
}

.vertical-nav:hover {
  width: var(--nav-width-expanded);
}

.nav-brand {
  margin-bottom: 3rem;
  text-align: center;
}

.brand-name {
  display: none;
  color: var(--shell-white);
  font-family: 'Marcellus SC', serif;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.vertical-nav:hover .brand-name {
  display: block;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--ocean-mist);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.nav-links {
  list-style: none;
  width: 100%;
}

.nav-links li {
  width: 100%;
  margin-bottom: 0.5rem;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: var(--shell-white);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--coral-flame);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  transform: scaleY(1);
}

.nav-links a:hover,
.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

main {
  margin-left: var(--nav-width);
  width: calc(100% - var(--nav-width));
}

section {
   /* min-height: 50vh;*/
    padding: 2rem 2rem;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero {
  background-image: linear-gradient(rgba(10, 35, 66, 0.5), rgba(10, 35, 66, 0.5)),
    url('https://images.pexels.com/photos/1450353/pexels-photo-1450353.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  color: var(--shell-white);
  text-align: center;
  position: relative;
  padding-left: 142px;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
}

.pre-title {
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
  font-family: 'Marcellus SC', serif;
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--coral-flame);
  color: var(--shell-white);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 111, 89, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 40px;
  border: 2px solid var(--shell-white);
  border-radius: 20px;
  margin: 0 auto 1rem;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--shell-white);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 20px); opacity: 0; }
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral-flame);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--night-indigo);
}

.vision {
  background-color: var(--shell-white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-text {
  font-size: 1.1rem;
}

.vision-features {
  list-style: none;
  margin-top: 2rem;
}

.vision-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.vision-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--coral-flame);
  transform: translateY(-50%);
}

.vision-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.services {
  background-color: var(--seafoam-gray);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.service-item {
  background-color: var(--shell-white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-item h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
}

.service-item p {
  padding: 0 1.5rem 2rem;
  color: #666;
}

.suites {
  background-image: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7)),
    url('https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  color: var(--shell-white);
}

.suites-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.suite-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.suite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.suite-card:hover img {
  transform: scale(1.1);
}

.suite-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  transform: translateY(30%);
  transition: transform 0.3s ease;
}

.suite-card:hover .suite-info {
  transform: translateY(0);
}

.suite-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.suite-link {
  display: inline-block;
  color: var(--shell-white);
  text-decoration: none;
  margin-top: 1rem;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--coral-flame);
  transition: color 0.3s ease;
}

.suite-link:hover {
  color: var(--coral-flame);
}

.contact {
  background-color: var(--shell-white);
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.form-group {
  position: relative;
  padding-top: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
}

.form-group label {
  position: absolute;
  top: 1.8rem;
  left: 0;
  color: #999;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: 0;
  font-size: 0.8rem;
  color: var(--coral-flame);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--coral-flame);
}

.submit-button {
  background-color: var(--coral-flame);
  color: var(--shell-white);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: #e65d47;
  transform: translateY(-2px);
}

footer {
  background-color: var(--deep-lagoon);
  color: var(--shell-white);
  padding: 6rem 2rem 2rem;
  margin-left: var(--nav-width);
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231E3D59' d='M0,50 C150,100 350,0 500,50 C650,100 850,0 1000,50 C1150,100 1350,0 1440,50 L1440,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  font-family: 'Marcellus SC', serif;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.footer-column a {
  color: var(--shell-white);
  text-decoration: none;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--coral-flame);
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-form button {
  background-color: var(--coral-flame);
  color: var(--shell-white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.newsletter-form button:hover {
  background-color: #e65d47;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page {
  margin-left: var(--nav-width);
  padding: 4rem 2rem;
  min-height: 100vh;
  background-color: var(--shell-white);
}

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--night-indigo);
  margin-bottom: 3rem;
  text-align: center;
  font-family: 'Marcellus SC', serif;
}

.legal-section {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--deep-lagoon);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: #666;
}

@media (max-width: 1200px) {
  .vision-grid,
  .suites-slider {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vertical-nav {
    bottom: 0;
    top: auto;
    height: 60px;
    width: 100%;
    padding: 0;
    flex-direction: row;
  }

  .vertical-nav:hover {
    width: 100%;
  }

  .nav-brand {
    display: none;
  }

  .nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  main {
    margin-left: 0;
    width: 100%;
    padding-bottom: 60px;
  }

  footer {
    margin-left: 0;
    padding-bottom: 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .legal-page {
    margin-left: 0;
    padding: 2rem 1rem 80px;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-section {
    padding: 1.5rem;
  }
}