:root {
    
    --primary-pink: #ffb7b2;
    --soft-blue: #b2e2f2;
    --warm-yellow: #fdfd96;
    --soft-mint: #c1f0cf;
    
  
    --text-dark: #4a4a4a;
    --text-light: #888;
    --bg-light: #f8faff;
    --white: #ffffff;
    
    
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-pink: 0 15px 40px rgba(255, 183, 178, 0.15);
    --transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}


h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
}

section {
    padding: 100px 0;
}


h2.title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    position: relative;
    display: block;
}

h2.title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-pink);
    margin: 15px auto 0;
    border-radius: 10px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: padding 0.3s;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-pink);
    font-family: 'Outfit', sans-serif;
}

.logo span { color: var(--soft-blue); }

.nav-links { display: flex; list-style: none; }

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 35px;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: 0.3s;
}


.nav-links a.active-link { color: var(--primary-pink) !important; }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--primary-pink);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}


.btn-wa, .btn-ig {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-wa { background: #25d366; color: white; }
.btn-ig { background: linear-gradient(45deg, #f09433, #bc1888); color: white; }

.btn-wa:hover, .btn-ig:hover { transform: translateY(-5px); }

.hero-badge {
    background: var(--primary-pink);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
}


.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #f0faff 100%);
    position: relative;
    padding-bottom: 120px;
}

.hero h1 { font-size: 4rem; margin: 20px 0; font-weight: 900; }

.hero h1 span {
    color: var(--soft-blue);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--warm-yellow);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.6;
}

.hero-btns { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }

.wave-container {
    position: absolute;
    bottom: -1px;
    width: 100%;
    line-height: 0;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
}


.card-pink:hover { border-color: var(--primary-pink); background: #fff9f9; }
.card-blue:hover { border-color: var(--soft-blue); background: #f9fcff; }
.card-yellow:hover { border-color: var(--warm-yellow); background: #fffdf5; }
.card-mint:hover { border-color: var(--soft-mint); background: #f6fff9; }

.card i {
    font-size: 3rem;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.card-pink i { color: var(--primary-pink); background: #fff0f0; }
.card-blue i { color: var(--soft-blue); background: #f0f8ff; }
.card-yellow i { color: #f39c12; background: #fffdec; }
.card-mint i { color: #27ae60; background: #f0fff4; }


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(178, 226, 242, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border-radius: 20px;
    border: 5px solid white;
    animation: zoom 0.4s ease;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
}

.contact-details { list-style: none; margin: 30px 0; }
.contact-details li { margin-bottom: 20px; display: flex; align-items: center; }

.contact-details i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-right: 15px;
    background: #fff5f5;
    padding: 12px;
    border-radius: 50%;
    width: 50px; height: 50px;
    display: flex; justify-content: center; align-items: center;
}

.whatsapp-float {
    position: fixed;
    width: 70px; height: 70px;
    bottom: 30px; right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 35px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1) rotate(15deg); }

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px;
    margin-top: 50px;
}


@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        background: white;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }

    .nav-links.mobile-active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .burger { display: block; cursor: pointer; }
}


@keyframes zoom {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10; 
    pointer-events: auto; 
}


.btn-wa {
    background: #25d366;
    color: white;
    cursor: pointer;
    transition: var(--transition); 
}

.btn-wa:hover {
    transform: translateY(-5px) scale(1.05); 
    background: #20ba5a; 
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); 
}


.btn-ig {
    background: linear-gradient(45deg, #f09433, #bc1888);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ig:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1); 
    box-shadow: 0 15px 30px rgba(188, 24, 136, 0.4);
}


.btn-wa:hover i, .btn-ig:hover i {
    animation: bounceIcon 0.5s ease infinite alternate;
}

@keyframes bounceIcon {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}

:root {
    
    --vibrant-pink: #FF6B95;    
    --vibrant-blue: #6FB1FC;    
    --vibrant-purple: #A78BFA;  
    --vibrant-yellow: #FCD34D;  
    --vibrant-orange: #FB923C;  
    
    
    --grad-hero: linear-gradient(135deg, rgba(111, 177, 252, 0.15) 0%, rgba(167, 139, 250, 0.15) 50%, rgba(255, 107, 149, 0.15) 100%); 
    --grad-about: linear-gradient(to bottom, #fff9fc, #fff0f5); 
    --grad-services: linear-gradient(to bottom, #f0f7ff, #f5f3ff); 
    --grad-gallery: linear-gradient(to bottom, #fffdf0, #fff7ed); 

    
    --hover-pink: linear-gradient(135deg, #FF6B95, #FB923C);
    --hover-blue: linear-gradient(135deg, #6FB1FC, #A78BFA);
    --hover-yellow: linear-gradient(135deg, #FCD34D, #FB923C);
    
    
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-pop: 0 20px 40px rgba(0,0,0,0.12);
    --transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.container { max-width: 1200px; margin: auto; padding: 0 25px; }
section { padding: 100px 0; position: relative; }


h2.title {
    text-align: center; font-size: 3rem; margin-bottom: 60px;
    color: var(--text-dark); position: relative; display: inline-block; left: 50%; transform: translateX(-50%);
}
h2.title::after {
    content: ''; display: block; width: 100%; height: 8px;
    background: linear-gradient(to right, var(--vibrant-blue), var(--vibrant-pink)); 
    position: absolute; bottom: 5px; left: 0; z-index: -1; border-radius: 4px; opacity: 0.3;
}


.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: rgba(255, 255, 255, 0.85);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-soft); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.logo { font-size: 1.8rem; font-weight: 900; }

.logo {
    background: linear-gradient(to right, var(--vibrant-pink), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo span { color: var(--vibrant-blue); -webkit-text-fill-color: initial; }

.nav-links { display: flex; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--text-dark); margin-left: 35px;
    font-weight: 700; transition: 0.3s; font-size: 1.05rem;
}
.nav-links a:hover, .nav-links a.active-link { 
    background: linear-gradient(to right, var(--vibrant-pink), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero {
    height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center;
    
    background: var(--grad-hero);
    position: relative; padding-bottom: 150px;
}

.hero-badge {
    background: linear-gradient(to right, var(--vibrant-blue), var(--vibrant-purple));
    color: white; padding: 8px 20px; border-radius: 30px; font-weight: 700; font-size: 0.9rem; display: inline-block; margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(111, 177, 252, 0.3);
}

.hero h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.1; color: #2d3748; }
.hero h1 span { 
    
    background: linear-gradient(to right, var(--vibrant-pink), var(--vibrant-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero p {
    font-size: 1.25rem; 
    max-width: 700px; 
    margin: 20px auto 40px; 
    color: var(--text-dark); 
    font-weight: 700; 
    line-height: 1.6; 
}

.hero-btns { display: flex; gap: 20px; justify-content: center; position: relative; z-index: 20; }

.btn-wa, .btn-ig {
    padding: 18px 45px; border-radius: 50px; text-decoration: none; font-weight: 800;
    display: flex; align-items: center; gap: 10px; transition: var(--transition);
    color: white; font-size: 1.1rem;
}
.btn-wa { background: #25d366; box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3); }
.btn-ig { background: linear-gradient(45deg, #f09433, #bc1888); box-shadow: 0 15px 30px rgba(188, 24, 136, 0.3); }

.btn-wa:hover, .btn-ig:hover { transform: translateY(-8px) scale(1.05); filter: brightness(1.1); }
.wave-container { position: absolute; bottom: -1px; width: 100%; line-height: 0; }
.wave-container path { fill: var(--white); } 




#about { background: var(--grad-about); }
.about-card {
    background: rgba(255,255,255,0.7); padding: 60px; border-radius: 50px;
    box-shadow: var(--shadow-pop); border: 3px solid white;
    backdrop-filter: blur(10px);
}
.about h2 { color: var(--vibrant-pink); }


#services { background: var(--grad-services); position: relative; }

#services::before { content: ''; position: absolute; top: 100px; left: -50px; width: 300px; height: 300px; background: var(--vibrant-blue); opacity: 0.1; filter: blur(80px); border-radius: 50%; z-index: 0; }
#services::after { content: ''; position: absolute; bottom: 100px; right: -50px; width: 250px; height: 250px; background: var(--vibrant-purple); opacity: 0.1; filter: blur(70px); border-radius: 50%; z-index: 0; }


#gallery { background: var(--grad-gallery); }


#contact { background: var(--white); }
.contact-grid {
    background: linear-gradient(135deg, #f8faff, #fff); padding: 60px; border-radius: 50px;
    box-shadow: var(--shadow-soft); border: 3px solid #f0f7ff;
}


.services-grid { position: relative; z-index: 2; }
.card {
    background: var(--white); padding: 50px 30px; border-radius: 45px;
    text-align: center; transition: var(--transition);
    box-shadow: var(--shadow-soft); border: 4px solid transparent;
    position: relative; overflow: hidden;
}


.card:hover { transform: translateY(-20px) scale(1.02); box-shadow: var(--shadow-pop); }
.card-pink:hover { border-color: var(--vibrant-pink); background: linear-gradient(to bottom, white, #fff0f5); }
.card-blue:hover { border-color: var(--vibrant-blue); background: linear-gradient(to bottom, white, #f0f7ff); }
.card-yellow:hover { border-color: var(--vibrant-yellow); background: linear-gradient(to bottom, white, #fffdec); }
.card-mint:hover { border-color: #27ae60; background: linear-gradient(to bottom, white, #f0fff4); }


.card i {
    font-size: 3.5rem; margin-bottom: 25px; width: 100px; height: 100px;
    border-radius: 35px; display: inline-flex; align-items: center; justify-content: center;
    transition: var(--transition); color: white;
}

.card-pink i { background: var(--hover-pink); box-shadow: 0 10px 20px rgba(255, 107, 149, 0.3); }
.card-blue i { background: var(--hover-blue); box-shadow: 0 10px 20px rgba(111, 177, 252, 0.3); }
.card-yellow i { background: var(--hover-yellow); box-shadow: 0 10px 20px rgba(252, 211, 77, 0.3); }
.card-mint i { background: linear-gradient(135deg, #4ade80, #22c55e); box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3); }


.card:hover i { transform: rotate(-10deg) scale(1.1); border-radius: 50%; }


.gallery-item { border-radius: 35px; border: 8px solid white; box-shadow: var(--shadow-soft); }
.gallery-item .overlay { background: linear-gradient(to bottom, rgba(111, 177, 252, 0.6), rgba(167, 139, 250, 0.6)); }

.contact-details i {
    font-size: 1.6rem; color: white; margin-right: 20px;
    background: linear-gradient(135deg, var(--vibrant-pink), var(--vibrant-orange));
    border-radius: 50%; width: 55px; height: 55px;
    box-shadow: 0 8px 20px rgba(255, 107, 149, 0.3);
}

.whatsapp-float {
    background: linear-gradient(135deg, #25d366, #128c7e);
    width: 75px; height: 75px; font-size: 40px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}


@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .navbar { padding: 15px 5%; background: white; }
    .nav-links { background: white; }
    .wave-container svg { height: 100px; } 
    section { padding: 60px 0; }
}


.navbar-logo {
    height: 80px; 
    width: auto; 
    margin-right: 15px; 
    transition: height 0.3s ease; 
}




.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg-light); 
}


.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 85%; 
    height: 85%;
    background-image: url('images/logo.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3; 
    z-index: 1; 
    pointer-events: none;
    
    animation: hero-logo-float 8s ease-in-out infinite;
}


@keyframes hero-logo-float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -48%) scale(1.03); }
}


.hero-content {
    position: relative;
    z-index: 10; 
    pointer-events: auto; 
}


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-hero); 
    opacity: 0.7; 
    z-index: 2; 
}



@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 5%; }
    
    .hero h1 { font-size: 2.5rem; }


    .burger {
        display: block;
        cursor: pointer;
        z-index: 1100; 
    }

    .burger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--text-dark); 
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
    }

    
    .nav-links {
        position: fixed;
        right: -100%; 
        top: 0;
        height: 100vh;
        width: 80%; 
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1050; 
        padding: 0;
    }

    .nav-links.mobile-active {
        right: 0; 
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    
    .burger.toggle .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-pink);
    }
    .burger.toggle .bar:nth-child(2) {
        opacity: 0;
    }
    .burger.toggle .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-pink);
    }
}

#menu {
    background-color: #fffafb; 
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-category {
    background: var(--white);
    padding: 40px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 3px solid transparent;
}

.menu-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.category-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}


.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee; 
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-list .item {
    font-weight: 500;
    color: var(--text-dark);
}

.menu-list .price {
    font-weight: 700;
    color: var(--vibrant-pink);
    background: #fff5f5;
    padding: 4px 12px;
    border-radius: 20px;
}


.menu-footer {
    text-align: center;
    margin-top: 50px;
}

.menu-btn {
    display: inline-flex;
    background: linear-gradient(135deg, var(--vibrant-blue), var(--vibrant-purple));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(111, 177, 252, 0.3);
}


.menu-category.card-blue { border-bottom: 5px solid var(--vibrant-blue); }
.menu-category.card-pink { border-bottom: 5px solid var(--vibrant-pink); }
.menu-category.card-yellow { border-bottom: 5px solid var(--vibrant-yellow); }

.menu-category.card-blue i { color: var(--vibrant-blue); }
.menu-category.card-pink i { color: var(--vibrant-pink); }
.menu-category.card-yellow i { color: var(--vibrant-yellow); }

.nav-contact-btn {
    background: var(--vibrant-pink) !important; 
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    margin-left: 20px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 149, 0.3);
    transition: all 0.3s ease !important;
}

.nav-contact-btn::after {
    display: none !important; 
}

.nav-contact-btn:hover {
    background: var(--vibrant-purple) !important; 
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
}


.menu-btn {
    position: relative;
    overflow: hidden;
    animation: menu-pulse 2s infinite; 
}


.menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    animation: shine-effect 3s infinite;
}


@keyframes menu-pulse {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(111, 177, 252, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(111, 177, 252, 0.5); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(111, 177, 252, 0.3); }
}

@keyframes shine-effect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}


@media (max-width: 768px) {
    .nav-contact-btn {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 80%;
        text-align: center;
    }
}

.nav-contact-btn {
    font-size: 0.95rem !important; 
    padding: 6px 18px !important; 
    margin-left: 15px !important;
    background: var(--vibrant-pink) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 107, 149, 0.2);
    transition: all 0.3s ease !important;
    vertical-align: middle;
}

.nav-contact-btn:hover {
    background: var(--vibrant-purple) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(167, 139, 250, 0.3);
}

.menu-btn {
    position: relative;
    background: linear-gradient(135deg, var(--vibrant-blue), var(--vibrant-purple));
    color: white;
    font-size: 1.2rem;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    animation: menu-float 3s ease-in-out infinite; 
}


.menu-btn::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    z-index: -1;
    background: linear-gradient(45deg, var(--vibrant-pink), var(--vibrant-yellow), var(--vibrant-blue), var(--vibrant-purple));
    background-size: 400%;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50px;
}

.menu-btn:hover::after {
    opacity: 0.6;
    animation: glow-move 8s linear infinite;
}

.menu-btn:hover {
    transform: scale(1.1) rotate(-1deg);
    letter-spacing: 1px;
}

.menu-btn:active {
    transform: scale(0.95); 
}


@keyframes menu-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); } 
}

@keyframes glow-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-link {
    color: var(--vibrant-purple) !important; 
    font-weight: 800; 
    text-decoration: none; 
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--vibrant-pink) !important; 
    transform: scale(1.05); 
}

footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; 
    text-decoration: none;
    white-space: nowrap;
}

.navbar-logo {
    height: 80px; 
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2rem; 
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: linear-gradient(to right, var(--vibrant-pink), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.6rem; 
    color: var(--vibrant-blue);
    -webkit-text-fill-color: initial;
    letter-spacing: -0.5px; 
}


.navbar {
    padding: 15px 8%; 
}


@media (max-width: 992px) {
    .logo-text {
        font-size: 1.6rem;
    }
    .logo-text span {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 60px;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .logo-text span {
        display: inline-block; 
        font-size: 1rem;
    }
}

.navbar {
    display: block; 
    padding: 10px 0; 
    background: rgba(255, 255, 255, 0.85);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
    height: 100%;
}


@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px; 
    }
}