body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1f1f1f;
    color: white;
}

header {
    background-color: #556B2F;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: "Atma", cursive;
    margin: 0;
    font-size: 28px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: bold;
}

nav a:hover {
    color: #ff4da6;
}

.container {
    padding: 30px;
}



.hero h2 {
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding: 30px;
}
 

.card {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    min-height: 260px;
    transition: 0.25s ease;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

button {
    background: #556B2F;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    cursor: pointer;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}.hero {
    text-align: center;
    padding: 20px;
}

.hero-img {
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}header {
    margin-bottom: 25px;
}

.hero {
    text-align: center;
    padding: 20px;
    margin-top: 15px;
}

.hero-img {
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}.service-card {
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform .3s ease;
}

.service-card:hover {
    transform: scale(1.03);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h3 {
    color: white;
    font-size: 30px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px black;
}

.overlay p {
    color: white;
    font-size: 17px;
    line-height: 1.5;
    text-shadow: 1px 1px 5px black;
}.reviews {
    text-align: center;
    padding: 60px 20px;
}

.reviews h2 {
    margin-bottom: 10px;
}

.stars {
    font-size: 40px;
    color: gold;
    margin-bottom: 15px;
}

.review-intro {
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    opacity: 0.9;
}

.review-card {
    background: #2a2a2a;
    padding: 20px;
    margin: 15px auto;
    max-width: 600px;
    border-radius: 8px;
}

.review-card p {
    font-style: italic;
    margin: 0;
}

.review-card span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}

.review-button {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #556B2F;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.review-button:hover {
    background: #6f8f3a;
}nav a[href="#reviews"] {
    background: #556B2F;
    padding: 6px 12px;
    border-radius: 4px;
    margin-left: 10px;
    transition: 0.3s;
}

nav a[href="#reviews"]:hover {
    background: #6f8f3a;
    color: white;
}.star-rating {
    font-size: 40px;
    color: gold;
    text-align: center;
    margin: 20px 0;
    cursor: pointer;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.review-form input,
.review-form textarea {
    margin: 10px 0;
    padding: 12px;
    border-radius: 6px;
    border: none;
}

.review-form textarea {
    height: 120px;
}

.review-form button {
    background: #556B2F;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.review-form button:hover {
    background: #6f8f3a;
}.star-rating {
    text-align: center;
    margin: 20px 0;
}

.star {
    font-size: 55px;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
}

.star:hover {
    transform: scale(1.2);
    color: gold;
}

.star.selected {
    color: gold;
}#reviewList {
    max-width: 600px;
    margin: 30px auto;
}

.saved-review {
    background: #2a2a2a;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
}

.saved-review .name {
    font-weight: bold;
    margin-bottom: 5px;
}

.saved-review .stars {
    color: gold;
    margin-bottom: 8px;
}.home-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 20px;
    background: #556B2F;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.home-button:hover {
    background: #6f8f3a;
}@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        margin: 5px;
        font-size: 14px;
    }

    .container {
        padding: 20px 15px;
        max-width: 100%;
    }

    .hero-img {
        width: 100%;
        max-width: 100%;
    }

    .grid {
        grid-template-columns: repeat(1, 1fr);
        padding: 15px;
        gap: 15px;
    }

    .card {
        min-height: auto;
    }

    .service-card {
        height: 220px;
    }

    .overlay h3 {
        font-size: 22px;
    }

    .overlay p {
        font-size: 14px;
    }

    .review-card {
        width: 90%;
    }
}body {
    -webkit-text-size-adjust: 100%;
}.service-card {
    display: block;
    text-decoration: none;
    color: white;
}.container h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.container h3 {
    margin-top: 25px;
}

.container ul, .container ol {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
}