/* =======================
   RESET & GRUNDSTIL
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Huvudfärger baserat på loggan */
  --primary-red: #c22126;
  --primary-blue: #1e90ff;
  --primary-green: #00a651;
  --dark-bg: #111927;
  --light-text: #f4f6f8;
  --dark-text: #1a1a1a;
  --accent-yellow: #ffd700;
  --neutral-gray: #6c757d;
}

html,
body {
  font-family: "Poppins", "Inter", Arial, sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =======================
   NAVIGATION
======================= */
.header {
  background-color: rgba(17, 25, 39, 0.95);
  position: fixed;
  top: -100px; /* Starta utanför skärmen */
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  /* Animera header efter 3 sekunder */
  animation: slideDown 0.6s ease-out forwards;
  animation-delay: 3s;
}

@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-title {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green), var(--primary-red));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient 6s ease infinite;
}

.logo img {
  max-height: 60px;
}

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

.nav-links li a {
  text-decoration: none;
  color: var(--light-text);
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-blue);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.admin-link {
  color: var(--primary-red) !important;
}

.admin-link:hover::after,
.admin-link.active::after {
  background-color: var(--primary-red) !important;
}

/* Hamburgermeny */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--light-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  background-color: var(--primary-blue);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
  background-color: var(--primary-blue);
}

/* =======================
   HERO-SEKTION
======================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

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

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 25, 39, 0.3);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-button-container {
  position: relative;
  z-index: 2;
  margin-bottom: 10vh; /* Avstånd från botten av skärmen */
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green), var(--primary-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient 6s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  background-color: var(--primary-blue);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.cta-button:hover {
  background-color: #1a7ae8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.cta-button:active {
  transform: translateY(-1px);
}

.hero-cta {
  font-size: 1.2em;
  padding: 15px 30px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* Mobilanpassning av hero-video */
@media only screen and (max-width: 768px) {
  .hero-video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }
}

/* =======================
   GALLERI SEKTION
======================= */
.gallery {
  padding: 6rem 0;
  background-color: #0c131f; /* Behåller den mörkare nyansen för att sektionen ska sticka ut */
}

.gallery h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-blue);
}

.gallery .subtitle {
  font-size: 1.1rem;
  color: var(--neutral-gray);
  margin-bottom: 3rem;
  text-align: center;
}

/* Galleri - tomt tillstånd */
.gallery-empty {
  padding: 3rem;
  text-align: center;
  background-color: rgba(30, 40, 56, 0.3);
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
}

.gallery-empty p {
  font-size: 1.4rem;
  color: var(--neutral-gray);
  font-style: italic;
}

/* Galleri grid och bilder */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 2rem auto;
  max-width: 1000px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 1/1; /* Gör alla bilder till kvadrater */
  margin: 0 auto; /* Centrera bilderna inom sina celler */
  max-width: 100%;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Viktigt för att bilden ska täcka hela området utan att förvrängas */
  display: block;
}

/* Bildvisare för förstoring */
.image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.image-viewer-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.image-viewer-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.close-viewer {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.close-viewer:hover {
  opacity: 1;
}

.image-viewer-info {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  font-size: 16px;
}

/* Visa alla-knapp */
.view-all-container {
  text-align: center;
  margin: 20px auto;
}

.view-all-button {
  background-color: var(--primary-blue);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
  display: inline-block;
}

.view-all-button:hover {
  background-color: #1a7ae8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

/* Visa alla bilder modal */
.all-images-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.all-images-modal.visible {
  display: block;
  opacity: 1;
}

.all-images-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: rgba(30, 40, 56, 0.8);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  color: white;
}

.all-images-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.all-images-header h2 {
  margin: 0;
  color: white;
  font-size: 24px;
}

.all-images-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.all-images-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.search-container {
  position: relative;
  margin-bottom: 20px;
}

.search-container input {
  width: 100%;
  padding: 12px 15px;
  padding-left: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  transition: all 0.2s;
}

.search-container input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(65, 105, 225, 0.3);
}

.search-container input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}

