body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Navbar Start */
.navbar .hero {
    position: relative;
    height: 400px !important;
}

.hero img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
}

.overlay {
    background-color: rgba(255, 255, 255, 0.5);
}

nav {
    border-bottom: 6px solid #92d2d1;
}

nav #navbarNav .navbar-nav .nav-item a {
    color: #bbbdbc;
    text-decoration: none;
}

nav #navbarNav .navbar-nav .nav-item a:hover {
    color: #46b6b4;
}

nav #navbarNav .d-flex a {
    color: #fff;
    font-size: 20px;
    padding: 8px 10px;
    border-radius: 25px;
    background-color: #92d2d1;
}

nav #navbarNav .d-flex a:hover {
    color: #92d2d1;
    background-color: #fff;
}


nav #navbarNav .d-flex .secLink {
    color: #fff;
    font-size: 20px;
    padding: 8px 13px;
    border-radius: 25px;
    background-color: #92d2d1;
}

.navbar .container .navbar-toggler {
    background-color: #92d2d1 !important;
}

.navbar .container .navbar-toggler i {
    font-size: 25px;
    color: #fff !important;
}

.navbar .linksIcon {
    margin-left: 20px;
}

/* Navbar End */


/* Favoritos Cakes Slider Start  */

.favoritosCakes h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0px !important;
    font-family: 'Brush Script MT', cursive;
}

