/* Globala stilar */
:root {
    --header-height: 60px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
html { scroll-behavior: smooth; }

.header {
    background-color: #282c34; color: white; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); z-index: 100;
}
.menu-button { background: none; border: none; color: white; font-size: 1.5em; cursor: pointer; }
.nav { display: flex; }

/* Mobil & Responsivitet */
@media (min-width: 768px) { .menu-button { display: none; } }
@media (max-width: 767px) {
    .nav {
        display: none; position: absolute; top: var(--header-height); left: 0; width: 100%;
        background-color: #282c34; flex-direction: column; align-items: center;
    }
    .nav.open { display: flex; }
    .nav a { padding: 15px 20px; width: 100%; text-align: center; border-top: 1px solid #3a3f47; }
}

.one-page-app main { padding-top: var(--header-height); }
.section-container {
    min-height: 100vh; padding: 80px 20px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; border-bottom: 1px solid #ddd;
}

.home-section {
    background-size: cover; color: white; text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    background-position: center center;
}

.background-video {
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
        position: absolute;
    z-index: -1;
    width: auto;
    height: 100vh;
    top: 0;
}


.about-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Intro */
.intro-section {
  text-align: center;
  margin-bottom: 80px;
}

.intro-section h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.cta-button {
  background: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}

/* Fördelar Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  border-bottom: 4px solid #007bff;
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

/* Format Sektion */
.formats-section {
  background: #f0f4f8;
  padding: 40px;
  border-radius: 15px;
  margin-top: 60px;
}

.formats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.format-category {
  flex: 1;
  min-width: 280px;
}

.format-category ul {
  list-style: none;
  padding: 0;
}

.format-category li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.format-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.pricing-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-category {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.price-category h3 {
  color: #007bff;
  margin-top: 0;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

.start-fee {
  font-weight: bold;
  color: #555;
  margin-bottom: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

th, td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #dee2e6;
}

th {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
}

.simple-price-box {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.price-tag {
  font-weight: bold;
  font-size: 1.2rem;
  color: #28a745;
}

@media (max-width: 480px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
  
  table {
    font-size: 0.85rem;
  }
}

/* Befintlig CSS */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex; /* Använd flexbox för att centrera innehållet */
  align-items: center; /* Centrera vertikalt */
  justify-content: center; /* Centrera horisontellt */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Videon bakom overlay och text */
}

/* Lägg till ett overlay för bättre läsbarhet, om du inte redan har det */
.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Mörkare overlay för bättre kontrast */
  z-index: -1; /* Mellan video och text */
}

/* NY CSS FÖR HERO-INNEHÅLLET */
.hero-content {
  position: relative; /* För att vara ovanför overlay */
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 3.5rem; /* Större och mer impact */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Lägg till skugga för läsbarhet */
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Mellan knappar */
  flex-wrap: wrap; /* För responsivitet */
}

.hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
}

.hero-button.primary {
  background-color: #007bff; /* Blå färg */
  color: white;
  border: 2px solid #007bff;
}

.hero-button.primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.hero-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Responsivitet för mindre skärmar */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column; /* Knappar staplas på mobilen */
    gap: 15px;
  }
  .hero-button {
    width: 80%; /* Knapparna blir bredare */
    margin: 0 auto;
  }
}

.contact-section {
  padding: 80px 20px;
  background-color: #f4f7f9; /* Ljusgrå/blå bakgrund för kontrast mot vita sektioner */
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Info till vänster, formulär till höger */
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-details {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
  color: #007bff;
}

/* Formulär-styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
}

.form-group input, 
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #edf2f7;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.submit-button {
  background-color: #007bff;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 10px;
}

.submit-button:hover {
  background-color: #0056b3;
}

.submit-button:active {
  transform: scale(0.98);
}

/* Responsivitet */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr; /* Stapla info och formulär på mobilen */
    padding: 25px;
  }
  
  .contact-info {
    text-align: center;
  }
}