﻿:root {
    --accent-orange: #e67e22;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    background-color: #e0e0e0;
}

/* Topbar */
.topbar {
    background: white;
    border-bottom: 1px solid #e6e6e6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px; /* explicit height so menu can align beneath */
}

.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D3D3FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* logo image replaces the circle */
.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
}

.site-title, .site-title a {
    font-size: 1rem;
    font-weight: 600;
    color: #253443;
    text-decoration: none;
}

.hamburger {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #253443;
    border-radius: 2px;
}

/* Menu Overlay - slide down from topbar */
.menu-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px; /* sits below the fixed topbar */
    height: 0; /* collapsed by default */
    overflow: hidden;
    background: rgba(0,0,0,0); /* transparent when closed */
    pointer-events: none;
    z-index: 1100;
    transition: height 300ms ease, background-color 300ms ease;
}

.menu-overlay.open {
    height: 30vh; /* visible panel height - full width but not full height */
    background: rgba(0,0,0,0.4);
    pointer-events: auto;
}

.menu-content {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
}

.menu-overlay.open .menu-content {
    transform: translateY(0);
    opacity: 1;
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.menu-links a {
    color: #253443;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.menu-footer {
    padding-top: 20px;
}

.menu-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
header {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('../Images/FacingCastle.JPG') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    padding-top: 120px; /* offset for fixed topbar */
}

header.themeParks {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('../Images/Universal.jpg') right/cover no-repeat;
}

header.cruises {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('../Images/CruiseSunset.jpg') right/cover no-repeat;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--accent-orange);
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 30px;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

    .btn-primary:hover {
        transform: scale(1.05);
    }

/* Services Grid */
.section-container {
    margin: 50px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

.card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    text-align: center;
}

    .card-content h3 {
        margin-bottom: 15px;
        color: var(--dark-bg);
        text-transform: uppercase;
    }

/* Stats Section */
.stats-bar {
    background: var(--dark-bg);
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    text-align: center;
}

.stat-item h2 {
    color: var(--accent-orange);
    font-size: 2.5rem;
}

/* Testimonials & About Me (targeted styles) */
/* Testimonials: white section, two grey cards side-by-side on desktop with stars above */
.testimonials {
    background: #fff;
    padding: 48px 20px;
    text-align: center;
    color: #253443;
}

.testimonials h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.testimonial-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 28px 26px;
    border-radius: 10px;
    border: 1px solid #ececec;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    text-align: left;
}

.testimonial-card .stars {
    text-align: center;
    color: var(--accent-orange);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-card .author {
    text-align: right;
    color: #4b5563;
    font-weight: 600;
}

@media (max-width: 900px) {
    .testimonial-cards { grid-template-columns: 1fr; }
}

/* About Me: light grey background, rounded image, only first paragraph shown in markup */
#about-me {
    padding: 0 20px;
}

#about-me .about-panel {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

#about-me .about-image {
    max-width: 380px;
}

#about-me .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* rounded corners */
}

#about-me .about-content {
    text-align: left;
    color: #253443;
}

#about-me .learn-link {
    display: inline-block;
    margin-top: 12px;
    color: #5b40b6; /* purple link similar to screenshot */
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    #about-me .about-panel { flex-direction: column; text-align: center; }
    #about-me .about-image { width: 80%; max-width: 320px; }
    #about-me .about-content { text-align: center; }
}

/* Testimonials and About Me - end targeted styles */

/* Testimonials (legacy) - keep a simple fallback */
.testimonial-item {
    margin: 12px auto;
    max-width: 700px;
}

/* Testimonials end */

/* Testimonials original area ended */

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer a {
    color: #fff !important;
}

footer .menu-cta {
    margin-bottom: 15px;
}

/* Contact form styles */
.contact-form {
    max-width: 720px;
    margin: 16px auto 0;
    padding: 10px 12px;
}

.form-row {
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 14px 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main); /* ensure inputs and textarea use same site font */
    line-height: 1.4;
}

.contact-lines {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #fff;
}

@media (max-width: 480px) {
    .form-input {
        padding: 16px 12px;
        font-size: 1.05rem;
    }

    .contact-form {
        max-width: 92%;
    }

    .contact-lines {
        font-size: 0.85rem;
        color: #fff;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
    }
}

/* FAQ styles */
.faq-section .section-header {
    text-align: center;
    margin-bottom: 24px;
}

.faq-section .pill {
    display: inline-block;
    background: #f4f4f4;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    color: #111; /* explicit color for safari */
    -webkit-tap-highlight-color: transparent;
}

.accordion-header span {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important; /* Safari form control fix */
}

/* Use :focus-visible for an accessible focus ring only when needed; remove the default focus outline
   which caused the blue line appearing under the header when a panel opened on iOS. */
.accordion-header:focus {
    outline: none;
    box-shadow: none;
}

.accordion-header:focus-visible {
    outline: 2px solid rgba(38, 132, 255, 0.25);
    outline-offset: 2px;
}

/* Animated panel: use max-height transition + overflow hidden for smooth open/close */
.accordion-panel {
    padding: 0 20px;
    color: #555;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease, padding 220ms ease;
}

/* when the item has the "open" class, allow rotation and spacing */
.accordion-item.open .accordion-header .chev {
    transform: rotate(180deg);
}

.accordion-item.open .accordion-panel {
    /* padding-bottom added when open; top padding is kept at 0 to avoid sudden jump */
    padding-bottom: 18px;
}

.accordion-item button span {
    color: black !important;
}

.faq-more {
    text-align: center;
    margin-top: 18px;
}

