body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0b0c10 0%, #1f2833 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

/* Enhanced Navbar Styles */
.navbar {
    background-color: rgba(31, 40, 51, 0.95);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-logo {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: #66FCF1;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #66FCF1;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: #66FCF1;
}

.nav-link.active::after {
    width: 80%;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
    width: 220px;
    transition: width 0.3s ease;
}

.search-container:focus-within {
    width: 280px;
}

.search-box {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 40px 10px 20px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(102, 252, 241, 0.3);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #66FCF1;
    font-size: 16px;
}

.order-now-btn {
    background-color: #66FCF1;
    color: #1f2833;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-now-btn:hover {
    background-color: #45A29E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile menu icon */
.mobile-menu-icon {
    display: none;
    font-size: 24px;
    color: #66FCF1;
    cursor: pointer;
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .navbar-links {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .search-container {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .order-now-btn {
        display: none;
    }
    
    .search-container {
        width: 150px;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0.7), rgba(31, 40, 51, 0.9));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #c5c6c7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #66FCF1;
    color: #1f2833;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #45a29e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #66FCF1;
    border: 2px solid #66FCF1;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: rgba(102, 252, 241, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #66FCF1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: #1f2833;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #66FCF1;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    color: #c5c6c7;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #1f2833;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 15px;
    color: #c5c6c7;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c5c6c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #66FCF1;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #66FCF1;
    color: #1f2833;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    color: #aaa;
    font-size: 0.9rem;
}

.copyright a {
    color: #66FCF1;
    text-decoration: none;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1f2833;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    border: 1px solid rgba(102, 252, 241, 0.3);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-cart:hover {
    transform: scale(1.05);
}

.cart-icon {
    font-size: 24px;
    color: #66FCF1;
}

.cart-total {
    color: #fff;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.cart-count {
    background-color: #66FCF1;
    color: #1f2833;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
} 