.all-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.pagination-button {
  background-color: rgba(65, 105, 225, 0.2);
  border: 1px solid rgba(65, 105, 225, 0.3);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-button:hover, .pagination-button.active {
  background-color: rgba(65, 105, 225, 0.8);
}

.pagination-button:disabled {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.pagination-info {
  text-align: center;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.7);
}

.no-results h3 {
  margin-bottom: 10px;
  color: white;
}

/* Responsiv design för galleriet */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* =======================
     KONTAKTSEKTION
  ======================= */
  .contact {
    padding: 6rem 0;
    text-align: center;
  }
  
  .contact h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
  }
  
  .contact > p {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 3rem;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 1rem auto 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(30, 40, 56, 0.7);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 144, 255, 0.1);
  }
  
  .contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--light-text);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(30, 40, 56, 0.5);
    color: var(--light-text);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
  }
  
  .contact-form button {
    margin-top: 1rem;
    align-self: center;
  }
  
  /* =======================
     FOOTER
  ======================= */
  .footer {
    background-color: #0c131f;
    padding: 4rem 0 2rem;
    color: var(--neutral-gray);
    position: relative;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
  }
  
  .footer h3 {
    color: var(--light-text);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-blue);
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links ul li a {
    color: var(--neutral-gray);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer-links ul li a:hover {
    color: var(--primary-blue);
  }
  
  .footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
  }
  
  .footer-copyright {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(108, 117, 125, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
  }
  
  .footer-copyright p {
    margin-bottom: 0.5rem;
  }
  
/* =======================
   BOOKING FORM STYLES
======================= */
.booking-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 25, 39, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto; /* Lägg till scrollning vid behov */
}

.booking-form-container.active {
  opacity: 1;
  visibility: visible;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.booking-form-container::-webkit-scrollbar {
  width: 6px;
}

.booking-form-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.booking-form-container::-webkit-scrollbar-thumb {
  background: rgba(30, 144, 255, 0.5);
  border-radius: 3px;
}

.booking-form-wrapper {
  background-color: rgba(30, 40, 56, 0.95);
  border-radius: 12px;
  padding: 2.5rem;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.4s ease;
  border: 1px solid rgba(30, 144, 255, 0.2);
  margin: 20px; /* Säkerställ margin runt om på mindre skärmar */
}

.booking-form-container.active .booking-form-wrapper {
  transform: translateY(0);
}

.booking-form-wrapper h3 {
  color: var(--primary-blue);
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.booking-form-wrapper p {
  color: var(--light-text);
  text-align: center;
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-form .form-group label {
  color: var(--light-text);
  font-weight: 500;
}

.booking-form .form-group input,
.booking-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(30, 144, 255, 0.3);
  border-radius: 8px;
  background-color: rgba(30, 40, 56, 0.7);
  color: var(--light-text);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none; /* Förbättrar utseendet på iOS */
  appearance: none;
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.4);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.submit-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-blue), #1564c0);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
  flex: 1;
}

.submit-button:hover {
  background: linear-gradient(135deg, #1e90ff, #0e5cb2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.cancel-button {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background-color: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobilanpassning för bokningsformuläret */
@media (max-width: 768px) {
  .booking-form-container {
    align-items: flex-start; /* Ändra från center till flex-start för att hantera skrollning */
    padding: 15px 0; /* Lägg till padding för att ge utrymme */
  }
  
  .booking-form-wrapper {
    padding: 1.5rem;
    width: calc(100% - 30px); /* Ta hänsyn till marginaler */
    margin: 15px;
    max-height: calc(100vh - 30px); /* Begränsa höjden */
    overflow-y: auto; /* Tillåt scrollning i själva formuläret */
  }
  
  .booking-form .form-group input,
  .booking-form .form-group textarea {
    padding: 0.7rem 0.8rem; /* Mindre padding på mobila enheter */
  }
  
  .form-actions {
    flex-direction: column-reverse; /* Ändra ordningen så att huvudknappen kommer först */
    gap: 0.8rem;
  }
  
  .submit-button, .cancel-button {
    width: 100%; /* Fullbredd på knappar */
    padding: 0.8rem;
  }
}

/* Ytterligare justeringar för mycket små skärmar */
@media (max-width: 480px) {
  .booking-form-wrapper {
    padding: 1.2rem;
    margin: 10px;
    width: calc(100% - 20px);
  }
  
  .booking-form-wrapper h3 {
    font-size: 1.4rem;
  }
  
  /* Mindre mellanrum mellan formulärelement */
  .booking-form {
    gap: 1rem;
  }
  
  .booking-form .form-group {
    gap: 0.3rem;
  }
}
  
  /* Framgångsmeddelande för kontaktformuläret */
  .success-message {
    background-color: rgba(0, 166, 81, 0.1);
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
  }
  
  .success-message h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .success-message p {
    color: var(--light-text);
    line-height: 1.6;
  }
  
  /* Ljudkontroll-knapp */
.sound-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.sound-toggle:hover {
  background-color: rgba(30, 144, 255, 0.8);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.6);
}

.sound-toggle:active {
  transform: scale(0.95);
}

.sound-icon {
  font-size: 18px;
  color: white;
  line-height: 1;
}

/* Ikonerna för ljud på/av använder pseudo-element för att skapa symbolen */
.sound-off::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  bottom: 5px;
  left: 0;
  clip-path: polygon(0 30%, 40% 30%, 40% 100%, 0 100%);
}

