/* Starter Image Section */
.starter-image {
    position: relative;
    background-image: url('../img/Home-Image.webp'); /* Ensure you have the correct background image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem; /* Add padding to fit content better */
    overflow: hidden;
}

.starter-image::before {
    content: "";
    position: absolute;
    background-image: inherit;
    background-size: cover; /* Ensure the image covers the background properly */
    background-position: center;
    z-index: 1;
    top: -15%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.starter-text {
    color: #212529;
    position: relative;
    top: 15%;
    z-index: 2;
}

.wave0 {
    position: absolute;
    bottom: -72px;
    left: 0;
    width: 100%;
    height: auto;
    background: repeat-x;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    z-index: 3; /* Ensure wave is above the blur */
}

/* Blog Section */
.blog-post img {
    margin-bottom: 1rem;
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.blog-post h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-post p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.card {
    background-color: #f6dea4;
    color: #000;
    border-radius: 25px;
}

.blog-img-center img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/* Hover Effect for Images */
.hover-enlarge {
    transition: transform 0.3s ease;
}

.hover-enlarge:hover {
    transform: scale(1.03);
}

/* Fullscreen Modal Image */
.modal-dialog {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.modal-content {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.modal-body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalImage {
    max-width: 80%;
    max-height: 80%;
    border-radius: 15px;
}

/* Footer Styling */
footer {
    background-color: #b89068;
    color: #000;
}

.social-icon-link {
    text-decoration: none;
}

.rounded-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
    width: 60px;
    height: 60px;
    background-color: #fff;
}

.rounded-circle:hover {
    transform: scale(1.1);
}

.social-icon {
    font-size: 1.5rem;
    color: #333;
}

/* Waves */
.wave0, #wave1 {
    margin-bottom: -5px;
}

/* Responsive Styles */
@media (max-width: 850px) {
    .starter-image {
        height: 70vh;
        padding: 2rem 1rem;
    }

    .starter-text h1 {
        font-size: 2rem;
    }

    .starter-text p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .blog-post h3 {
        font-size: 1.5rem;
    }

    .blog-post p {
        font-size: 1rem;
    }

    .wave0 {
        bottom: -36px; /* Adjust the position for smaller screens */
    }
}
