/* Base Styles */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Knewave&family=Quicksand:wght@300..700&family=Story+Script&family=Ubuntu:wght@300&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');:root {
    --primary-color: #0b0769;
    --secondary-color: #ffffff;
    --accent-color: #0b0769;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
} */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Knewave&family=Quicksand:wght@300..700&family=Story+Script&family=Ubuntu:wght@300&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --primary-color: #0b0769;
    --secondary-color: #ffffff;
    --accent-color: #0b0769;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    
}
.story-script-regular {
  font-family: "Story Script", sans-serif;
  font-weight: 400;
  font-style: normal;
}



.btn {
    display: inline-block;
    background-color: #48439e;
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.btn:hover {
    background-color: #211e6b;
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container100 {
    display: flex;
    flex-direction: column;
    /* align-items: left; */
}
.logo-container1{
    display: flex;
    flex-direction: row;
    /* align-items: flex-start; */
}
.logo-text-wrap-wrap {
    display: flex;
    flex-direction: column; /* Stack text vertically */
    color: #545183;
    
}
.logo-text10 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 15px;
    margin-left: 10px;
}

.logo-text20 {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
}

.logo-main {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 5px;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 35px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: url(images/vecteezy_healthy-blueberry-fruit-smoothies-generative-ai_29551784.jpg);
    background-size: cover;
    background-position: 10% 0%;
    background-repeat: no-repeat;
    background-color: var(--secondary-color);
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3rem;
    /* margin-bottom: 1.5rem; */
    letter-spacing: 2px;
    font-weight: 500;
    color: #ffffff;
    background-blend-mode: black;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 1.5rem auto;
}

/* Features Section */
.features {
    background-color: var(--secondary-color);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    font-weight: 400;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    padding: 40px 20px;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.benefits .section-title {
    color: var(--light-text);
}

.benefits .section-title:after {
    background-color: var(--light-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.benefit {
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: scale(1.05);
}

.benefit i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.benefit h4 {
    font-size: 1rem;
    font-weight: 400;
}

/* Products Section */
.products {
    background-color: var(--secondary-color);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product {
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid var(--border-color);
}

.product.visible {
    opacity: 1;
    transform: translateY(0);
}

.product:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 25px;
}

.product h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product p {
    color: #666;
    font-size: 0.9rem;
}

.price {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-section p, .footer-section a {
    color: #ccc;
    margin-bottom: 0.8rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--light-text);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 300;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #09055a;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-container {
        align-items: center;
        margin-bottom: 15px;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav li {
        margin: 0 15px 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .mobile-nav {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav ul {
        flex-direction: column;
    }

    .mobile-nav li {
        margin: 10px 0;
    }
    
    .desktop-nav {
        display: none;
    }
}

.logo{
    height: 8l0px;
    width: 80px;
}