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

:root {
    --navy: #0b1f33;
    --seafoam: #5fb3b3;
    --sand: #f5e7c6;
    --sky: #cde6f3;
    --ink: #1f2a36;
    --text: #3c4a57;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(180deg, #fafdff 0%, #f4f8fb 60%, #ffffff 100%);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    letter-spacing: 0.5px;
}

header {
    position: relative;
    background: url('https://images.unsplash.com/photo-1504283947560-8f15f784d5e6?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    color: white;
    padding: 80px 20px 140px;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 31, 51, 0.85) 0%, rgba(11, 31, 51, 0.5) 60%, rgba(95, 179, 179, 0.45) 100%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* tidy stack */
.logo-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.logo-container {
  --size: 220px;  /* overall size, tweak to taste */
  position: relative;
  width: var(--size);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;     /* <-- makes the entire outer area white */
  padding: 0;           /* no extra gap */
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
}

.hero-content {
    max-width: 540px;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-bottom: 15px;
    color: white;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-button {
    background: var(--seafoam);
    color: var(--navy);
    box-shadow: 0 12px 25px rgba(95, 179, 179, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(95, 179, 179, 0.45);
}

.outline-button {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    background: transparent;
}

.outline-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"%3E%3Cpath fill="%23fafdff" fill-opacity="1" d="M0,160L80,186.7C160,213,320,267,480,272C640,277,800,235,960,218.7C1120,203,1280,213,1360,218.7L1440,224L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') bottom/cover no-repeat;
}

nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 40, 60, 0.08);
}

nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--seafoam);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--seafoam);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

main {
    margin-top: -60px;
}

.section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

.section-light {
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(15, 40, 60, 0.08);
    margin-top: -120px;
    padding: 100px 40px;
}

.section-heading {
    text-align: left;
    margin-bottom: 35px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--seafoam);
    font-weight: 600;
    margin-bottom: 10px;
}

.section h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 10px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    color: var(--ink);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

.amenities {
    margin-top: 80px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(15, 40, 60, 0.08);
    padding: 90px 40px;
}

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

.amenity-card {
    background: linear-gradient(160deg, rgba(95, 179, 179, 0.18), rgba(205, 230, 243, 0.4));
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(11, 31, 51, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.amenity-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.amenity-card p {
    color: var(--ink);
    font-size: 1rem;
}

.amenities-footnote {
    font-size: 1rem;
    text-align: center;
    color: var(--ink);
}

.amenities-footnote a {
    color: var(--seafoam);
    font-weight: 600;
}

.amenities-footnote a:hover,
.amenities-footnote a:focus {
    text-decoration: underline;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* =========================
   Family note rotator
   ========================= */
#family-note { 
  position: relative;            /* allows absolute dots inside */
  padding-bottom: 58px;          /* room for dots at bottom-right */
}
#family-note blockquote {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
}
#family-note .signature {
  display: block;                /* puts name on its own line */
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* fade animation */
.note-text, .note-name {
  transition: opacity 400ms ease;
}
.note-fading { opacity: 0; }

/* dots (now anchored bottom-right) */
.note-dots {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: inline-flex;
  gap: 8px;
  z-index: 1;                    /* above the gradient overlay */
}
.note-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c7d2da;
  opacity: 0.8;
  cursor: pointer;
}
.note-dot.is-active { 
  transform: scale(1.25);
}
.note-dot.is-active,
.note-dot:focus-visible {
  background: #5fa8b1;   /* matches your brand teal */
  opacity: 1;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-weight: 500;
}

.feature-list li::before {
    content: '⛵';
    position: absolute;
    left: 0;
    top: 0;
}

.content-card {
    background: linear-gradient(145deg, rgba(11, 31, 51, 0.9), rgba(11, 31, 51, 0.75));
    color: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 18px 40px rgba(11, 31, 51, 0.25);
    position: relative;
    overflow: hidden;
}

.content-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(95, 179, 179, 0.4), transparent 60%);
    z-index: 0;
}

.content-card h3,
.content-card p,
.content-card .signature {
    position: relative;
    z-index: 1;
}

.content-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--sand);
}

.content-card p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.signature {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}

.spotlight {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(95, 179, 179, 0.12), rgba(245, 231, 198, 0.3));
    border-radius: 30px;
    padding: 90px 40px;
    box-shadow: 0 25px 60px rgba(15, 40, 60, 0.08);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.spotlight-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(15, 40, 60, 0.08);
    border: 1px solid rgba(95, 179, 179, 0.25);
}

.spotlight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.spotlight-card p {
    margin-bottom: 20px;
    color: var(--ink);
}

.spotlight-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.spotlight-card ul li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
}

.spotlight-card ul li::before {
    content: '⚓';
    position: absolute;
    left: 0;
    top: 0;
}

.spotlight-cta {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 25px;
}

.faq-section {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.04), rgba(95, 179, 179, 0.18));
    border-radius: 30px;
    padding: 80px 40px;
    box-shadow: 0 20px 45px rgba(15, 40, 60, 0.08);
}

.faq-grid {
    display: grid;
    gap: 18px;
}

.faq-item {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(11, 31, 51, 0.08);
    box-shadow: 0 12px 26px rgba(15, 40, 60, 0.08);
    padding: 0 24px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    padding: 18px 0;
    list-style: none;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

.faq-item p {
    padding: 16px 0 20px;
    color: var(--text);
    font-size: 1rem;
}

.contact-info {
    margin-top: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 16px 35px rgba(15, 40, 60, 0.08);
    border-left: 6px solid var(--seafoam);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--ink);
}

.contact-card a {
    color: var(--seafoam);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--ink);
}

.map-container {
    max-width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 40, 60, 0.08);
    border: 1px solid rgba(95, 179, 179, 0.2);
}

footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 30px 20px;
    margin-top: 100px;
    letter-spacing: 0.5px;
}

footer p {
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero-container {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .section-heading {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 60px 20px 120px;
    }

    .logo-container {
        width: 150px;
        height: 150px;
    }

    .logo-container img {
        max-width: 130px;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
    }

    main {
        margin-top: -40px;
    }

    .section,
    .spotlight,
    .amenities,
    .faq-section {
        padding: 60px 20px;
    }

    .amenities-grid {
        gap: 18px;
    }

    .faq-item {
        padding: 0 18px;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
    }
}
