
:root {
    --primary-color: #18555b;
    --secondary-color: #f5f7f8;
    --accent-color: #327d81;
    --text-color: #333333;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 600;
    gap: 0.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    /* Use a subtle gradient to add depth to the hero instead of a flat color */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #ffffff;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
}

.btn.primary:hover {
    background-color: #2e6c6f;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section {
    margin-bottom: 3rem;
}

.features ul {
    /* Remove default bullets, we'll use custom checkmarks */
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
}

/* Add check mark icons before each feature item */
.features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Card styling for feature, experience and contact sections */
.features,
.experience,
.contact {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.experience {
    text-align: center;
}

.contact {
    text-align: center;
}

#experience p {
    margin: 0.5rem 0;
}

.contact a {
    color: var(--primary-color);
    text-decoration: underline;
}

footer {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

form .form-group {
    margin-bottom: 1rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    .hero {
        padding: 3rem 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/* Services section styles */
.services {
    margin-top: 2rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    fill: var(--accent-color);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-family: var(--heading-font);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Testimonials section styles */
.testimonials {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Gallery section */
.gallery {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* About section */
.about {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    line-height: 1.5;
}

/* How It Works section */
.how-it-works {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.how-it-works .step {
    text-align: center;
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.how-it-works .step h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.how-it-works .step p {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Service area section */
.service-area {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-area ul {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.service-area li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-area li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.25rem;
    line-height: 1;
}

/* FAQ styles */
.faq {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.faq h1 {
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-size: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    line-height: 1.5;
}

/* Booking iframe container */
.booking-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin: 1.5rem 0;
}

/* Blog page styles */
.page-hero {
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    color: #ffffff;
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.blog-post {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-post h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.blog-post .post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.blog-post p,
.blog-post ul,
.blog-post ol {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post ul,
.blog-post ol {
    padding-left: 1.25rem;
}

.blog-post a {
    color: var(--accent-color);
    text-decoration: underline;
}

.blog-post a:hover {
    color: var(--primary-color);
}

/* Promotional banner styles */
.promo-banner {
    background-color: var(--accent-color);
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.promo-banner a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.promo-banner a:hover {
    color: #e1f2f3;
}
