body {
    margin: 0;
    padding: 0;
    /*background-color: rgb(249, 226, 208); */
    /*Peach background for spring*/
    /*background-color: #ffceb2;*/
    background-color: rgb(249, 226, 208);
    overflow-x: hidden;
}

.navigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Pink nav */
    /* background-color: #f6b9e9; */
    /* Red nav */
    /* background-color: #bb0000; */
    /* Green nav */
    /* background-color: rgb(64, 169, 59); */
    /* Light Blue nav */
    background-color: rgb(60, 211, 222);
    color: white;
    padding: 0 1rem;
}

.Logo {
    font-size: 2.5rem;
    /* margin: 0.5rem; */ 
    font-family: 'Edwardian Script ITC', cursive;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 1rem;
}

.navbar-links li:hover {
    /* background-color: rgb(64, 169, 59); */
  background-color: #ffb0cc;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.butterfly {
    position: absolute;
    width: 60px;
    animation: flyDiagonal 5s linear forwards;
    opacity: 0.9;
    transform-origin: center;
}

@keyframes flyDiagonal {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.7);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

.above-x {
    display: block;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    height: auto;
    z-index: 1;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 700px;
    padding-top: 0px;
    margin: 0 auto;
    overflow: hidden;
    /* Beige background */
    /* background-color: rgb(249, 226, 208); */ 
    /* Peach background */
    /* background-color: #ffceb2; */
    /* Black background */
    background-color: rgb(0, 0, 0); 
    z-index: 0;
}

/*
.slider::before {
    content: '';
    position: absolute;
    width: calc(1% + 1500px);
    height: 150%;
    top: -380px;
    left: -180px;
    background-image: url("slideshowBorder.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}
*/

.list {
    display: flex;
    transition: transform 4s ease-in-out;
    width: 100%;
    height: 100%;
}

.list .item {
    width: 100%;
    flex: 0 0 100%;
}

.list img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.buttons {
    position: absolute;
    top: 60%;
    width: 85%;
    left: 8%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    transform: translateY(-50%);
}

.buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Pink buttons */
    /* background-color: #f6b9e9; */
    /* Red buttons */
    /* background-color: #bb0000; */
    /* Green buttons */
    /* background-color: rgb(64, 169, 59); */
    /* Light Blue buttons */
    background-color: rgb(60, 211, 222);
    color: white;
    border: none;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
}

.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    left: -3%;
}

.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: white;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s;
}

.dots li.active {
    /* Light Blue dots */
    background-color: rgb(60, 211, 222);
    
    /* Pink Dots */
    /*background-color: #f6b9e9; */
}

