@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: "Roboto", sans-serif;
  color: #333333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 15px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  color: #f5a623;
}

.btn {
  background-color: #f5a623;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #faecd7;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn:focus {
  outline: 2px solid #f5a623;
  outline-offset: 2px;
}

.section {
  padding: 60px 0;
  position: relative;
  width: 100%;
  clear: both;
}

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

/* _animations.scss */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader.active {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f5a623;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.header {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 40px;
}

/* Navigationsmenyn */
.nav {
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.nav a {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f5a623;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
.nav a:hover {
  color: #f5a623;
  transform: translateY(-2px);
}
.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburgermeny med förbättrad animation */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  margin: -4px;
  transition: all 0.3s ease;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333333;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
}
.hamburger:hover span {
  background-color: #f5a623;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .nav a {
    font-size: 24px;
    padding: 15px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }
  .nav a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav a:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav a:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav a:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav a:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav a:nth-child(6) {
    transition-delay: 0.6s;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav.open a {
    opacity: 1;
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
    position: relative;
  }
}
/* _hero.scss */
.hero {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  background: url("../assets/hero-2.webp") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: visible;
  padding-top: 60px;
  margin-bottom: 60px;
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(16px, 3vw, 24px);
  margin-bottom: 30px;
  color: white;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 100dvh;
    padding-top: 60px;
  }
  .hero-content {
    padding: 20px;
  }
}
/* _services.scss */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.service-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

#services h1 {
  font-size: 2.5rem;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
}

#services p {
  text-align: center;
  font-size: 1.1rem;
  color: #333333;
  margin: 0 auto 2rem;
}

.service-p {
  color: white !important;
}

.service-card h2 {
  font-size: 24px;
  margin: 20px;
  color: white;
}

.service-card p {
  font-size: 16px;
  margin: 0 20px 20px;
}

.service-card .btn {
  display: block;
  margin: 0 auto 20px;
}

/* Services Parallax */
.services-parallax-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.parallax-service {
  box-shadow: rgba(0, 0, 0, 0.7) 0px 4px 8px;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: 140%;
  text-decoration: none;
  transition: transform 0.3s ease;
  background-repeat: no-repeat;
}

.parallax-service:hover {
  transform: translateY(-5px);
}

.parallax-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.parallax-service:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.parallax-service.plaster {
  background-image: url("../assets/plaster.webp");
}

.parallax-service.demolition {
  background-image: url("../assets/demolition.webp");
}

.parallax-service.logistics {
  background-image: url("../assets/logistics.webp");
}

.parallax-service.commercial {
  background-image: url("../assets/custom_solutions.webp");
}

.service-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.parallax-service.visible .service-content {
  transform: translateY(0);
  opacity: 1;
}

.service-content h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-content p {
  color: white;
  font-size: 16px;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
  .services-parallax-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-parallax-container {
    grid-template-columns: 1fr;
  }
  .parallax-service {
    aspect-ratio: 1;
    background-attachment: scroll;
  }
}
#service-detail.section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background: #fff;
  z-index: 100;
  padding-top: 70px;
  margin: 0;
}

.service-detail-content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.back-navigation {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: #f5a623;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.back-btn:hover {
  background-color: #faecd7;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  color: #333;
}
.back-btn:focus {
  outline: 2px solid #f5a623;
  outline-offset: 2px;
}

/* Huvudrubriken för detaljsidan */
.service-detail-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f5a623;
  padding-bottom: 10px;
}

/* Ny logisk grid-behållare */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr; /* Staplad på mobil */
  gap: 2rem;
  align-items: start;
}

.service-detail-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/3;
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.service-detail-text h2 {
  margin: 0 0 1rem 0;
  color: #f5a623;
  font-size: 1.8rem;
}
.service-detail-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}
.service-detail-text ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  line-height: 1.6;
  color: #333;
}
.service-detail-text li {
  margin: 0.5rem 0;
}

.service-cta {
  margin: 3rem 0;
  text-align: center;
}

/* Responsiv layout för desktop: Sida vid sida */
@media (min-width: 768px) {
  .service-detail-grid {
    grid-template-columns: 1fr 1fr; /* 50/50 split */
  }
}
/* _about.scss */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.about-text {
  padding-right: 20px;
}

.about-image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-text {
    padding-right: 0;
    order: 1;
  }
  .about-image {
    aspect-ratio: 1/1;
  }
  .about-image-container {
    order: 2;
  }
}
#about h1 {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 1rem;
}

#about p {
  font-size: 1.1rem;
  color: #333333;
  margin: 0 auto 2rem;
}

/* _gallery.scss */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

#gallery h1 {
  font-size: 2.5rem;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
}

#gallery p {
  text-align: center;
  font-size: 1.1rem;
  color: #333333;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.gallery-item {
  margin: 0;
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #666;
  text-align: left;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  color: #f5a623;
}

.pagination-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.page-info {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* _contact.scss */
#contact.section {
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 80px;
}

#contact h1 {
  font-size: 2.5rem;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
}

