/* style.css */
:root {
    --bg-dark: #0b0f1a;
    --card-bg: #161b2b;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899; /* Vibrant pink like your example */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
}

/* Vibrant Hero Section */
.hero {
    background: linear-gradient(rgba(11, 15, 26, 0.8), rgba(11, 15, 26, 0.8)), 
                url('assets/hero-bg.jpg'); /* Add a techy background image here */
    background-size: cover;
    padding: 100px 10%;
    text-align: left;
    border-bottom: 3px solid var(--accent-pink);
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Glow Buttons */
.btn-primary {
    background: var(--accent-pink);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

/* Feature Bar (Instant Delivery, etc.) */
.feature-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(59, 130, 246, 0.1);
    padding: 20px;
    margin: 20px 5%;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}