@import url('https://fonts.googleapis.com/css2?family=Spline+Sans:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --main-purple: #6d3074;
    --main-navbar: #5B3470;
    --main-pink: #c43591;
    --main-white: #fff;
    --main-dark: #212427;
    --background-1: #ece6ff;
    --background-2: #B3A7B8;
    --background-3: #fef8f3;
    --main-font: 'Spline Sans', sans-serif;
}

/* ===== BASE STYLES ===== */
body {
    font-family: var(--main-font);
    color: #777;
    line-height: 1.7;
    letter-spacing: 1.5px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2D3250;
}

a {
    color: #222;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: 600;
}

a:hover {
    color: #f58d17;
}

img {
    width: 100%;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.shadow-on-hover {
    transition: all 0.2s;
}

.shadow-on-hover:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ===== NAVBAR STYLES ===== */
.navbar-nav .nav-link {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BUTTON STYLES ===== */
.btn {
    border-radius: 0;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Brand Button */
.btn-brand {
    color: #fef8f3;
    border: 2px solid var(--main-pink);
    background-color: var(--main-pink);
    border-radius: 30px;
    padding: 12px 28px;
}

.btn-brand:hover {
    background-color: transparent;
    color: var(--main-pink);
    border-color: var(--main-pink);
    box-shadow: 0 4px 12px rgba(196, 53, 145, 0.4);
}

/* ===== BACKGROUND UTILITIES ===== */
.bg-cover {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* ===== SLIDER STYLES ===== */
.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/cover1.webp);
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/cover2.webp);
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/cover3.webp);
}

#heroSlider h6::after,
#heroSlider h6::before {
    content: "";
    width: 40px;
    height: 4px;
    background-color: #fff;
    display: inline-block;
    margin: 10px;
    vertical-align: middle;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 70px;
    margin: auto;
}

/* ===== ABOUT SECTION ===== */
#about {
    background-color: var(--background-3);
}

#about a {
    text-transform: capitalize;
}

#about .divider {
    width: 60px;
    height: 3px;
    display: block;
    background-color: #f58d17;
}

#about h1 {
    color: #6d3074;
}

.text-brand {
    color: #c43591;
}


/* ===== INTRO TEXT ===== */
.intro-text {
    margin-bottom: 40px;
    text-align: center;
}

.intro-text p {
    max-width: 500px;
    margin: 16px auto 0 auto;
}

/* ===== SPECIAL DELIVERY SECTION ===== */
#special-delivery {
    background: linear-gradient(135deg, #f0eaf1 0%, #ffffff 100%);
}

#special-delivery h1 {
    color: var(--main-purple);
}

#special-delivery .divider {
    width: 60px;
    height: 3px;
    display: block;
    background-color: #f58d17;
    margin: 0 auto;
}

/* ===== NEW DELIVERY SECTION ===== */
.btn-get-yours {
    border: none;
    padding: 8px 20px; /* Reduced padding */
    font-weight: 600;
    font-size: 0.95rem; /* Slightly smaller text */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 30px;
    color: var(--background-3);
    background-image: linear-gradient(to right, #c43591, #6d3074);
    box-shadow: 0 4px 12px rgba(196, 53, 145, 0.25);
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
}


.btn-get-yours:hover {
    opacity: 0.9;
}


.delivery-jumbotron {
    background: var(--background-3);
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.jumbotron-content {
    max-width: 900px;
    margin: 0 auto;
}

.delivery-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-purple);
    opacity: 0.85;
}

.delivery-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--main-purple);
    margin-bottom: 3rem;
}

.delivery-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(109, 48, 116, 0.15);
    transition: all 0.3s ease;
}

.delivery-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(109, 48, 116, 0.25);
}

.delivery-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.delivery-image-wrapper:hover .delivery-img {
    transform: scale(1.05);
}

