/* lakeside-style.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body styles */
body {
    background: #0a0f1c;
    color: #fff;
    scroll-behavior: smooth;
}

/* Header with background image */
        header {
            height: auto;
             background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .8)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px 20px 20px;
        }


.header-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
    display: block;
}

/* Headings */
h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    max-width: 700px;
    margin: 10px auto 20px;
    line-height: 1.6;
    color: #ddd;
}

/* Blue button style */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #00bcd4;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Orange button style (for booking/quote) */
.btn-orange {
    background: #f17b2c;
    color: #fff;
}

.btn-orange:hover {
    background: #fff;
    color: #f17b2c;
    border: 1px solid #f17b2c;
}

/* Section styles */
section {
    padding: 80px 20px;
    text-align: center;
}

/* Pricing cards layout */
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Individual card styles */
.card {
    background: #111a2e;
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 0 20px rgba(0, 188, 212, .3);
    transition: .3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 188, 212, .6);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
    color: #00bcd4;
}

.features {
    list-style: none;
    margin-top: 15px;
}

.features li {
    margin: 8px 0;
    color: #ccc;
}

/* Service area section */
.service-area {
    background: #111a2e;
}

/* Call to action section */
.cta {
    background: linear-gradient(45deg, #00bcd4, #006064);
    padding: 80px 20px;
}

/* Footer styles */
footer {
    background: #000;
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: .9rem;
}

/* Book button container */
.book_btn {
    margin-top: 0.5rem;
}

/* Card button styles */
.card .btn,
.card .card-btn {
    margin-top: 18px;
}
