/* Navigation Styles  */
nav {
    background-color: #ff6f61;
    padding: 1em 2em;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
}

nav a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    font-family: cursive;
    font-size: 3em;
    letter-spacing: 4px;
}

nav a:hover {
    color: #ffd700;
}

/* About Us Section */

.outer-box-item{
    background-color: #d4b39b;  /* Light brown color */
    padding: 0.4vw;
    border-radius: 12px;  /* Rounded corners for outer box */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 5vh;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;


}

.inner-box-item {
    background-color: #f5d7af;
    border-radius: 10px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;

}

.inner-box-item h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 15px;
    color: black;
    font-family: cursive;
    letter-spacing: 0.4em;
    display: flex;
    justify-content: center;
    align-items: center;
}





.about-us {
    padding: 2em;
    background: linear-gradient(to right, #ffe6cc, #ffcccc); /* Pink-to-peach gradient */
}

.about-content {
    display: grid;
    /*flex-direction: column;
    align-items: center;*/
    grid-template-columns: auto auto;
}


.about-content img {
    width: 100%;
    max-width: 600px;
    border-radius: 5px;
    margin-bottom: 1em;
    border: 3px outset black;
}

.about-text {
    max-width: 40vw;
    margin-left: 10px;
}

.about-text h3 {
    font-size: 1.9em;
    color: #ff6f61; /* Coral */
    margin-top: 1em;
    font-family: cursive;


}


.testimonials {
    margin-top: 2em;
}

.testimonials h3 {
    font-size: 1.9em;
    color: #ff6f61; /* Coral */
    margin-bottom: 1em;
    font-family: cursive;
    text-decoration: underline;
    transition: transform 0.3s ease;
}



.testimonials blockquote {
    font-style: italic;
    padding: 1em;
    background-color: #fff;
    border-left: 4px solid #ffd700; /* Yellow */
    margin: 1em 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 3s;
}
blockquote:hover{
    transform: scale(1.03);
}




/* xl */
@media (max-width: 1280px) {
  .container {
    max-width: 100%;
  }

}

/* lg */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
  .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-text {
        max-width: 100%;
        margin-left: 10px;
    }

}

/* md */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-text {
        max-width: 100%;
        text-align: left;
    }


}


}
/* sm */
@media (max-width: 640px) {
    .container {
        max-width: 100%;
    }
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-text {
        max-width: 100%;
        text-align: left;
    }

}

/* xs iphone*/
@media (max-width: 475px) {
    .container {
        max-width: 100%;
    }
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-text {
        max-width: 100%;
        text-align: left;
    }
}
