/* ============================================================
   Experience Sydney Harbour - Custom CSS
   Central styling for event landing pages built in Beaver Builder
   Edit this file to change styling across all event pages
   ============================================================ */

/* ---------- Brand Colors ----------
   Navy:    #0a1929
   Teal:    #25adb9
   Teal LT: #e8f7f8
   Light:   #f8f9fa
   Text:    #333333
   Muted:   #666666
   Border:  #eeeeee
---------------------------------- */

/* ============================================================
   HERO SECTION
   Classes: .esh-hero-text, .esh-hero-sub, .esh-hero-cta
   ============================================================ */
.esh-hero-sub {
    font-size: 20px;
    color: #cbd5e1;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 35px;
}
.esh-hero-cta {
    text-align: center;
}
.esh-hero-cta a {
    display: inline-block;
    background: #25adb9;
    color: #0a1929;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.esh-hero-cta a:hover {
    background: #1d9aa5;
    color: #fff;
}

/* ============================================================
   TRUST STRIP (icons under hero)
   Classes: .bucks-trust-strip, .bucks-trust-item, .bucks-trust-icon,
            .bucks-trust-label, .bucks-trust-divider
   Module type: HTML (SVG icons needed)
   ============================================================ */
.bucks-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 28px 20px;
}
.bucks-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 110px;
    max-width: 150px;
    padding: 10px 6px;
}
.bucks-trust-icon {
    width: 44px;
    height: 44px;
    color: #25adb9;
    margin-bottom: 8px;
}
.bucks-trust-icon svg {
    width: 100%;
    height: 100%;
}
.bucks-trust-label {
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.3;
}
.bucks-trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .bucks-trust-divider { display: none; }
    .bucks-trust-item { min-width: 45%; max-width: 50%; padding: 8px 4px; }
}
@media (max-width: 480px) {
    .bucks-trust-item { min-width: 45%; max-width: 50%; }
    .bucks-trust-label { font-size: 12px; }
    .bucks-trust-icon { width: 38px; height: 38px; }
}

/* ============================================================
   SECTION HEADINGS
   Classes: .esh-section-heading, .esh-section-sub
   Apply to BB Heading modules via Class field
   ============================================================ */
.esh-section-heading {
    margin-bottom: 16px;
}
.esh-section-sub {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}
.esh-dark-section .esh-section-sub {
    color: #cbd5e1;
}

/* ============================================================
   INTRO TEXT
   Classes: .esh-intro-text, .esh-intro-cta
   ============================================================ */
