/* :root {
    --primary: #213D5A;
    --primary-dark: #0F2740;
    --accent: #C9A24D;
    --bg-start: #E7FBFF;
    --bg-end: #FFF7E6;
    --text-dark: #0F2740;
    --text-muted: #4A5D73;
    --white: #ffffff;
    --radius: 14px;
} */

 :root {
    --primary: #0B8696;
    --primary-dark: #045661;
    --accent: #C9A24D;
    --bg-start: #E7FBFF;
    --bg-end: #FFF7E6;
    --text-dark: #0B8696;
    --text-muted: #4A5D73;
    --white: #ffffff;
    --radius: 14px;
} 

/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, sans-serif;
    background: linear-gradient(to bottom, var(--bg-start), var(--bg-end));
    color: var(--text-dark);
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    left: -999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: var(--primary-dark);
    color: white;
    padding: 0.75rem 1rem;
}

/* HEADER */
.site-header {
    padding: 32px 64px;
}

.nav {
    max-width: 1200px;
    margin: auto;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    font-weight: 500;
    color: var(--primary-dark);
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    width: 100%;
}

/* HERO */
.hero {
    padding: 96px 16px 80px;
    text-align: center;
}

.hero-content {
    max-width: 760px;
    margin: auto;
}

.hero-logo {
    width: 280px;
    max-width: 85%;
    margin-bottom: 28px;
}

.hero-title {
    font-size: 56px;
    letter-spacing: 0.18em;
    margin: 0 0 18px;
    line-height: 1.1;
    font-family: 'Merriweather', serif;
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 44px;
}

/* BUTTONS */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    min-width: 180px;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--primary);
    color: white;
}

/* Hamburger Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 1001;
    width: 36px;
    height: 30px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-10px);
}

.hamburger::after {
    transform: translateY(6px);
}

/* ----------------------------------
   RESPONSIVE BREAKPOINTS
---------------------------------- */

/* TABLETS */
@media (max-width: 1024px) {
    .site-header {
        padding: 24px 32px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 0.14em;
    }
}

/* MOBILE */
@media (max-width: 640px) {
    .nav-list {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 64px;
    }

    .hero-logo {
        width: 220px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 0.12em;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .btn {
        width: 100%;
        /* max-width: 260px; */
    }
    .nav-list {
        display: none; /* hide menu initially */
        flex-direction: column;
        gap: 20px;
        background: var(--white);
        opacity: 0.7;
        position: absolute;
        top: 64px; /* below header */
        right: 16px;
        padding: 16px 24px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        width: 200px;
    }

    .nav-list.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
    text-align: center;
    padding: 24px 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: transparent;
}

.site-footer p {
    margin: 0;
}

.footer-credit {
    color: var(--primary-dark);
    font-weight: 500;
}

/* Responsive tweak */
@media (max-width: 640px) {
    .site-footer {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}



/* ==================================================
   BOOKING PAGE – APPEND TO MAIN STYLES
================================================== */

.booking-section {
    padding: 96px 16px;
}

.booking-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    padding: 48px 40px;
    box-shadow: 0 20px 50px rgba(15, 39, 64, 0.08);
}

/* Header */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h1 {
    margin-bottom: 12px;
}

.booking-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Form */
.booking-form {
    display: grid;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.booking-form label {
    margin-bottom: 6px;
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cfd6dd;
    font-size: 1rem;
    color: var(--primary);
}

.booking-form input:focus-visible,
.booking-form select:focus-visible {
    outline: 3px solid var(--accent);
    border-color: var(--accent);
}

/* Button alignment */
.booking-form .btn {
    margin-top: 16px;
    align-self: center;
    min-width: 240px;
}

/* Booking message */
#booking-message {
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
}
.form-logo{
    width:30%;
    height: 30%;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-container {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 64px 12px;
    }

    .booking-container {
        padding: 32px 20px;
    }

    .booking-form .btn {
        width: 100%;
    }
}


/* ==================================================
   SERVICES PAGE – APPEND TO MAIN STYLES
================================================== */

.services-section {
    padding: 96px 16px;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.services-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.services-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

/* Card */
.service-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 39, 64, 0.08);
}

.service-card h2 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.service-card ul {
    padding-left: 18px;
    margin: 0;
}

.service-card li {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Actions */
.services-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 64px 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-actions .btn {
        width: 100%;
        /* max-width: 280px; */
    }
}

/* ==================================================
   CONTACT PAGE STYLES
================================================== */

.contact-section {
    padding: 96px 16px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 39, 64, 0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Form */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--primary-dark);
}

#contact-message {
    margin-top: 12px;
    font-weight: 600;
}

/* Visually hidden text for screen readers */
.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 64px 12px;
    }

    .contact-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 24px;
    }
}


/* ==================================================
   ABOUT US PAGE STYLES
================================================== */

.about-section {
    padding: 96px 16px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-header {
    margin-bottom: 64px;
}

.about-header h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-intro {
    color: var(--primary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* TEAM PROFILES */
.team-profiles {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.team-member {
    max-width: 220px;
    text-align: center;
}

.team-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto 16px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team member names & titles */
.team-member h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ACTION BUTTONS */
.about-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-actions .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.about-actions .btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.about-actions .btn-primary:hover {
    background-color: var(--primary-dark);
}

.about-actions .btn-secondary {
    background-color: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.about-actions .btn-secondary:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .team-profiles {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .team-profiles {
        flex-direction: column;
        align-items: center;
    }
}