.sound-off::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 15px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  bottom: 5px;
  left: 4px;
  clip-path: polygon(100% 0, 40% 50%, 100% 100%);
  transform: rotate(-45deg);
}

.sound-on::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  bottom: 5px;
  left: 0;
  clip-path: polygon(0 30%, 40% 30%, 40% 100%, 0 100%);
}

.sound-on::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 15px;
  bottom: 2px;
  left: 4px;
  background: transparent;
  border-right: 2px solid white;
  transform: rotate(45deg);
}

/* Ljud-vågor för ljud på */
.sound-on .wave-1,
.sound-on .wave-2 {
  position: absolute;
  background: transparent;
  border: 1px solid white;
  border-radius: 50%;
}

.sound-on .wave-1 {
  width: 6px;
  height: 10px;
  right: 0;
  top: 4px;
}

.sound-on .wave-2 {
  width: 10px;
  height: 14px;
  right: -4px;
  top: 2px;
}

/* Animering för ljud på/av */
@keyframes soundWave {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.sound-on .wave-1,
.sound-on .wave-2 {
  animation: soundWave 1.5s infinite;
}

.sound-on .wave-2 {
  animation-delay: 0.5s;
}
  
  /* =======================
     RESPONSIVITET
  ======================= */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .hero-content p {
      font-size: 1.2rem;
    }
    
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      height: 70px;
    }
    
    .hamburger {
      display: block;
    }
    
    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background-color: rgba(17, 25, 39, 0.95);
      flex-direction: column;
      padding: 1.5rem;
      gap: 1.5rem;
      transform: translateY(-100%);
      transition: transform 0.3s ease;
      backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
      transform: translateY(0);
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-content p {
      font-size: 1.1rem;
    }
    
    /* Nya regler för beskrivningsrutan som visas när en tjänst är vald */
.service-description {
  position: absolute;
  bottom: -150px; /* Justera detta värde så att rutan hamnar mellan hjulet och "Gå vidare"-knappen */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 40, 56, 0.9);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 80%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 50; /* Se till att den ligger över hjulet */
}

.service-description.visible {
  opacity: 1;
  transform: translateX(-50%);
}

/* Styling för bannerbilden och korta beskrivningen */
.service-banner-description {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-short-description {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-banner {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

    
    .service-image-container {
      margin-right: 0;
      margin-bottom: 1.5rem;
    }
    
    .service-description-content h3 {
      text-align: center;
    }
    
    .booking-form-wrapper {
      padding: 2rem;
    }
    
    .form-actions {
      flex-direction: column;
    }
    
    .cancel-button {
      order: 2;
    }
    
    .submit-button {
      order: 1;
    }
  }
  
  @media (max-width: 576px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .services-wheel h2,
    .gallery h2,
    .contact h2 {
      font-size: 2rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
    }
    
    .footer-logo, 
    .footer-links, 
    .footer-contact {
      text-align: center;
    }
    
    .footer-logo img {
      margin: 0 auto 1rem;
    }
    
    .footer h3:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-contact p {
      justify-content: center;
    }
    
    .service-image {
      width: 100px;
      height: 100px;
    }
  }