.esh-intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}
.esh-intro-cta {
    text-align: center;
    margin-top: 20px;
}
.esh-intro-cta a {
    display: inline-block;
    background: #25adb9;
    color: #0a1929;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}
.esh-intro-cta a:hover {
    background: #1d9aa5;
    color: #fff;
}

/* ============================================================
   FEATURE CARDS (What's Included)
   Classes: .esh-feature-grid, .esh-feature-card, .esh-feature-icon,
            .esh-feature-card h3, .esh-feature-card p
   ============================================================ */
.esh-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.esh-feature-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.esh-feature-card h3 {
    color: #1a3a5c;
    margin-bottom: 10px;
    font-size: 17px;
}
.esh-feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================================
   BOAT CARDS (Boats Available section)
   Classes: .esh-boat-layout, .esh-boat-img-col, .esh-boat-info-col,
            .esh-boat-specs-box, .esh-boat-specs, .esh-boat-cta
   Module type: HTML (complex layout with specs table)
   ============================================================ */
.esh-boat-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}
.esh-boat-img-col {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}
.esh-boat-img-col img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: block;
}
.esh-boat-img-col img + img {
    margin-top: 16px;
}
.esh-boat-info-col {
    flex: 1;
    min-width: 280px;
}
.esh-boat-specs-box {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.esh-boat-specs-box h3 {
    color: #0a1929;
    margin-bottom: 16px;
    font-size: 22px;
}
.esh-boat-specs {
    border-collapse: collapse;
    width: 100%;
}
.esh-boat-specs td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}
.esh-boat-specs td:last-child {
    font-weight: 700;
    color: #0a1929;
    text-align: right;
}
.esh-boat-specs tr:last-child td {
    border-bottom: none;
}
.esh-boat-specs .yes {
    color: #27ae60;
}
.esh-boat-cta {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.esh-boat-cta a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.esh-boat-cta a.esh-boat-cta-primary {
    background: #25adb9;
    color: #fff;
}
.esh-boat-cta a.esh-boat-cta-primary:hover {
    background: #1d9aa5;
}
.esh-boat-cta a.esh-boat-cta-secondary {
    background: transparent;
    color: #25adb9;
}

/* ============================================================
   CAROUSEL (Other Boats)
   Classes: .bucks-carousel-wrap, .bucks-carousel, .bucks-carousel-card,
            .bucks-carousel-img, .bucks-carousel-body, .bucks-carousel-name,
            .bucks-carousel-meta, .bucks-carousel-price, .bucks-carousel-link,
            .bucks-carousel-nav, .bucks-carousel-btn
   Module type: HTML (JS scroll needed)
   ============================================================ */
.bucks-carousel-wrap { margin-top: 30px; position: relative; }
.bucks-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; scrollbar-width: none; -ms-overflow-style: none; }
.bucks-carousel::-webkit-scrollbar { display: none; }
.bucks-carousel-card { flex: 0 0 320px; scroll-snap-align: start; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); text-decoration: none; display: block; background: #fff; transition: transform 0.2s, box-shadow 0.2s; }
.bucks-carousel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.bucks-carousel-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.bucks-carousel-body { padding: 20px; }
.bucks-carousel-name { font-size: 18px; font-weight: 700; color: #0a1929; margin: 0 0 8px; }
.bucks-carousel-meta { font-size: 14px; color: #666; margin: 0 0 10px; }
.bucks-carousel-meta span { margin-right: 12px; }
.bucks-carousel-price { font-size: 16px; color: #25adb9; font-weight: 700; margin-bottom: 12px; }
.bucks-carousel-link { display: inline-block; color: #25adb9; font-size: 14px; font-weight: 600; text-decoration: none; }
.bucks-carousel-card:hover .bucks-carousel-link { text-decoration: underline; }
.bucks-carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.bucks-carousel-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #0a1929; color: #fff; border: none; cursor: pointer; font-size: 18px; transition: background 0.2s; }
.bucks-carousel-btn:hover { background: #25adb9; }

/* ============================================================
   CHARTER OPTIONS (Tabbed section)
   Classes: .bucks-options-wrap, .bucks-options-tabs, .bucks-options-tab,
            .bucks-options-body, .bucks-options-item, .bucks-options-item .icon,
            .bucks-options-item ul li::before
   Module type: HTML (JS tabs needed)
   ============================================================ */
.bucks-options-wrap { max-width: 900px; margin: 30px auto 0; }
.bucks-options-tabs { display: flex; flex-wrap: wrap; gap: 0; border-radius: 10px 10px 0 0; overflow: hidden; }
.bucks-options-tab { flex: 1; min-width: 140px; padding: 16px 20px; text-align: center; font-weight: 600; font-size: 15px; color: #666; background: #f0f1f3; cursor: default; border-bottom: 3px solid transparent; transition: all 0.2s; }
.bucks-options-tab.active { color: #0a1929; background: #fff; border-bottom: 3px solid #25adb9; }
.bucks-options-body { background: #fff; border-radius: 0 0 10px 10px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.bucks-options-item { display: none; }
.bucks-options-item:first-child { display: block; }
.bucks-options-item h3 { color: #1a3a5c; margin-bottom: 12px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
.bucks-options-item .icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: #e8f7f8; color: #25adb9; font-size: 18px; }
.bucks-options-item p { color: #555; line-height: 1.8; font-size: 16px; }
.bucks-options-item ul { list-style: none; padding: 0; margin: 12px 0; }
.bucks-options-item ul li { padding: 6px 0; color: #555; font-size: 15px; padding-left: 24px; position: relative; }
.bucks-options-item ul li::before { content: "\2713"; position: absolute; left: 0; color: #25adb9; font-weight: 700; }

/* ============================================================
   FOOD & DRINKS
   Classes: .bucks-food-wrap, .bucks-food-left, .bucks-food-options,
            .bucks-food-grid, .bucks-food-card, .bucks-food-icon,
            .bucks-food-byo, .bucks-food-byo-icon, .bucks-food-link
   ============================================================ */
.bucks-food-wrap { display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; margin-top: 25px; }
.bucks-food-left { flex: 1; min-width: 280px; max-width: 420px; }
.bucks-food-left img { width: 100%; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); display: block; margin-bottom: 16px; }
.bucks-food-options { flex: 2; min-width: 300px; }
.bucks-food-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.bucks-food-card { background: #fff; padding: 22px; border-radius: 10px; border: 1px solid #eee; display: flex; align-items: flex-start; gap: 14px; }
.bucks-food-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #e8f7f8; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.bucks-food-card h3 { margin: 0 0 6px; font-size: 16px; color: #0a1929; font-weight: 700; }
.bucks-food-card p { margin: 0; font-size: 14px; color: #666; line-height: 1.5; }
.bucks-food-byo { background: #f0f7f8; border: 1px solid #c8e8eb; border-radius: 10px; padding: 20px 24px; margin-bottom: 16px; display: flex; align-items: center; gap: 16px; }
.bucks-food-byo-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: #25adb9; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.bucks-food-byo-text h3 { margin: 0 0 4px; font-size: 17px; color: #0a1929; }
.bucks-food-byo-text p { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }
.bucks-food-link { margin-top: 8px; }
.bucks-food-link a { display: inline-block; background: #25adb9; color: #fff; padding: 12px 28px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 15px; }
.bucks-food-link a:hover { background: #1d9aa5; }
@media (max-width: 640px) { .bucks-food-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ ACCORDION
   Classes: .bucks-faq, .bucks-faq details, .bucks-faq summary,
            .bucks-faq .faq-answer
   Module type: HTML (details/summary accordion)
   ============================================================ */
.bucks-faq details { border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.bucks-faq summary { padding: 18px 22px; font-weight: 600; color: #0a1929; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; background: #f8f9fa; transition: background 0.2s; }
.bucks-faq summary:hover { background: #f0f1f3; }
.bucks-faq summary::-webkit-details-marker { display: none; }
.bucks-faq summary::after { content: "+"; font-size: 22px; color: #25adb9; font-weight: 300; }
.bucks-faq details[open] summary::after { content: "\2212"; }
.bucks-faq .faq-answer { padding: 16px 22px 20px; color: #555; line-height: 1.7; border-top: 1px solid #e0e0e0; }

/* ============================================================
   FINAL CTA SECTION
   Classes: .esh-cta-text, .esh-cta-button
   ============================================================ */
.esh-cta-text {
    font-size: 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.7;
}
.esh-cta-button {
    text-align: center;
}
.esh-cta-button a {
    display: inline-block;
    background: #25adb9;
    color: #0a1929;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
}
.esh-cta-button a:hover {
    background: #1d9aa5;
    color: #fff;
}

/* ============================================================
   RELATED OCCASIONS GRID (More Ways to Celebrate)
   Classes: .esh-related-grid, .esh-related-card
   Module type: HTML (gradient cards with links)
   ============================================================ */
.esh-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.esh-related-card {
    display: block;
    padding: 28px 24px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.esh-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.esh-related-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #fff;
}
.esh-related-card p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.esh-related-card:nth-child(odd) {
    background: linear-gradient(135deg, #0a1929, #1a3a5c);
}
.esh-related-card:nth-child(even) {
    background: linear-gradient(135deg, #1a3a5c, #25adb9);
}

/* ============================================================
   WHY BOOK SECTION
   Classes: .esh-why-layout, .esh-why-img, .esh-why-points,
            .esh-why-checklist, .esh-why-check-item, .esh-why-check-icon
   ============================================================ */
.esh-why-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.esh-why-points { margin: 0; padding: 0; }
.esh-why-checklist { margin: 0; padding: 0; list-style: none; }
.esh-why-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.esh-why-check-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25adb9;
    color: #0a1929;
    font-weight: 700;
    font-size: 14px;
}
.esh-why-check-text {
    margin: 0;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
}
.esh-why-check-text strong {
    color: #fff;
}