.more-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 600px) {
    .accordion-header {
        padding: 14px 16px;
    }
}

/* ensure the about section stacks but allows inline wrapping */
#about-me .grid-row {
    display: block;
}

    /* float the image so text wraps around it with spacing */
    #about-me .grid-row img {
        float: left;
        width: 40%;
        max-width: 180px;
        height: auto;
        margin: 0 25px 12px 0;
        border-radius: 6px;
    }

    /* clear floats after the text block to prevent layout issues */
    #about-me .grid-row::after {
        content: "";
        display: table;
        clear: both;
    }

/* Wrap text around the about-me image on smaller screens */
@media (max-width: 1000px) {
}

/* Why Us comparison styles */
.why-us-section .section-header {
    text-align: center;
    margin-bottom: 18px;
}

.comparison-grid {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.grid-header, .feature-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    align-items: center;
    border-bottom: 1px solid #f0e6e1;
}

.grid-header {
    background: #D3D3FF;
    font-weight: 700;
}

.feature-col {
    padding: 14px 18px;
}

.option-col {
    padding: 12px 10px;
    text-align: center;
}

.icon.tick {
    display: inline-block;
    background: #e6f7f0;
    color: #0ca678;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-weight: 700;
}

.icon.cross {
    display: inline-block;
    background: #fff5f5;
    color: #e12d39;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .grid-header, .feature-row {
        grid-template-columns: 1fr 80px 80px;
    }
}

@media (max-width: 480px) {
    .grid-header, .feature-row {
        grid-template-columns: 1fr 72px 72px;
    }
    .feature-col { padding-left: 12px; }
}

/* Lavender benefits section */
.lavender-section {
    background: linear-gradient(180deg, #f6f3fb 0%, #efeaf8 100%);
    padding: 28px 0;
}

.lavender-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: center;
}

/* Use a consistent two-column grid inside each benefit item so icon and text align reliably */
.benefit-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: start; /* align heading to the top of the text block */
}

.benefit-icon {
    color: #5b40b6; /* deep lavender */
    font-size: 30px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.benefit-copy h4 {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    color: #2b2b3a;
}

.benefit-copy p {
    margin: 0;
    color: #4b4b57;
    font-size: 0.95rem;
    line-height: 1.4;
}

.rating-small i { color: #f59e0b; margin-right: 4px; }

@media (max-width: 900px) {
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .benefit-grid { grid-template-columns: 1fr; }
}

/* Notification banner (iPhone style) */
.notify-banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    top: 12px;
    background: rgba(255,255,255,0.95);
    color: #111;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    z-index: 2000;
    font-weight: 600;
    transition: transform 360ms cubic-bezier(.2,.9,.2,1), opacity 260ms ease;
    opacity: 0;
    pointer-events: none;
    max-width: 92%;
    text-align: center;
}

.notify-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notify-banner.success { border: 1px solid rgba(36,122,54,0.12); }
.notify-banner.error { border: 1px solid rgba(200,40,40,0.14); }

/* small responsive tweak */
@media (max-width: 480px) {
    .notify-banner { font-size: 0.95rem; padding: 10px 14px; }
}

/* CTA banner just above FAQ */
.cta-banner {
    background: linear-gradient(90deg, #fff7ee, #fff1e6);
    padding: 28px 15px;
    border-radius: 8px;
    margin: 24px 0;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center; /* center the CTA content horizontally */
}

/* keep existing image rule for when an actual image is used */
.cta-image img {
    width: 120px;
    height: auto;
}

/* New styling for Font Awesome icon used in the CTA — make it larger and centered */
.cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ensure the copy stays readable and centered next to the icon */
/*.cta-copy {
    flex: 1 1 480px;
    max-width: 820px;
}*/

.cta-image .fa {
    font-size: 48px; /* main icon size on desktop */
    color: var(--accent-orange);
    line-height: 1;
    display: inline-block;
}

.cta-copy h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: #25222a;
}

.cta-btn {
    background: linear-gradient(#f59e2b, #e67e22);
    padding: 12px 22px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
}

@media (max-width: 900px) {
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-image img { width: 80px; }
    .cta-image { width: 80px; height: 80px; }
    .cta-image .fa { font-size: 32px; }
}

/* Cruises services hero and features */
.cruise-services {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.cruise-hero-image img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin: 0 auto;
}

.cruise-feature-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 8px 20px;
}

.feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start; /* align heading to the top of the text block */
    text-align: left;
}

.feature-icon {
    font-size: 28px;
    color: var(--accent-orange);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-copy h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
}

.feature-copy p {
    margin: 0;
    color: #555;
}

@media (min-width: 900px) {
    .cruise-services { flex-direction: row; align-items: flex-start; text-align: left; gap: 40px; }
    .cruise-hero-image { flex: 0 0 300px; }
    .cruise-hero-image img { width: 300px; height: 300px; }
    .cruise-feature-list { flex: 1 1 auto; padding: 0; }
}

.how-it-works-container {
    background-color: black;
}

.how-it-works {
    padding-top: 20px;
    max-width: 900px;
    margin: 0 auto 12px auto;
    text-align: center;
    color: #fff;
}

.how-it-works h3 {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.hiw-steps {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 180px;
}

/* larger orange circular icon background with bigger white icon centered */
.hiw-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px; /* bigger icon */
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.hiw-text {
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 800px) {
    .hiw-step { width: 140px; }
    .how-it-works { margin: 18px 12px; }
    .hiw-icon { width: 72px; height: 72px; font-size: 28px; }
}

#services .section-header {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}