.favoritosCakes img {
    width: 200px;
    display: flex;
    margin: 0px auto;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.circle-image {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    border: 4px solid #92d2d1;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    background-color: rgba(146, 210, 209, 0.8);
}

.cake-name {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.circle-image:hover .overlay {
    opacity: 1;
}

.wave-image {
    height: auto;
    width: 120px;
    margin-top: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    background-color: #92d2d1;
}

.cake-name-bottom {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.carousel-control-prev {
    top: 0px !important;
    left: -60px !important;
}

.carousel-control-next {
    top: 0px !important;
    right: -60px !important;
}

/* Favoritos Cakes Slider End  */


/* Cakes & Berry Section CSS Start */
.heritage-section {
    margin: 70px auto;
    padding: 50px 15px;
    position: relative;
    background-size: 100px, 100px;
    background-repeat: no-repeat, no-repeat;
    background-position: left center, right center;
}

.heritage-section::before,
.heritage-section::after {
    top: 50%;
    z-index: -1;
    content: "";
    width: 200px;
    height: 400px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    background-image: url('../img/cherry1.png');

}

.heritage-section::before {
    left: -108px;
}

.heritage-section::after {
    z-index: -1;
    content: "";
    width: 200px;
    height: 550px;
    right: -100px;
    position: absolute;
    background-size: contain;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-image: url('../img/cherry2.png');
}

.heritage-section h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0px;
    font-family: 'Brush Script MT', cursive;
}

.heritage-section .heritageContent img {
    width: 170px;
    margin: 0px 0px 20px 40px;
}

.heritage-section p {
    color: #000;
    text-align: left;
    font-weight: 400;
    font-size: 1.1rem;
}

.image-gallery {
    gap: 15px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.image-gallery img {
    width: 100%;
    height: auto;
}

.image-gallery .img-large {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
}

/* Cakes & Berry Section CSS End */


/* Cakes Gallery Section CSS Start */

.cakesGallery .cakesHeader img {
    width: 150px;
    margin-bottom: 20px;
}

.cakesGallery .cakesHeader h2 {
    font-size: 3rem;
    color: #2c3e50;
    letter-spacing: 6px;
    margin-bottom: 0px;
    font-family: 'Brush Script MT', cursive;
}

.wrapper {
    display: grid;
    grid-gap: 0.5em;
    padding: 20px 100px;
    /* 4 columns */
    grid-auto-rows: 200px;
    /* Set consistent row height */
    grid-template-columns: repeat(4, 1fr);
}

.grid1 {
    grid-column: span 2;
    /* Takes 2 columns */
    grid-row: span 2;
    /* Takes 2 rows */
    /* display: flex; */
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.grid1 p {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.grid {
    height: 100%;
    /* Ensure grid items fill the row height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.grid img,
.grid1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
    /* Add transitions */
}

.grid img:hover,
.grid1 img:hover {
    transform: scale(1.05);
    /* Zoom in slightly */
    filter: brightness(1.1);
    /* Increase brightness for focus */
}

.cakesGallery .morePictures {
    width: 100%;
    margin: 30px auto;
    text-align: center;
}

.cakesGallery .morePictures p {
    width: 60px;
    color: #fff;
    margin: 0px auto;
    padding: 5px 20px;
    border-radius: 10px;
    text-decoration: none;
    background-color: #92d2d1;
}

.hidden {
    display: none;
}

/* Cakes Gallery Section CSS End */


/* Sucursales Section CSS Start  */

.sucur-Sales {
    margin-top: 100px;
    padding: 60px 30px;
    background-color: #daf3f3;
}

.sucur-Sales .sucurSales-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    letter-spacing: 6px;
    margin-bottom: 0px;
    font-family: 'Brush Script MT', cursive;
}

.sucur-Sales .sucurSales-header img {
    width: 250px;
    margin-bottom: 50px;
}

.sucur-Sales .leftSection .topImg {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}

.sucur-Sales .rightSection .address {
    margin-bottom: 20px;
}

.sucur-Sales .rightSection .contact {
    margin-bottom: 40px;
}

.sucur-Sales .rightSection .social-links {
    margin-bottom: 20px;
}

.sucur-Sales .rightSection .address p {
    width: 300px;
    color: #000;
    font-size: 18px;
}

.sucur-Sales .rightSection .contact a {
    color: #000;
    font-size: 18px;
    line-height: 35px;
    text-decoration: none;
}

.sucur-Sales .rightSection .social-links ul {
    gap: 20px;
    padding: 0px;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.sucur-Sales .rightSection .social-links ul li a {
    color: #fff;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 25px;
    background-color: #000;
}

.sucur-Sales .rightSection .social-links ul li a:hover {
    color: #000;
    background-color: #fff;
}

/* Sucursales Section CSS End  */


/* Pedido Section CSS Start */

.pedidoSection {
    margin: 100px auto;
}

.pedidoSection .pedido-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0px;
    letter-spacing: 6px;
    font-family: 'Brush Script MT', cursive;
}

.pedidoSection .pedido-header img {
    width: 220px;
    margin-bottom: 30px;
}

.pedidoSection .leftSide-content .appDesign {
    display: flex;
    justify-content: center;
}

.pedidoSection .leftSide-content .appDesign img {
    width: 50%;
}

.pedidoSection .rightSide-content p {
    width: 400px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.pedidoSection .rightSide-content h4 {
    font-size: 2.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 6px;
    font-family: 'Brush Script MT', cursive;
}

.pedidoSection .rightSide-content .food-services img {
    width: 18%;
    margin: 20px 20px 20px 0px;
}

.pedidoSection .rightSide-content .serviceLinks {
    margin: 20px 0px;
}

.pedidoSection .rightSide-content .serviceLinks ul {
    gap: 20px;
    padding: 0px;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.pedidoSection .rightSide-content .serviceLinks ul li a {
    color: #fff;
    font-size: 24px;
    padding: 8px 15px;
    border-radius: 25px;
    background-color: #92d2d1;
}


.pedidoSection .rightSide-content .serviceLinks ul li a:hover {
    color: #92d2d1;
    background-color: #fff;
}

/* Pedido Section CSS End */


/* Footer CSS Start */

footer {
    background-color: #92d2d1;
}

footer .footer-container {
    padding: 50px 0px;
}

footer .footer-container ul {
    gap: 50px;
    display: flex;
    align-items: center;
    list-style-type: none;
    justify-content: center;
}

footer .footer-container ul li a {
    color: #fff;
    font-size: 30px;
}

/* Footer CSS End */