* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: #0d0d0d;
  color: #ededed;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

header {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  height: 300px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4;
}

h1 {
  color: #e9a135;
  font-size: clamp(3rem, 5vw, 3rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

nav .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

nav .menu li a:hover,
nav .menu .active {
  text-decoration: underline;
  text-underline-offset: 6px;
  color: #e4a74b;
}

main {
  background: #0d0d0d;
  padding: 2rem;
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.bold {
  font-weight: bold;
}

.link {
  color: #e4a74b;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.link:hover {
  color: #c6863c;
}

figure {
  text-align: center;
}

figcaption {
  color: #969696;
}

.gallery {
  gap: 25px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e4a74b;
  opacity: 0.8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.gallery-img:hover {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0px 4px 15px rgba(228, 167, 75, 0.5);
}

.image {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  margin: 0 auto;
}

.breadcrumb {
  list-style: none;
  display: flex;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
  color: #e4a74b;
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.breadcrumb li + li::before {
  content: "/";
  color: #e4a74b;
  margin: 0 8px;
}

.breadcrumb li[aria-current="page"] {
  color: #f7f7f7;
}

.center {
  text-align: center;
}

details {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-align: start;
}

details[open] {
  background: rgba(255, 255, 255, 0.3);
}

details:hover {
  background: rgba(255, 255, 255, 0.2);
}

summary {
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

details p {
  padding: 10px;
}

.cta {
  background: linear-gradient(135deg, #fab957, #6f420e);
  color: #fff;
  border-radius: 10px;
}

q {
  font-style: italic;
  font-size: 30px;
  text-align: center;
}

.faq,
.container {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 20px;
  text-align: center;
}

form {
  width: 60%;
  padding: 30px;
  background: #1e1e1e;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.form-group {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
}

.form-group label {
  font-weight: bold;
  color: #e4a74b;
  text-align: left;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 90%;
  padding: 15px;
  border: 1px solid #363636;
  border-radius: 8px;
  background: #101010;
  color: #e2e2e2;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e4a74b;
  box-shadow: 0 0 5px rgba(228, 167, 75, 0.8);
}

footer {
  text-align: center;
  padding: 2rem 0;
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav ul li {
  display: inline-block;
}

.footer-nav ul li a {
  color: #e4a74b;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  font-weight: bold;
  color: #f9ce79;
  text-shadow: 0 0 5px rgba(228, 167, 75, 0.7);
}

.name {
  color: #e4a74b;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px groove #e4a74b;
  border-top: 2px groove #e4a74b;
  padding: 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7);
}

.button {
  background-color: #f8c86f;
  color: #000;
  padding: 12px 28px;
  border: none;
  border-radius: 30px; /* Mer rundad form */
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.button:hover {
  background-color: #ffd089;
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  header video {
    width: auto;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
  }

  form {
    width: 80%;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    row-gap: 30px;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  }

  nav .menu {
    flex-direction: column;
    gap: 8px;
  }

  form {
    width: 90%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 40px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  form {
    width: 100%;
  }

  nav .menu li a {
    padding: 8px;
  }

  main {
    width: 90%;
  }
}
