
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body{
    background-image: linear-gradient(rgb(7, 35, 120), rgba(7, 35, 120, 0.5));
    background-repeat: no-repeat;
    height: 34rem;
} */
header{
    background-image: url(fondowasi.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
}
.menus{
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.Logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Quicksand", sans-serif;
    color: rgb(80, 44, 10);
}
.menu{
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
      
}
.item{
    display: flex;
    background-color: rgba(105, 52, 3, 0.8);
    height: 35px;
    padding: 0px 15px 0px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
a{
    text-decoration: none;
    color: ivory;
    font-family: "Quicksand", sans-serif;
}
a:hover{
    color: rgb(255, 217, 0);
}
#items{
    height: 35px;
}
.right{
    margin-right: auto;
}
.bienvenido{
    text-align: center;
    line-height: 100px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    background-color: rgba(105, 52, 3, 0.5);
    font-size: clamp(1rem, 3vw, 2rem);
    width: 70%;
    margin: auto;
    color: ivory;
    border-bottom-right-radius: 55px;
    border-top-left-radius: 55px ;
    text-shadow: 1px 1px 4px #000;
}

.main-image-section {
            padding: 20px;
            text-align: center;
        }

        /* For the responsive image */
        .responsive-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin-left: auto;
            margin-right: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
            cursor: pointer; /* To show it's clickable */
            transition: 0.3s;
        }
.seccion1 h2{
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.seccion1>p {
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-size: 1.5rem;
}
.cart{
    display: flex;
    font-family: "Quicksand", sans-serif;
    font-size: 1.5rem;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    font-weight: 400;

    
}
.cart>p{
    background-color: rgba(105, 52, 3, 0.8);
    margin: 10px;
    border-radius: 15px;
    padding: 10px;
    color: ivory;
    text-align: center;
    flex-basis: 25rem;
}
.cart>p>span{
    font-size: 4rem;
    padding: 7px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nosotros{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1rem;
    font-family: "Quicksand", sans-serif;
    background-color: rgba(105, 52, 3, 0.9);
    padding: 20px;
    color: ivory;

}
.nosotros>ul>h4{
    text-decoration: dotted;
    
}
.nos{
    padding-left: 15px;
    flex-basis: 20rem;
    list-style: none;
    border-left: solid ivory 3px ;
    text-align: justify;
    text-justify: inter-word;
}
.noso{
    flex-basis: 24rem;
    list-style: none;
    text-align: justify;
    text-justify: inter-word;
}
hr{
    border-color: rgba(105, 52, 3, 0.4);
    border-width: 5px;
   background-color:  rgba(105, 52, 3, 0.4);
   color: rgba(105, 52, 3, 0.4);

}

/* General Header and Menu Styles */
.menus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Add some padding */
}

.menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.menu .item {
    margin-left: 25px;
}

.menu .item a {
    text-decoration: none;
    color: ivory; /* Assuming a default color */
    font-weight: bold;
    padding: 10px;
    display: block;
}

/* Hamburger Icon Styles */
.hamburger {
    display: none; /* Hidden by default on large screens */
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 1001; /* Ensure it's above other content */
}

.hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: ivory; /* Adjust color as needed */
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive styles for small devices */
@media (max-width: 768px) {
    .menu {
        display: none; /* Hide menu by default */
        position: absolute;
        top: 70px; /* Adjust this value based on your header's height */
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu.active {
        display: flex; /* Show menu when active */
    }

    .menu .item {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: block; /* Show hamburger icon */
    }

    /* Animate hamburger to an 'X' */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .bienvenido{
        display: none;
    }
}

