/* Grundinställningar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Färgvariabler för enkel ändring */
:root {
    --primary-color: #00d2ff; /* Snygg neonblå accentfärg */
    --bg-color: #0a0a0a;
    --section-bg: #121212;
}

/* Meny */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Justering för logotypen */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo span, h2 span, h1 span {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Hero Sektion (Startsida) */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516280440502-614f85e48358?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Knappar */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

/* Sektioner */
.section {
    padding: 100px 20px;
    text-align: center;
}

.dark-section {
    background-color: var(--section-bg);
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 30px;
}

/* Musik-platshållare */
.music-placeholder {
    background: #1a1a1a;
    padding: 60px 20px;
    border: 1px dashed #333;
    border-radius: 8px;
    color: #666;
}

/* Sidfot */
footer {
    text-align: center;
    padding: 30px;
    background: #050505;
    color: #555;
    font-size: 0.9rem;
}

/* Responsiv anpassning för mobil */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .nav-links {
        margin-top: 15px;
        gap: 15px;
        flex-wrap: wrap;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* ==========================================
   CSS för Paket och Priser
   ========================================== */
.pricing-section {
  padding: 80px 20px;
  background-color: #111;
  color: #fff;
}

.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 40px 30px;
  flex: 1 1 350px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.highlight {
  border-top: 4px solid #e1b12c;
}

.package-name {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
  text-align: center;
}

.package-name .subtitle {
  font-size: 1rem;
  font-weight: normal;
  color: #aaa;
}

.package-price {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px 0;
  color: #e1b12c;
}

.divider {
  border: 0;
  height: 1px;
  background: #333;
  margin: 20px 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.package-features li {
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
  color: #ccc;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e1b12c;
  font-weight: bold;
}

.book-btn {
  display: inline-block;
  text-align: center;
  background-color: #e1b12c;
  color: #111;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #f1c40f;
}