/* adding color pink to the nav section  */
.navbar-nav .nav-item .nav-link {
    color: #3CD8EE;
    border-radius: 5px;
    /* optional, for rounded corners */
    padding: 5px 10px;
    /* optional, for spacing inside */
}

/* Hover style in navbar*/ 
.navbar-nav .nav-item .nav-link:hover {
  color: #fff;              /* text color on hover */
  background-color: #3CD8EE; /* background on hover */
}

.hero {
    background-color: #FDDFEE;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.cake-card img {
    height: 200px;
    object-fit: cover;
}

footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
}


/*i actually remove the my-5 and i add the class name about us*/
.about-us {
    margin-top: 150px;
    /* optional, adds space above Contact Us */
}


/* i actually remove the my-5 and i add the class name contact us  */
.contact-us {
    margin-top: 150px;
}

.jerin-img {
    width: 400px;
    height: 400px;
}

.adrena-img{
    width: 400px;
    /* fixed width */
    height: 400px;
}


/* it is under the logo but toggle position issues so i change straight to the logo using span */
.small-logo-slogan{
    font-size: 0.7rem;
}

/* navbar needs to be there even when i scroll */
.navbar {
  position: sticky;
  top: 0;          /* sticks to the top */
  z-index: 1000;   /* ensures it stays above other elements */
}

