/* --- --- --- INDEX PAGE STYLES --- --- --- */
#welcome,
#reviews {
    width: 100%;
    padding: 40px 80px;
    background: linear-gradient(180deg, #eafae5 0%, #d4edc3 100%);
}

#about,
#services,
#contact,
#gallery {
    width: 100%;
    padding: 40px 80px;
    background: linear-gradient(180deg, #d4edc3 0%, #eafae5 100%);
}
/* --- --- --- INDEX PAGE STYLES --- --- --- */

/* --- --- --- LANDING AREA STYLES --- --- --- */
.landing-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.landing-image {
    padding: 20px;
    border-radius: 20px;
    transition: 0.5s ease-in-out;
    box-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    1px 1px 3px black;
    position: relative;
    overflow: hidden;
}

/* shimmer “blade” */
.landing-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;              /* start well off-screen */
    width: 40%;               /* narrower highlight */
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    filter: blur(2px);        /* softens the edge */
    pointer-events: none;
    will-change: left;
}

/* only run once when .shimmer-active is toggled on */
.landing-image.shimmer-active::before {
    animation: shimmer 1s ease-in-out forwards;
}

@keyframes shimmer {
    from {
        left: -120%;
    }
    to {
        left: 120%;
    }
}

#landing-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    1px 1px 3px black;
    transition: transform 0.5s ease;
}

.landing-image:hover {
    transform: scale(1.03);
    background: rgba(206, 206, 206, 0.7);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #2e7d32;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    #welcome {
        text-align: center;
        padding: 60px 20px;
    }
}
/* --- --- --- LANDING AREA STYLES --- --- --- */

/* --- --- --- ABOUT US STYLES --- --- --- */
#about h2{
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

#interval h2,
#services h2,
#reviews h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: left!important;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

#about p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Emphasize strong text in paragraph */
#about p strong {
    color: #2c3e50;
}

/* Button styling */
#about .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}

/* Responsive typography & layout */
@media (max-width: 991.98px) {
    #about h2 {
        font-size: 1.9rem;
    }
    #about p {
        font-size: 0.98rem;
    }
}

@media (max-width: 767.98px) {
    #about {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    #about h2 {
        font-size: 1.75rem;
    }
    #about p {
        font-size: 0.95rem;
    }
    /* Make button full-width on mobile */
    #about .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }
}
/* --- --- --- ABOUT US STYLES --- --- --- */

/* --- --- --- INTERVAL STYLES --- --- --- */
#interval {
    width: 100%;
    background: linear-gradient(180deg, #eafae5 0%, #d4edc3 100%);
}

#beforeImage,
#afterImage {
    width: 80%;
    height: auto;
    border-radius: 20px;
    box-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    1px 1px 3px black;
    margin-bottom: 10px;
}

#interval .about-border-head p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}
/* --- --- --- INTERVAL STYLES --- --- --- */

/* --- --- --- SERVICES STYLES --- --- --- */
/* --- Services Card Base Styles --- */
.services-card {
    background-color: transparent;
    border: 1px solid #222;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

/* lift on hover */
.services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#services-card-logo {
    padding: 0px;
    margin: 0px;
    width: 80px!important;
    height: auto;
}

.services-icon {
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    1px 1px 3px black;
    margin-bottom: 10px!important;
    margin-top: 5px;
}

/* medium screens (tablets) */
@media (max-width: 991.98px) {
    .services-card {
        padding: 1.25rem;
    }
}

/* small screens (phones) */
@media (max-width: 767.98px) {
    .services-card {
        padding: 1rem;
    }
}

/* extra small (very narrow) */
@media (max-width: 575.98px) {
    .services-card {
        padding: 0.75rem;
    }
}
/* --- --- --- SERVICES STYLES --- --- --- */

/* --- --- --- REVIEW STYLES --- --- --- */
/* --- Reviews Card Styles --- */
.review-card {
    position: relative;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid black;
}

/* Accent stripe on the left */
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(180deg, #28a745, #2ecc71);
}

/* Hover lift */
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid black;
}

/* Review Header (avatar + stars) */
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Initial Avatar Circle */
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #2ecc71;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Star rating */
.star-rating {
    display: flex;
}
.star-rating .fa {
    color: #f1c40f;
    margin-right: 0.25rem;
    font-size: 1.1rem;
}

/* Review text */
.review-text {
    flex-grow: 1;
    color: #555;
    font-style: italic;
    margin-bottom: 1.25rem;
}

/* Author credit */
.review-author {
    text-align: right;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .review-card {
        padding: 1.25rem;
    }
    .star-rating .fa {
        font-size: 1rem;
    }
}
/* --- --- --- REVIEW STYLES --- --- --- */
