/********** Template CSS **********/
:root {
    --primary: #FF00FF;
    --secondary: #FAF3EB;
    --light: #FFFFFF;
    --dark: #2B2825;
}

.font-secondary {
    font-family: 'Pacifico', cursive;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}
/* Pastel background for the topbar */
.topbar {
    background: linear-gradient(to right, #d3d1cf, #e8e1d7);
}


.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.hero-header {
    position: relative;
    background: url(../img/49fb0acf-ec8c-4f0e-8b0b-ce7a8dfa3e2f.jpg) center center no-repeat;
    background-size: cover;
    animation: zoomHero 15s ease-in-out infinite;
}

.hero-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; /* Increase for longer fade */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%);
    pointer-events: none;
}


/* Zoom keyframes */
@keyframes zoomHero {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 105%;
    }
    100% {
        background-size: 100%;
    }
}




.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}
  
.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}
/* Mobile button group adjustment */
@media (max-width: 768px) {
    .hero-header .hero-btn-group {
        justify-content: center;      /* Keep both elements together */
        transform: translateX(12px);  /* Push right slightly */
    }
}
/* Mobile-only hero adjustments */
@media (max-width: 768px) {
    .hero-btn-group {
        flex-direction: column;
        gap: 12px;
    }
    .hero-btn-group .me-5 {
        margin-right: 0 !important;
    }
    .hero-btn-group .ms-4 {
        margin-left: 0 !important;
    }
    .hero-btn-group h5 {
        display: block !important;
    }
}


@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    margin-left: -90px;
    background: var(--primary);
}

.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/service.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact::after {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/offer.jpg) center center no-repeat;
    background-size: cover;
}
.team-item .team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}
.testimonial-img-wrapper {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 0 !important; /* Force remove circle */
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important; /* Force remove circle */
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.hero-header h1 {
  color: var(--light);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #f5a9c2; /* a brighter pink accent */
}
.btn-play span {
    border-left: 16px solid var(--primary);
}
.btn-primary {
    color: #FFFFFF;
    background-color: var(--primary);
}
/* Image container with gradient effect at bottom */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 100%; /* Full width of its container */
    max-width: 340px; /* Limit max size on desktop */
    aspect-ratio: 16 / 10; /* Keeps shape consistent */
    margin: 0 auto;
}


.styled-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .styled-img {
    transform: scale(1.1);
}

/* Gradient overlay at the bottom */
.image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

html {
  scroll-behavior: smooth;
}
@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }

    h2, h4 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }
}
.image-wrapper {
    border: 4px solid #ce208b;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0; /* Remove radius here! */
}

.image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(131, 29, 92, 0.5), transparent);
    pointer-events: none;
}

.site-logo {
    max-height: 70px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}


.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #831d5c; /* matches your primary color */
}

.bi {
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .container-fluid .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}



/* Remove any white fill */
.col-lg-4 {
    background: transparent !important;
}


/* Icon Styling */
.cake-icon {
    font-size: 2.2rem;
    color: #ff4d94;
    margin-right: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* Logo Text */
.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    background: linear-gradient(to right, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    word-break: break-word;
}
.btn-read-more {
    display: inline-block;
    padding: 0.8rem 1.5rem; /* Relative units for scaling */
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap; /* Keeps text on one line */
}

.btn-read-more:hover {
    background: transparent;
    color: var(--primary);
}

/* Responsive tweak */
@media (max-width: 576px) {
    .btn-read-more {
        font-size: 0.9rem;  /* Slightly smaller text */
        padding: 0.6rem 1.2rem; /* Less padding */
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-wrapper {
        padding: 8px 14px;
        border-radius: 16px;
    }

    .cake-icon {
        font-size: 1.6rem;
        margin-right: 8px;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .logo-wrapper {
        padding: 6px 12px;
    }

    .cake-icon {
        font-size: 1.4rem;
        margin-right: 6px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 180px; /* desktop size */
    height: auto;
    display: block;
}

@media (max-width: 576px) {
    .logo-img {
        max-width: 140px; /* shrink for mobile */
    }
}
.brand-name {
    font-family: 'Pacifico', cursive; /* matches your existing font style */
    font-size: 1.8rem;
    font-weight: normal;
    color: #ff00cc; /* bright pink */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* subtle shadow like screenshot */
}
.navbar-brand .brand-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: #ff00ff; /* Magenta pink */
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 35px; /* Slightly smaller on mobile */
    }
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
}
.navbar-brand img {
    height: 50px; /* Bigger size */
    width: 50px;
    border-radius: 50%; /* Makes it a circle */
    object-fit: cover; /* Ensures the image fills the circle */
}
.navbar-brand span {
    font-family: 'Pacifico', cursive; /* same as before */
    font-size: 1.6rem; /* bigger size */
    font-weight: normal; /* no bold */
    color: #ff00cc; /* same pink shade */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@600&family=Allura&display=swap');

.brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff; /* White for visibility */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

.brand-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fffaf0; /* Light beige */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    margin: 5px 0 0 0;
}

.brand-tagline {
    font-family: 'Allura', cursive;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    margin-top: 5px;
}
#aboutCarousel {
  max-height: 300px;
}

#aboutCarousel .carousel-inner {
  height: 300px;
}

#aboutCarousel .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#aboutCarousel .carousel-item {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
/* Footer logo image responsive */
.footer-logo {
max-width: 120px;  /* logo size */
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* Footer text styling */
.footer-text {
font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto;
}

/* Footer Responsive Fix */
@media (max-width: 767px) {
/* Make each column full-width and centered */
    .footer-logo {
        max-width: 150px;
        height: auto;
}
}