/* --- CSS VARIABLES (BeatDrop Theme) --- */
:root {
    --bg-dark: #020617;       /* Very dark blue/black */
    --bg-card: #0f172a;       /* Dark Slate for cards */
    --bg-card-hover: #1e293b; /* Slightly lighter for hover */
    --primary: #3b82f6;       /* Electric Blue */
    --primary-glow: #2563eb;  /* Deeper blue for glows */
    --text-main: #ffffff;
    --text-muted: #94a3b8;    /* Muted grey-blue text */
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-btn: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Glow Effect */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: var(--gradient-btn);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--gradient-btn);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.big-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.sm-btn {
    padding: 0 1rem;
}

/* --- HERO SECTION WITH BACKGROUND IMAGE --- */
.hero {
    position: relative;
    text-align: center;
    padding: 10rem 1rem 8rem; /* Increased padding for a bigger banner */
    /* Replace the URL below with your own image path */
    background-image: url('./assets/band2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay to make text readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.7); /* Dark blue/black overlay with 70% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensures content sits above the overlay */
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff; /* Solid white text for better contrast against the image */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    color: #e2e8f0; /* Lighter text for description */
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1); /* Slightly more visible against image */
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(5px);
}

/* --- SECTIONS GENERAL --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.bg-overlay {
    background: rgba(255,255,255,0.02);
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- CARDS GRID --- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.card:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.2rem;
}

/* --- ADD-ONS STYLES --- */
.addon-wrapper {
    margin-top: 1rem;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    background: transparent;
    border-bottom: 1px solid #333;
}

.addon-row.no-border {
    border-bottom: none;
}

.addon-row span {
    font-size: 0.95rem;
}

.addon-price {
    font-weight: 700;
    color: var(--primary);
}

/* --- FOOTER & CONTACT --- */
.footer-cta {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(59, 130, 246, 0.1) 100%);
    text-align: center;
    padding: 5rem 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

footer {
    background: #000;
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid #222;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.logo-footer {
    margin-bottom: 1rem;
}

.footer-desc {
    color: #666;
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.address-text {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-box {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter-input {
    background: #111;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 50px;
    color: white;
    flex-grow: 1;
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    color: #444;
    font-size: 0.8rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden on mobile for simplicity */
    }
    .hero {
        padding: 6rem 1rem 4rem; /* Smaller padding on mobile */
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .grid-cards {
        grid-template-columns: 1fr;
    }
    .addon-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .addon-price {
        align-self: flex-start;
    }
}