/* ============================================
   Aruba 414 Condo – Luxury Direct Booking Site
   Ocean blue + sand palette
   ============================================ */

:root {
  --ocean: #0A4D68;
  --ocean-dark: #063547;
  --ocean-light: #1A6B8A;
  --sand: #E8D5B7;
  --sand-dark: #C9A86C;
  --sand-light: #F5EDE0;
  --white: #FFFFFF;
  --off-white: #F9F7F4;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --success: #2E7D4F;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 40px rgba(10, 77, 104, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 77, 104, 0.18);
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ocean);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--ocean-light);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ocean);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 77, 104, 0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ocean);
}

.logo:hover {
  color: var(--ocean);
}

.logo-palm {
  font-size: 1.75rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-top: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.nav-list a:hover {
  color: var(--ocean);
}

.btn-nav {
  background: var(--ocean) !important;
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background: var(--ocean-dark) !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ocean);
  transition: var(--transition);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--ocean-dark);
  border-color: var(--ocean-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
}

.btn-full {
  width: 100%;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(6, 53, 71, 0.55) 0%, rgba(10, 77, 104, 0.4) 100%),
    url('https://aruba414.com/wp-content/uploads/2015/04/Aruba-Ocean-View-Condo-relax.jpeg') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 53, 71, 0.3) 0%, rgba(6, 53, 71, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  opacity: 0.95;
}

.hero-sub strong {
  font-weight: 600;
  color: var(--sand);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  color: white;
  font-size: 1.5rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ========== Sections ========== */
.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header.light {
  color: white;
}

.section-header.light .eyebrow {
  color: var(--sand);
}

.section-header.light .lead {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ocean-dark);
}

.section-header.light h2 {
  color: white;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== Why Direct ========== */
.why-direct {
  background: var(--white);
}

.savings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.savings-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.savings-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.savings-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.savings-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--ocean-dark);
  margin-bottom: 0.6rem;
}

.savings-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== Condo Gallery ========== */
.condo {
  background: var(--off-white);
}

.gallery {
  margin-bottom: 3.5rem;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

.gallery-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(10, 77, 104, 0.08);
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--ocean);
  margin-bottom: 0.85rem;
}

.feature ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sand-dark);
  font-weight: bold;
}

/* ========== Amenities ========== */
.amenities {
  background: linear-gradient(160deg, var(--ocean-dark) 0%, var(--ocean) 100%);
  color: white;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: background var(--transition);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.amenity-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.85rem;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* ========== Location ========== */
.location {
  background: white;
}

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

.location-text h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--ocean-dark);
  margin-bottom: 1rem;
}

.location-text > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.location-list {
  margin-bottom: 1.75rem;
}

.location-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.location-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-weight: 600;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

/* ========== Reviews ========== */
.reviews {
  background: var(--sand-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--sand-dark);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ========== Availability ========== */
.availability {
  background: white;
}

.calendar-placeholder {
  max-width: 560px;
  margin: 0 auto 3rem;
}

.calendar-box {
  background: var(--off-white);
  border: 2px dashed rgba(10, 77, 104, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.calendar-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ocean-dark);
  margin-bottom: 0.75rem;
}

.calendar-box p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.calendar-note {
  font-size: 0.9rem !important;
  margin-bottom: 1.5rem !important;
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.note-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.note-card h4 {
  font-family: var(--font-heading);
  color: var(--ocean);
  margin-bottom: 0.4rem;
}

.note-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== Request Form ========== */
.request {
  background: linear-gradient(160deg, var(--ocean-dark) 0%, #0d5a78 100%);
  color: white;
}

.request .eyebrow {
  color: var(--sand);
}

.request h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.request-info p {
  opacity: 0.9;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.contact-list li {
  margin-bottom: 1.25rem;
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: var(--sand);
  font-size: 1.15rem;
  font-weight: 500;
}

.contact-list a:hover {
  color: white;
}

.request-form {
  background: white;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid #dde3e8;
  border-radius: 8px;
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(10, 77, 104, 0.15);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ========== Practical ========== */
.practical {
  background: var(--off-white);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.practical-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(10, 77, 104, 0.08);
}

.practical-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}

.practical-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--ocean-dark);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand .logo-sub {
  color: var(--sand);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
}

.footer-contact a {
  color: var(--sand);
}

.footer-contact a:hover {
  color: white;
}

.footer-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .location-grid,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
  }

  .btn-nav {
    margin-top: 0.5rem;
    text-align: center;
  }

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

  .hero-sub {
    font-size: 1.05rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-content {
    padding: 5rem 1rem 3rem;
  }
}
