:root {
    --navy: #1a1a2e;
    --navy2: #16213e;
    --gold: #ffd166;
    --orange: #d35400;
    --light: #f7f7f7;
    --dark: #222;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: #333;
    line-height: 1.6;
}
header {
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    color: white;
    padding: 16px 5%;
}
.nav-container {
    max-width: 1200px; margin: auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; flex-wrap: wrap;
}
.logo { font-size: 24px; font-weight: bold; }
.logo span { color: var(--gold); }
nav { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
nav a { color: white; text-decoration: none; font-weight: bold; }
nav a:hover, nav a.active { color: var(--gold); }
.cart-button {
    background: var(--gold); color: #222; border: 0; padding: 10px 16px;
    border-radius: 24px; cursor: pointer; font-weight: bold;
}
.hero {
    min-height: 520px; display: grid; place-items: center; text-align: center;
    color: white; padding: 80px 20px;
    background:
      linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
      url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}
.hero-content { max-width: 850px; }
.hero h1 { font-size: clamp(38px, 6vw, 62px); margin: 0 0 10px; }
.hero h2 { color: var(--gold); font-size: clamp(20px, 3vw, 30px); }
.hero p { font-size: 19px; max-width: 720px; margin: 20px auto; }
.btn {
    display: inline-block; background: var(--gold); color: #222;
    text-decoration: none; border: 0; padding: 14px 26px;
    border-radius: 28px; font-size: 17px; font-weight: bold; cursor: pointer;
}
.btn:hover { background: white; }
.btn.secondary { background: var(--navy); color: white; }
.btn.orange { background: var(--orange); color: white; }
section { padding: 70px 5%; }
.container { max-width: 1200px; margin: auto; }
.narrow { max-width: 850px; }
.section-title { text-align: center; margin-bottom: 35px; }
.section-title h1, .section-title h2 { color: var(--navy); margin-bottom: 10px; }
.cards, .packages { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.card, .package, .form-card, .cart-box, .audio-card {
    background: white; border-radius: 12px; padding: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,.09);
}
.card { flex: 1 1 280px; text-align: center; }
.step-number {
    width: 50px; height: 50px; border-radius: 50%; display: grid;
    place-items: center; margin: 0 auto 14px; background: var(--gold);
    font-weight: bold; font-size: 22px;
}
.package { width: min(100%, 340px); text-align: center; position: relative; }
.package.featured { border: 3px solid var(--gold); }
.badge { background: var(--gold); padding: 5px 12px; border-radius: 15px; font-weight: bold; display: inline-block; }
.price { font-size: 34px; color: var(--orange); font-weight: bold; margin: 12px 0; }
.package ul { list-style: none; padding: 0; text-align: left; }
.package li { padding: 7px 0; border-bottom: 1px solid #eee; }
.audio-card { margin: 20px 0; }
audio { width: 100%; margin-top: 10px; }
.muted { color: #666; }
.form-card { max-width: 850px; margin: auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-weight: bold; margin-bottom: 7px; }
input, select, textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 7px;
    font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.cart-row {
    display: flex; justify-content: space-between; gap: 15px; align-items: center;
    padding: 15px 0; border-bottom: 1px solid #ddd;
}
.remove-btn { background: #e74c3c; color: white; border: 0; border-radius: 6px; padding: 7px 10px; cursor: pointer; }
.total { text-align: right; font-size: 22px; font-weight: bold; padding-top: 18px; }
.notice {
    background: #fff4cf; border-left: 5px solid var(--gold); padding: 15px;
    margin: 20px 0; border-radius: 6px;
}
footer { background: #111; color: white; text-align: center; padding: 35px 20px; }
footer p { margin: 6px 0; }
/* Social Media & Music Links */
.social-links {
    margin: 18px 0;
}

.social-links a {
    display: inline-block;
    background: var(--gold);
    color: #222;
    text-decoration: none;
    font-weight: bold;
    padding: 9px 16px;
    margin: 5px 3px;
    border-radius: 20px;
    transition: 0.2s;
}

.social-links a:hover {
    background: white;
    transform: translateY(-2px);
}
@media (max-width: 700px) {
    .nav-container { justify-content: center; text-align: center; }
    nav { justify-content: center; }
    .form-grid { grid-template-columns: 1fr; }
}