.btn-delivery {
    background-color: var(--main-pink);
    color: #fef8f3;
    border: 2px solid var(--main-pink);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(196, 53, 145, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-delivery:hover {
    background-color: transparent;
    color: var(--main-pink);
    border-color: var(--main-pink);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(196, 53, 145, 0.4);
}

/* ===== KOOLFM AUDIO SECTION ===== */
.hero-audio {
    width: 100%;
    height: 70vh;
    background-image: radial-gradient(circle at top right, rgb(36, 9, 119) 0%, rgb(36, 9, 119) 48%, rgb(72, 7, 149) 48%, rgb(72, 7, 149) 53%, rgb(109, 5, 178) 53%, rgb(109, 5, 178) 56%, rgb(145, 2, 208) 56%, rgb(145, 2, 208) 69%, rgb(181, 0, 237) 69%, rgb(181, 0, 237) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.music {
    width: 90%;
    max-width: 900px;
    padding: 30px;
    background: #fff;
    color: #555;
    border-radius: 8px;
}

.track {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.track img {
    width: 70px;
    margin-right: 30px;
    cursor: pointer;
}

.track div {
    flex: 1;
}

/* ===== VIDEO SECTION ===== */
#video-2 {
    background: linear-gradient(135deg, #f0eaf1 0%, #ffffff 100%);
}

#video-2 h1 {
    color: var(--main-purple);
}

#video-2 .divider {
    width: 60px;
    height: 3px;
    display: block;
    background-color: #f58d17;
    margin: 0 auto;
}

/* ===== FLAVOURS SECTION ===== */
#menu {
    background: linear-gradient(45deg, #7c4582 0%, #7c4582 50%, #d05da7 50%, #d05da7 80%, #fefaf7 80%, #fefaf7 100%);
    background-size: cover;
}

#menu .divider {
    width: 80px;
    height: 3px;
    display: block;
    background: linear-gradient(to right, #6d3074, #c43591);
    border-radius: 2px;
    margin: 0 auto;
}

#menu .nav-pills .nav-link {
    background-color: #fff;
    border-radius: 100px;
    margin: 8px;
    color: var(--main-dark);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#menu .nav-pills .nav-link.active {
    background-color: var(--main-pink);
    color: var(--main-white);
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== FEATURES SECTION ===== */
#features {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/cover2.webp);
}

.feature {
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.feature .feature-icon {
    width: 80px;
    height: 80px;
    background-color: #f58d17;
    color: #fff;
    font-size: 38px;
    display: inline-grid;
    align-content: center;
    text-align: center;
}

/* ===== CATERING SECTION ===== */
#catering {
    background-color: #fef8f3;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

#catering h1 {
    color: #6d3074;
    font-weight: 600;
}

#catering p {
    color: #2D3250;
    max-width: 600px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

#catering .divider {
    width: 60px;
    height: 2px;
    display: block;
    background-color: #f58d17;
    margin: 0 auto 20px auto;
}

#catering .nav-pills .nav-link {
    background-color: #fff;
    border-radius: 100px;
    margin: 8px;
    color: #222;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#catering .nav-pills .nav-link.active {
    background-color: #ca499c;
    color: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#catering .menu-item img {
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== GALLERY SECTION ===== */
#gallery {
    background: linear-gradient(-225deg, #AC32E4 0%, #7918F2 48%, #4801FF 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/footer.webp);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding-top: 120px;
    padding-bottom: 30px;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.75);
}

#contact .social-links a i {
    font-weight: normal;
    font-size: 38px;
    margin-right: 10px;
    color: #F4C430;
}

footer img {
    max-width: 175px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.border-custom {
    border: 2px solid #fff;
    transition: all 0.4s ease-in-out;
}

.outlet {
    color: var(--main-white);
    font-size: 18px;
}

.text-white.underline {
    border-bottom: 4px solid rgb(244, 196, 48);
    padding-bottom: 5px;
    display: inline-flex;
}

.designer-signature {
    color: #F4C430;
}

/* ===== WHATSAPP CONTACT SECTION ===== */
#catering-contact {
    background-image: linear-gradient(135deg, rgba(159, 159, 159, 0.46) 0%, rgba(159, 159, 159, 0.46) 14.286%, rgba(165, 165, 165, 0.46) 14.286%, rgba(165, 165, 165, 0.46) 28.572%, rgba(171, 171, 171, 0.46) 28.572%, rgba(171, 171, 171, 0.46) 42.858%, rgba(178, 178, 178, 0.46) 42.858%, rgba(178, 178, 178, 0.46) 57.144%, rgba(184, 184, 184, 0.46) 57.144%, rgba(184, 184, 184, 0.46) 71.43%, rgba(190, 190, 190, 0.46) 71.43%, rgba(190, 190, 190, 0.46) 85.716%, rgba(196, 196, 196, 0.46) 85.716%, rgba(196, 196, 196, 0.46) 100.002%), linear-gradient(45deg, rgb(252, 252, 252) 0%, rgb(252, 252, 252) 14.286%, rgb(246, 246, 246) 14.286%, rgb(246, 246, 246) 28.572%, rgb(241, 241, 241) 28.572%, rgb(241, 241, 241) 42.858%, rgb(235, 235, 235) 42.858%, rgb(235, 235, 235) 57.144%, rgb(229, 229, 229) 57.144%, rgb(229, 229, 229) 71.43%, rgb(224, 224, 224) 71.43%, rgb(224, 224, 224) 85.716%, rgb(218, 218, 218) 85.716%, rgb(218, 218, 218) 100.002%);
    background-size: cover;
    background-repeat: no-repeat;
}

.catering-whatsapp img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.catering-whatsapp a:hover img {
    opacity: 0.7;
}

/* ===== CONTACT IMAGE STYLES ===== */
#contact img {
    width: 100%;
    max-width: 175px;
    height: auto;
}

/* ===== VIDEO WRAPPER STYLES ===== */
.custom-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 50px;
}

.wrapper-main {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

video {
    max-width: 100%;
    display: block;
    height: 450px;
    border-radius: 8px;
}

#video-2 {
    background-color: var(--background-1);
}

/* ===== GALLERY STYLES ===== */
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== NAVBAR LOGO RESPONSIVE ===== */
.navbar-brand img {
    object-fit: contain;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .delivery-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .delivery-jumbotron {
        padding: 80px 0;
    }
    
    .delivery-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .btn-delivery {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    #menu .nav-pills .nav-link {
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--main-dark);
    }
    
    #catering .nav-pills .nav-link {
        background-color: rgba(255, 255, 255, 0.9);
        color: #222;
    }
}

@media (max-width: 576px) {
    .delivery-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .delivery-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 375px) {
    .navbar-brand img {
        height: 40px;
    }
}