/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

/* Hero section */
.hero {
    background-image: url('https://www.dozencousincove.com/photos/dozenco_lr.jpg'); /* Replace with your actual hero image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Content section */
.content-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.content-section h2 {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 30px;
    text-align: center;
}

.content-section h3 {
    font-size: 1.8rem;
    color: #FF7F50;
    margin-top: 30px;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section .highlight {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FF7F50;
    margin-bottom: 15px;
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Carousel section */
.carousel-section {
    padding: 50px 20px 70px;
    background-color: #f0f0f0;
}

.carousel-section h2 {
    font-size: 2rem;
    color: #FF7F50;
    margin-bottom: 30px;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: 60vh; /* Adjust this value as needed */
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    background-color: #008080;
}

/* Lazy loading placeholder */
.lazy {
    background-color: #f6f6f6;
}

/* Booking section */
.booking-section {
    padding: 50px 20px;
    text-align: center;
}

.booking-section h2 {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 20px;
}

.booking-section a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #008080;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.booking-section a:hover {
    background-color: #005f5f;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #FF7F50;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .content-section {
        padding: 15px;
    }

    .content-section h2 {
        font-size: 2.2rem;
    }

    .content-section h3 {
        font-size: 1.6rem;
    }

    .content-section p,
    .content-section li {
        font-size: 1.1rem;
    }

    .content-section .highlight {
        font-size: 1.3rem;
    }

    .carousel-item img {
        height: 40vh; /* Adjust for mobile */
    }
}