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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #2d2d2d;
  line-height: 1.7;
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.navbar .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #0a1628;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .logo:hover {
  color: #c9a961;
}
.navbar .logo .logo-short {
  display: none !important;
}
.navbar .logo .logo-full {
  display: inline !important;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}
.navbar .nav-links a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a961;
  transition: width 0.3s ease;
}
.navbar .nav-links a:hover {
  color: #c9a961;
}
.navbar .nav-links a:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0;
  overflow: hidden;
}
.hero .hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero .hero-slideshow .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
}
.hero .hero-slideshow .hero-slide.active {
  opacity: 1;
  animation: heroZoom 20s ease-in-out infinite;
}
@keyframes heroZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.5));
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}
.hero .hero-content .hero-text {
  animation: fadeInUp 1s ease;
}
.hero .hero-content .hero-text h1 {
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero .hero-content .hero-text p {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0.95;
}
.hero .hero-content .hero-text .book-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #c9a961;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hero .hero-content .hero-text .book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c9a961;
  transition: left 0.4s ease;
  z-index: -1;
}
.hero .hero-content .hero-text .book-btn:hover {
  color: #0a1628;
}
.hero .hero-content .hero-text .book-btn:hover::before {
  left: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

section {
  padding: 8rem 0;
}
section.about {
  background: #ffffff;
}
section.fleet {
  background: #f5f5f5;
}
section.contact {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 3.5rem;
  color: #0a1628;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}
.section-header .divider {
  width: 80px;
  height: 2px;
  background: #c9a961;
  margin: 0 auto;
}

.lead {
  text-align: center;
  font-size: 1.2rem;
  color: #666666;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.features .feature {
  text-align: center;
  padding: 2rem;
}
.features .feature h3 {
  font-size: 1.8rem;
  color: #0a1628;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.features .feature p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 3rem auto 0;
  max-width: 1000px;
}
.fleet-grid .yacht-card {
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.fleet-grid .yacht-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.fleet-grid .yacht-card .yacht-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.fleet-grid .yacht-card .yacht-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.fleet-grid .yacht-card h3 {
  font-size: 1.8rem;
  color: #0a1628;
  padding: 2rem 1.5rem 0.5rem;
  letter-spacing: 1px;
}
.fleet-grid .yacht-card p {
  color: #666666;
  padding: 0 1.5rem 2rem;
  font-size: 0.95rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 4rem auto 0;
  max-width: 800px;
}
.contact-info .contact-item {
  text-align: center;
  padding: 2rem;
}
.contact-info .contact-item h4 {
  font-size: 1.3rem;
  color: #0a1628;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-info .contact-item p {
  color: #666666;
  font-size: 1.1rem;
}

.footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 3rem 0;
}
.footer p {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.alert {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  border-radius: 4px;
  z-index: 3000;
  max-width: 500px;
  width: 90%;
  text-align: center;
  font-weight: 500;
  animation: alertSlideIn 0.3s ease;
}
.alert.alert-success {
  background: #4caf50;
  color: white;
}
.alert.alert-error {
  background: #f44336;
  color: white;
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 1024px) {
  .features,
  .fleet-grid,
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .hero-content .hero-text h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .navbar .nav-container {
    padding: 0 1.5rem;
    justify-content: center;
  }
  .navbar .nav-links {
    display: none;
  }
  .navbar .logo .logo-short {
    display: inline;
    font-size: 2rem;
    letter-spacing: 3px;
  }
  .navbar .logo .logo-full {
    display: none;
  }
  .container {
    padding: 0 1.5rem;
  }
  section {
    padding: 5rem 0;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
  .hero .hero-content .hero-text p {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 2.5rem;
  }
  .features,
  .fleet-grid,
  .contact-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.booking-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.booking-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.booking-modal .modal-content {
  position: relative;
  background: #ffffff;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}
.booking-modal .modal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #0a1628;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 2px;
}
.booking-modal .modal-content .divider {
  width: 80px;
  height: 2px;
  background: #c9a961;
  margin: 0 auto 2rem;
}
.booking-modal .modal-content .modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #666666;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.booking-modal .modal-content .modal-close:hover {
  color: #0a1628;
}

.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0a1628;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-group .form-control {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #2d2d2d;
  background: #ffffff;
  transition: border-color 0.3s ease;
}
.form-group .form-control:focus {
  outline: none;
  border-color: #c9a961;
}
.form-group .form-control::-moz-placeholder {
  color: #666666;
}
.form-group .form-control::placeholder {
  color: #666666;
}
.form-group textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.form-group .text-danger {
  display: block;
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.form-actions button {
  flex: 1;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}
.form-actions .btn-cancel {
  background: transparent;
  color: #2d2d2d;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.form-actions .btn-cancel:hover {
  border-color: #666666;
  background: #f5f5f5;
}
.form-actions .btn-submit {
  background: #c9a961;
  color: #0a1628;
  border: 2px solid #c9a961;
}
.form-actions .btn-submit:hover {
  background: #b8964f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .booking-modal .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }
  .booking-modal .modal-content h2 {
    font-size: 2rem;
  }
  .booking-modal .modal-content .modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }
  .form-actions {
    flex-direction: column;
  }
  .form-actions button {
    width: 100%;
  }
}/*# sourceMappingURL=global.css.map */