/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b35;
  --secondary-color: #004e89;
  --dark-color: #1a1a1a;
  --light-color: #f5f5f5;
  --text-color: #333333;
  --text-light: #666666;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
.navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.container-full {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 40px;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  white-space: nowrap;
}

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

.nav-menu a[target="_blank"]::after {
  content: "↗";
  margin-left: 4px;
  font-size: 12px;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-outline:hover {
  background: var(--text-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.8),
    rgba(0, 78, 137, 0.8)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Belief Section */
.belief-section {
  padding: 80px 0;
  background: #1a1a1a;
  position: relative;
}

.belief-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 60px;
  align-items: center;
}

.belief-text h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 600;
}

.belief-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.belief-list {
  list-style: none;
  padding: 0;
}

.belief-list li {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

.belief-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 24px;
  line-height: 1;
}

.belief-cta {
  display: flex;
  align-items: center;
}

.btn-belief-cta {
  display: inline-block;
  padding: 15px 35px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-belief-cta:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Belief Section */
@media (max-width: 1200px) {
  .belief-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }

  .belief-cta {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .belief-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .belief-text h2 {
    font-size: 32px;
  }

  .belief-lists {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .belief-list li {
    text-align: left;
    font-size: 16px;
  }

  .btn-belief-cta {
    width: 100%;
    max-width: 300px;
  }
}

/* Two Clubs Section */
.two-clubs {
  padding: 0;
  background: white;
}

.two-clubs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.clubs-images {
  position: relative;
  overflow: hidden;
}

.clubs-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clubs-image-overlay {
  position: absolute;
  bottom: 40px;
  right: -50px;
  width: 300px;
  height: 400px;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.clubs-content {
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: #f8f8f8;
}

.clubs-text {
  max-width: 500px;
  padding-left: 80px;
}

.clubs-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.clubs-text h2 {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 30px;
  color: var(--dark-color);
  font-weight: 700;
}

.clubs-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 30px;
}

.clubs-text p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.clubs-buttons {
  display: flex;
  gap: 20px;
}

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

.btn-outline-dark:hover {
  background: var(--dark-color);
  color: white;
}

.btn-dark {
  background: var(--dark-color);
  color: white;
  border: 2px solid var(--dark-color);
}

.btn-dark:hover {
  background: #333;
  border-color: #333;
}

/* Responsive Two Clubs */
@media (max-width: 968px) {
  .two-clubs-wrapper {
    grid-template-columns: 1fr;
  }

  .clubs-images {
    height: 400px;
  }

  .clubs-image-overlay {
    width: 200px;
    height: 280px;
    right: 20px;
    bottom: 20px;
  }

  .clubs-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .clubs-text h2 {
    font-size: 48px;
  }

  .clubs-buttons {
    flex-direction: column;
  }

  .clubs-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* Classes Section */
.classes-section {
  padding: 80px 0;
  background: var(--light-color);
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.class-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.class-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.class-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  display: block;
}

.class-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.class-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 53, 0);
  transition: var(--transition);
  pointer-events: none;
}

.class-image:hover::after {
  background: rgba(255, 107, 53, 0.2);
}

.class-image:hover img {
  transform: scale(1.1);
}

/* Add a view more indicator on hover */
.class-image::before {
  content: "Läs mer →";
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.class-image:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.class-card h3 {
  padding: 20px 20px 15px;
  font-size: 22px;
  color: var(--dark-color);
}

.class-card p {
  padding: 0 20px 25px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Les Mills Section */
.lesmills-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.lesmills-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  min-height: 500px;
}

.lesmills-background {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, #d64545, #ff6b35);
  z-index: 1;
  transform: skew(-5deg);
}

.lesmills-image-container {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  z-index: 2;
}

.lesmills-image-container img {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.lesmills-content-box {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: #2c2c2c;
  padding: 60px;
  max-width: 500px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lesmills-content-box h2 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 600;
}

.lesmills-content-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-lesmills {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-lesmills:hover {
  background: #ffffff;
  color: #2c2c2c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Les Mills */
@media (max-width: 1200px) {
  .lesmills-background {
    width: 70%;
  }

  .lesmills-image-container {
    width: 45%;
    left: 5%;
  }

  .lesmills-content-box {
    right: 5%;
    padding: 40px;
    max-width: 450px;
  }
}

@media (max-width: 968px) {
  .lesmills-section {
    padding: 60px 0;
  }

  .lesmills-wrapper {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .lesmills-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    transform: none;
  }

  .lesmills-image-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 90%;
    max-width: 400px;
    margin-bottom: -50px;
    z-index: 2;
  }

  .lesmills-content-box {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 40px 30px;
    z-index: 1;
  }

  .lesmills-content-box h2 {
    font-size: 36px;
  }

  .btn-lesmills {
    width: 100%;
    text-align: center;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--light-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 350px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Contact Form Section */
.contact-form-section {
  position: relative;
  background: #f5f5f5;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-form-image {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.contact-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-container {
  background: #2c2c2c;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.contact-form-container h2 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0 0 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.form-group label {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-25px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 10px;
}

.btn-submit {
  margin-top: 30px;
  padding: 15px 50px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover:not(:disabled) {
  background: #ffffff;
  color: #2c2c2c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form Success Message */
.form-success {
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
}

/* Form Error Message */
.form-error {
  background: #ef4444;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
}

/* Form Message Animation */
.form-message {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Contact Form */
@media (max-width: 968px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-image {
    height: 300px;
  }

  .contact-form-container {
    padding: 40px 30px;
  }

  .contact-form-container h2 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ffffff;
}

.footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
  text-transform: capitalize;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-column p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-column p a:hover {
  color: var(--primary-color);
}

.btn-footer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-footer-cta:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.booking-rules {
  margin-top: 15px;
}

.booking-rules a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  font-size: 14px;
}

.opening-hours {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.opening-hours strong {
  color: #ffffff;
  font-weight: 600;
}

.mt-20 {
  margin-top: 20px;
}

.hours-note {
  font-style: italic;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

/* Footer Bottom Bar */
.footer-bottom {
  background: var(--primary-color);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
  transition: var(--transition);
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 180px 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }

  .footer-column:last-child {
    border-bottom: none;
  }
}

/* ==================== */
/* BLI MEDLEM PAGE STYLES */
/* ==================== */

/* Page Hero */
.page-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.page-hero-centered {
  text-align: center;
}

.page-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-hero-centered h1 {
  font-size: 72px;
  font-weight: 800;
}

.hero-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
}

/* Membership CTA Section */
.membership-cta-section {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.membership-cta-section h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.cta-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-button-wrapper {
  margin-top: 40px;
}

.btn-outline-primary {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--dark-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Memberships Section */
.memberships-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.membership-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.membership-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.membership-card.featured {
  border: 2px solid var(--primary-color);
}

.card-header {
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.card-header h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price .amount {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
}

.price .period {
  font-size: 18px;
  color: var(--text-light);
}

.membership-card .description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.price-options {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.price-option {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.price-option:last-child {
  border-bottom: none;
}

.option-label {
  font-weight: 500;
  color: var(--text-color);
}

.option-price {
  font-weight: 600;
  color: var(--dark-color);
}

.card-footer {
  margin-top: 25px;
}

.terms {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff8e1;
  border-radius: 8px;
}

.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #ff8555;
  transform: translateY(-2px);
}

/* Additional Membership Cards */
.additional-memberships {
  padding: 60px 0;
  background: #f8f8f8;
}

.additional-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.membership-card-dark {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.card-dark-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.card-dark-content h3 {
  color: white;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 20px;
}

.price-large {
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

.btn-red {
  display: inline-block;
  padding: 12px 40px;
  background: #ef4444;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-red:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* LKAB Section */
.lkab-section {
  padding: 60px 0;
  background: var(--primary-color);
}

.lkab-content {
  text-align: center;
  color: white;
}

.lkab-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.lkab-content p {
  font-size: 18px;
}

.lkab-content a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.lkab-content a:hover {
  opacity: 0.9;
}

/* Other Memberships */
.other-memberships {
  padding: 80px 0;
  background: white;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.other-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.other-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.other-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.other-card .card-image {
  height: 200px;
  overflow: hidden;
}

.other-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-card h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
  color: var(--dark-color);
}

.price-tag {
  padding: 0 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.other-card p {
  padding: 0 20px 25px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Consultation CTA */
.consultation-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), #ff8555);
  color: white;
}

.consultation-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.consultation-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.consultation-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-white {
  display: inline-block;
  padding: 15px 40px;
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive for BLI MEDLEM page */
@media (max-width: 968px) {
  .page-hero h1 {
    font-size: 42px;
  }

  .membership-cards-grid {
    grid-template-columns: 1fr;
  }

  .membership-cta-section h2 {
    font-size: 28px;
  }

  .additional-cards-grid {
    grid-template-columns: 1fr;
  }

  .membership-card-dark {
    min-height: 350px;
  }

  .consultation-content h2 {
    font-size: 32px;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-wrapper {
    grid-template-columns: 180px 1fr auto;
    gap: 20px;
  }

  .nav-menu {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 13px;
  }
}

@media (max-width: 968px) {
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-center,
  .header-buttons {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    gap: 20px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    font-size: 16px;
    padding: 10px 0;
    display: block;
  }

  /* Show header buttons in mobile menu */
  .nav-menu.active::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: #e0e0e0;
    margin: 20px auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .two-clubs-grid,
  .lesmills-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clubs-text h2,
  .lesmills-content h2,
  .section-title {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-item {
    height: 250px;
  }
}

/* ============================================
   BOKNINGSREGLER PAGE STYLES
   ============================================ */

.page-hero-simple {
  background: var(--primary-color);
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero-simple h1 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.rules-section {
  padding: 60px 0;
  background: white;
}

.rules-content {
  max-width: 800px;
  margin: 0 auto 50px;
}

.rule-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.rule-item:last-child {
  border-bottom: none;
}

.rule-number {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.rule-item.rule-warning .rule-number {
  background: #e74c3c;
}

.rule-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.rule-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.rule-text strong {
  color: var(--dark-color);
  font-weight: 600;
}

.rule-item.rule-warning {
  background: #fff5f5;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #e74c3c;
}

.rules-cta {
  text-align: center;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.rules-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.rules-cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 180px;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-hero-simple {
    padding: 50px 0 30px;
  }

  .page-hero-simple h1 {
    font-size: 32px;
  }

  .rules-section {
    padding: 40px 0;
  }

  .rules-content {
    margin-bottom: 30px;
  }

  .rule-item {
    gap: 15px;
    padding: 15px 0;
  }

  .rule-number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .rule-text p {
    font-size: 15px;
  }

  .rules-cta {
    padding: 30px 20px;
  }

  .rules-cta h2 {
    font-size: 26px;
  }

  .rules-cta p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ==================== */
/* VÅRA PASS PAGE STYLES */
/* ==================== */

/* Page Hero Dark */
.page-hero-dark {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-dark .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-hero-dark .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-dark .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.page-hero-dark .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.page-hero-dark h1 {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: white;
}

.page-hero-dark .hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Classes Category Section */
.classes-category-section {
  padding: 80px 0;
  background: white;
}

.category-dark {
  background: #f8f8f8;
}

.category-header {
  text-align: center;
  margin-bottom: 60px;
}

.category-header h2 {
  font-size: 42px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.category-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Classes List */
.classes-list {
  max-width: 900px;
  margin: 0 auto;
}

.class-item {
  display: flex;
  gap: 30px;
  padding: 30px;
  margin-bottom: 25px;
  background: #f8f8f8;
  border-radius: 15px;
  transition: var(--transition);
}

.class-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.class-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.class-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.class-content {
  flex: 1;
}

.class-content h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.class-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Virtual Classes Grid */
.virtual-classes-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.virtual-class-card {
  max-width: 600px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.virtual-class-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.virtual-class-info {
  padding: 40px;
}

.virtual-class-info h4 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.virtual-class-info ul {
  list-style: none;
  padding: 0;
}

.virtual-class-info ul li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.virtual-class-info ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.virtual-cta {
  text-align: center;
}

.virtual-cta p {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 30px;
}

/* Pass CTA Section */
.pass-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), #ff8555);
}

.pass-cta-section .cta-content {
  text-align: center;
  color: white;
}

.pass-cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.pass-cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.pass-cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pass-cta-section .btn-primary {
  background: white;
  color: var(--primary-color);
}

.pass-cta-section .btn-primary:hover {
  background: #f0f0f0;
}

.pass-cta-section .btn-outline-dark {
  border-color: white;
  color: white;
}

.pass-cta-section .btn-outline-dark:hover {
  background: white;
  color: var(--primary-color);
}

/* Responsive Våra Pass */
@media (max-width: 768px) {
  .page-hero-dark h1 {
    font-size: 42px;
  }

  .page-hero-dark .hero-subtitle {
    font-size: 18px;
  }

  .class-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .class-item:hover {
    transform: translateX(0) translateY(-5px);
  }

  .class-icon {
    margin: 0 auto;
  }

  .virtual-class-info {
    padding: 30px 20px;
  }

  .pass-cta-section h2 {
    font-size: 36px;
  }

  .pass-cta-section .cta-buttons {
    flex-direction: column;
  }

  .pass-cta-section .cta-buttons .btn {
    width: 100%;
  }
}