#contact p {
  text-align: center;
  font-size: 1.1rem;
  color: #333333;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.contact-wrapper {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  align-items: start;
}

.contact-form {
  flex: 3;
  max-width: 720px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: 600;
  color: #333333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f5a623;
  outline: none;
}

.captcha-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#captcha-code {
  background-color: #eeeeee;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  font-family: monospace;
  display: inline-block;
  letter-spacing: 2px;
  color: #333333;
}

.form-error {
  color: red;
  font-size: 0.875rem;
  display: none;
}

.form-success {
  color: green;
  font-size: 1rem;
  margin-top: 1rem;
  display: none;
  animation: fadeIn 0.5s ease;
}

#submit-form {
  background-color: #f5a623;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#submit-form:hover {
  background-color: #faecd7;
  color: #f5a623;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

#submit-form:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .map-container {
    width: 100%;
  }
  #contact h1 {
    font-size: 2rem;
  }
  #submit-form {
    width: 100%;
  }
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

#reviews h1 {
  font-size: 2.5rem;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
}

#reviews p {
  text-align: center;
  font-size: 1.1rem;
  color: #333333;
  max-width: 720px;
  margin: 0 auto 2rem;
}

figure.snip1390 {
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #000000;
  text-align: center;
  font-size: 16px;
  background-color: #f5a623;
  padding: 20px; /* Ändrad från 30px */
  background-image: linear-gradient(-25deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

figure.snip1390.visible {
  opacity: 1;
  transform: translateY(0);
}

figure.snip1390 *,
figure.snip1390 *:before,
figure.snip1390 *:after {
  box-sizing: border-box;
  transition: all 0.35s ease;
}

figure.snip1390 figcaption {
  width: 100%;
}

figure.snip1390 h2,
figure.snip1390 h4,
figure.snip1390 blockquote {
  margin: 0;
}

figure.snip1390 h2,
figure.snip1390 h4 {
  font-weight: 400;
}

figure.snip1390 h2 {
  color: #ffffff;
  font-size: 1.5em;
  margin-bottom: 0.3em;
}

figure.snip1390 h4 {
  color: #000000;
  font-size: 1em;
  margin-bottom: 0.5em;
}

figure.snip1390 blockquote {
  font-size: 1em;
  line-height: 1.5; /* Nytt: Ger lufta mellan textraderna */
  padding: 35px 25px 25px 25px; /* Ändrad: Tar bort den 50px breda vänstermarginalen */
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
}

figure.snip1390 blockquote:before {
  font-family: "FontAwesome";
  content: "“";
  position: absolute;
  font-size: 50px; /* Ändrad: Lite mindre */
  opacity: 0.08; /* Ändrad: Mycket ljusare för att inte störa texten */
  font-style: normal;
  top: -5px; /* Ändrad: Flyttad upp */
  left: 10px; /* Ändrad: Flyttad till vänster */
}

figure.snip1390 .profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  border: solid 5px #ffffff;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Added staggered animation delay */
figure.snip1390:nth-child(2) {
  transition-delay: 0.1s;
}

figure.snip1390:nth-child(3) {
  transition-delay: 0.2s;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2rem;
    padding: 1rem;
  }
}
/* _faq.scss */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

#faq h1 {
  font-size: 2.5rem;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
}

#faq p {
  text-align: center;
  font-size: 1.1rem;
  color: #333333;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question h2 {
  font-size: 20px;
}

.faq-question span {
  font-size: 24px;
  color: #f5a623;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-question:focus {
  outline: 2px solid #f5a623;
  outline-offset: 2px;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background-color: #f2f2f2; /* Ljus neutral bakgrund */
  border-top: 1px solid #ddd;
  padding: 40px 0;
  animation: fadeInUp 0.5s ease-out; /* Lätt animering */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-content {
  /* Grid med 3 kolumner, justeras automatiskt i mindre skärmar */
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px; /* Styr bredden */
  margin: 0 auto; /* Centrera inom sidan */
  padding: 0 20px; /* Sidomarginal i mindre skärmar */
}

/* Varje sektion i footern */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Avstånd mellan element i samma kolumn */
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #f5a623;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
  color: #f5a623;
}

address {
  font-style: normal;
  line-height: 1.4;
}

/* Sociala ikoner */
.social-icon {
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Kopieringsraden längst ner */
.copyright {
  background-color: #eaeaea;
  padding: 15px 0;
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #333333;
}

/* Designerens namn */
.designer-name {
  font-family: "Dancing Script", cursive;
  font-size: 1.5rem !important;
  color: #7f5f37 !important;
}

.designer-p {
  margin: 0px 0px 5px;
  color: #f5a623 !important;
}

/* RESPONSIVITET */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
}
/* _modals.scss */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  padding: 20px;
  box-sizing: border-box;
}

.modal.active {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.modal-content p {
  color: white;
  text-align: center;
  margin-top: 1rem;
  padding: 10px;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 2001;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

@media (max-width: 640px) {
  .modal {
    padding: 10px;
  }
  .close-modal {
    top: 10px;
    right: 10px;
  }
}
#main-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}/*# sourceMappingURL=main.css.map */