body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e5f7e5;
    color: #333;
    background-image: url('forest-texture.webp'); /* Add a forest-like texture */
    background-size: cover;
}

header {
    background-color: rgba(0, 100, 0, 0.8); /* Dark green with transparency */
    color: white;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Adds depth */
}

.container {
    max-width: 600px; /* Add this line */
    width: 80%;
    margin: auto;
    overflow: hidden;
}


#showcase {
    background: url('campsite.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
}

#showcase:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 50, 0, 0.3); /* Adds a greenish overlay */
    backdrop-filter: blur(2px); /* Gives a peeking-through-bushes effect */
}

#showcase h1, #showcase p {
    position: relative;
    z-index: 1;
}

#showcase h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

#showcase p {
    font-size: 20px;
}

#intro {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9); /* Slight transparency for a softer feel */
    text-align: center;
    margin-top: -20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Adds depth */
    border-radius: 10px;
}

#intro h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2e7d32; /* Dark green color */
}

#intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #4e4e4e; /* Softer gray for better readability */
}

footer {
    background-color: #2e7d32; /* Dark green */
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); /* Adds depth */
}

/** order **/
#order {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9); /* Slight transparency for a softer feel */
    text-align: center;
    margin-top: 40px;
    text-shadow: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Adds depth */
    border-radius: 10px;
}

/** end of order **/

/** Netherland **/
#why-estonia {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9); /* Slight transparency for a softer feel */
    margin-top: 40px;
    text-shadow: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Adds depth */
    border-radius: 10px;
}

/** end of Netherland **/


/** offer **/
#offer {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9); /* Slight transparency for a softer feel */
    text-align: center;
    margin-top: 40px;
    text-shadow: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Adds depth */
    border-radius: 10px;
}

#offer h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2e7d32; /* Dark green color */
}

#offer p {
    font-size: 18px;
    line-height: 1.6;
    color: #4e4e4e; /* Softer gray for better readability */
}

.book-now-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    background: #2e7d32;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.book-now-btn:hover {
    background: #3c8a40;
}

/** end of offer **/