.about-section {
    width: 90%;
    max-width: 800px;
    margin: 350px auto;
    padding: 300px;
    background-color: rgb(249, 226, 208);
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -400px;
    left: -325px;
    width: calc(100% + 600px);
    height: calc(100% + 900px);
    background-image: url("whiteFlowerBorder.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.about-section h1 {
    color: rgb(0, 0, 0);
    font-family: 'Edwardian Script ITC', cursive;
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.about-section p,
.about-section ul {
    color: #000000;
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-weight: bold;
}

.about-section ul {
    list-style: none;
    margin-top: 20px;
}

.about-section ul li {
    margin: 10px 0;
}

@media (max-width: 1024px) {
    .about-section {
        width: 90%;
        padding: 15px;
        font-size: 0.95rem;
    }


    .slider::before {
        left: -340px;
    }

}

.language-selector {
    margin: 10px;
    font-size: 1rem;
    cursor: pointer;
    width: 100px;
}

@media screen and (max-width: 1024px) {

    .ad-left,
    .ad-right {
        display: none;
    }
}

.slideshowHolder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 500px;
    margin: 20px auto;
    padding: 10px;
    border: 2px solid #f6b9e9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.slides {
    width: 100%;
    display: none;
}

.slides img,
.slides video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.slides.active {
    display: block;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 130%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

.navigation button {
    pointer-events: auto;
    /* Light Blue buttons */
    background-color: rgb(60, 211, 222);
    /* Pink buttons */
    /* background-color: #f6b9e9; */
    /* Red buttons */
    /* background-color: #bb0000; */
    /* Green buttons */
    /* background-color: rgb(64, 169, 59); */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.navigation button:hover {
    background: #e6a8d8;
}

.navigation .prev {
    margin-left: 10px;
}

.navigation .next {
    margin-right: 10px;
}


.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.category-filter button {
    /* Pink buttons */
    /* background-color: #f6b9e9;*/
    /* Red buttons */
    /* background-color: #bb0000;*/
    /* Green buttons */
    /* background-color: rgb(64, 169, 59); */
    /* Light Blue buttons */
    background-color: rgb(60, 211, 222);
        
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.category-filter button:hover {
    background-color: #e6a8d8;
}

.galleryView {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.galleryItem {
    display: none;
    text-align: center;
    /* Pink border */
    /*border: 2px solid #f6b9e9; */
    /* Red border */
    /*border: 2px solid #bb0000; */
    /* Light blue border */
    border: 2px solid #59ebf2;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.galleryItem.active {
    display: block;
}

.footer {

    /* Green footer */
    /* background-color: rgb(64, 169, 59);*/
    /* Red footer */
    /* background-color: #bb0000; */
    /* Purple footer */
    /* background-color: #813f8e; */
    /* Light blue footer */
    background-color: rgb(60, 211, 222);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}


.footer-links a {
    /*color: #f6b9e9; */
    /* color: #813f8e; */
    text-decoration: none;
    /*color: rgb(48, 240, 250); */
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.socials {
    margin-bottom: 20px;
}

.socials a {
    color: #f6b9e9; 
    /* color: #813f8e; */
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: #fff;
}

.credits {
    font-size: 0.9rem;
    margin-top: 10px;
}

.credits a {
    color: #f6b9e9; 
    text-decoration: none;
    font-weight: bold;
}

.credits a:hover {
    color: #fff;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    text-decoration: none;
    color: #f7f291;
    /* color: rgb(48, 240, 250); */
    /*color: #f6b9e9; */ 
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {

    .navigationBar {
        flex-wrap: wrap;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        background-color: #f6b9e9;
        position: relative;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 15;
    }

    .navbar-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 2rem;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    .contact-container {
        padding: 15px;
    }

    form input,
    form textarea {
        font-size: 1rem;
    }

    form button {
        width: 100%;
        font-size: 1.1rem;
    }

    .gallery-container {
        padding: 10px;
    }

    .category-filter {
        flex-wrap: wrap;
        gap: 5px;
    }

    .category-filter button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .slider {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 700px;
        padding-top: 20px;
        padding-bottom: 70px;
        margin: 0 auto;
        overflow: hidden;
        background-color: rgb(249, 226, 208);
        z-index: 0;
    }

    .slider::before {
        content: '';
        position: absolute;
        width: 150%;
        height: 150%;
        top: -280px;
        left: -110px;

    }

    .slideshowHolder {
        max-width: 90%;
        margin: 10px auto;
    }

    .navigation {
        width: 100%;
        justify-content: space-between;
    }

    .navigation button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card img {
        width: 100%;
        height: auto;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .services-container {
        max-width: 1200px;
        margin: 50px auto;
        padding: 20px;
        text-align: center;
    }

    @font-face {
    	font-family: "Edwardian Script ITC";
    	src: url("/fonts/EdwardianScriptITC.ttf") format("truetype");
    }

    .services-container h1 {
        font-size: 4.5rem;
        /*color: #813f8e; */
        color: #f7f291;
        margin-bottom: 20px;
        margin-top: 10px;
        font-family: "Edwardian Script ITC", cursive;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 20px;
    }

    .service-card {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

    .service-card img {
        width: 300px;
        height: auto;
        margin: 10px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .service-card h3 {
        /*color: #813f8e; */
        color: #f7f291;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
        font-weight: bold;
    }

    .service-card i {
        font-size: 3rem;
        color: #f6b9e9;
        margin-bottom: 15px;
    }

    .footer {
        padding: 10px 5px;
    }

    .footer-content .socials a {
        font-size: 1rem;
    }

    .footer-content .credits {
        font-size: 0.8rem;
    }

    .slider {
        height: 400px;
    }

    .dots {
        left: -10%;
    }

    .buttons {
        width: 100%;
        left: 0;
        top: 90%;

    }

    .about-section {
        width: 100%;
        max-width: 180px;
        margin: 10px auto;
        margin-top: 50px;
        padding: 100px;
        background-color: rgb(249, 226, 208);
        border-radius: 40px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: -70px;
        left: -55px;
        width: calc(100% + 100px);
        height: calc(100% + 100px);
        background-image: url("border3.png");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        z-index: -1;
    }

    .about-section h1 {
        margin-bottom: 20px;
        font-size: 1.0rem;
    }

    .about-section p,
    .about-section ul {
        color: #000000;
        font-size: 0.6rem;
        line-height: 0.9;
        text-align: center;
        margin: 0 auto;
        padding: 0;
        font-weight: bold;
    }

}
