:root {
    --primary: #6bbf8e;
    --primary-dark: #55a878;
    --bg-main: #f6f8fa;
    --bg-light: #ffffff;
    --text-main: #2f2f2f;
    --text-muted: #6b6b6b;
    --radius: 18px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-main);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
}
/*----------------------- main -> hero -----------------------*/

.hero {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 110px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(rgba(255, 255, 255, 0), rgba(255,255,255,0)),
        url("images/hero3.jpg") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-content {
    margin: auto;
    color: #6bbf8e;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeUp 1s ease forwards;
}

.hero p {
    align-self: center;
    padding: 14px 34px;
    background: #2e6e49;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}


/*----------------------- section -> .contents -----------------------*/

.contents > div {
    padding: 110px 20px;
    margin: auto;
    text-align: center;
}

/*----------------------- section -> .contents -> introduction -----------------------*/

.introduction {
    background-color: #6bbf8e;
}

.introduction-content {
    padding: 70px 60px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0px;
    align-items: center;
}

.intro-text {
    text-align: left;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    color: #ffffff;
}

.intro-text p i {
    font-size: 1.5rem;
}

.intro-text ul {
    margin: 15px 0 25px;
    padding-left: 20px;
}

.intro-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #ffffff;
}

.intro-image {
    display: flex;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    max-width: 360px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/*----------------------- section -> .contents -> services -----------------------*/

.services-table {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1rem;
    gap: 20px;
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #55a878;
}


.table-header {
    display: none;
}

.table-row {
    background: var(--bg-light);
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.table-row.show {
    opacity: 1;
    transform: translateY(0);
}

.table-row:nth-child(1).show { transition-delay: 0s; }
.table-row:nth-child(2).show { transition-delay: 0.1s; }
.table-row:nth-child(3).show { transition-delay: 0.2s; }
.table-row:nth-child(4).show { transition-delay: 0.3s; }
.table-row:nth-child(5).show { transition-delay: 0.4s; }

/*----------------------- section -> .contents -> .booking -----------------------*/

.booking {
    background: linear-gradient(135deg, #6bbf8e, #55a878);
    padding: 130px 20px;
    text-align: center;
    color: white;
}

.booking h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.booking-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 60px;
}

.booking-cards {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.booking-card {
    background: white;
    color: var(--text-main);
    padding: 45px 35px;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-soft);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.booking-card i {
    font-size: 2.4rem;
    color: var(--primary);
}

.booking-card h3 {
    font-size: 1.4rem;
}

.booking-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}


/*----------------------- footer -----------------------*/

.footer {
    background: var(--bg-light);
    padding: 60px 20px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.footer-col p {
    margin: 6px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link i {
    font-size: 1.2rem;
    color: var(--primary);
}

.social-link:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    margin-top: 45px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/*----------------------- map -----------------------*/

.map-fullwidth {
    width: 100%;
}

.map-fullwidth iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/*----------------------- media -----------------------*/

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100vw;

        background: #ffffff;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 26px;

        padding: 0 20px;
        max-height: 0;
        overflow: hidden;

        box-shadow: 0 15px 35px rgba(0,0,0,0.08);

        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    nav.active {
        max-height: 320px;
        padding: 35px 20px 45px;
    }

    nav a {
        font-size: 1.25rem;
        font-weight: 600;
    }

    nav a::after {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hamburger {
        display: block;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-image {
        order: -1;
    }

    .introduction-content {
        padding: 50px 30px;
    }

    .intro-text h2 {
        text-align: center;
    }

    .intro-text p {
        text-align: center;
    }

    .table-row {
        grid-template-columns: 1fr;
        row-gap: 10px;
        text-align: left;
    }

    .table-row div:nth-child(2),
    .table-row div:nth-child(3) {
        font-size: 0.95rem;
        color: var(--text-muted);
    }

    .booking-cards {
        grid-template-columns: 1fr;
    }

    .booking {
        padding: 110px 20px;
    }

    .booking h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-link {
        justify-content: center;
    }
}



