
html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background-color: var(--light);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
}

:root {
    --primary: #008E97;   /* aqua */
    --primary-dark: #005F66;

    --accent: #FC4C02;    /* orange */
    --accent-hover: #E64500;

    --dark: #0f172a;      /* keep your current header/footer */
    --dark-alt: #1e293b;

    --light: #f4f6f8;     /* your current background */
    --white: #ffffff;

    --text-main: #1f2933;
    --text-muted: #64748b;
 
    --border: #e2e8f0;
}

header h1 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 1px;
}

header h2 {
    margin-top: 10px;
    font-weight: normal;
    font-size: 18px;
    color: #cbd5e1;
}

.section {
    padding: 60px 10%;
    text-align: center;
    flex: 1;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    box-sizing: border-box;
    flex: 1 1 280px;
    max-width: 400px;
    min-width: min(100%, 250px);
}

.card h3 {
    margin-top: 0;
}

.coming-soon {
    font-size: 16px;
    margin-top: 40px;
    color: #64748b;
}

footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 20px;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.page-header {
    text-align: center;
    padding-top:20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 1% 0%;
}

.about-content {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
}

.about-content p{
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.booking-container {
    padding: 40px;
}

header {
    background-color: var(--dark);
    color: var(--white);
    padding: 20px 10%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    color: white;
}

.logo span {
    font-size: 13px;
    color: var(--border);
}

.logolargebox {
    align-items: center;

}
.logolarge {
    background-color: #0f172a;
    max-width: 15%;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

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

a:hover {
    text-decoration: underline;
}

/* Subtle underline animation */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: var(--primary-dark);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {

    .nav-cta {
        width: auto;
        padding: 10px 20px;
    }

    header {
        padding: 20px 5%;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo span {
        display: block;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #0f172a;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
    }

    nav a {
        padding: 10px 0;
        font-size: 18px;
    }

    nav.active {
        display: flex;
    }

} 

.logoimage {
    display: block;
    max-height: 48px;
    width: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: logoAppear 1.5s ease forwards;
    padding: 2%;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1.5);
    }
}

.homepage-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    box-sizing: border-box;
    max-width: 600px;
    margin: auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 5%;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}