body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  text-align: center;
}

/* Gennemsigtig navbar */
.navbar-transparent {
  background-color: rgba(0, 0, 0, 0.4); /* semi-gennemsigtig sort */
  transition: background-color 0.3s ease;
}

/* Scroll-effekt: bliver mere tydelig ved scroll */
window.addEventListener('scroll', () => {
  const navbar = document.querySelector('.navbar-transparent');
  if (window.scrollY > 50) {
    navbar.style.backgroundColor = 'rgba(0,0,0,0.8)';
  } else {
    navbar.style.backgroundColor = 'rgba(0,0,0,0.3)';
  }
});

/* Navbar-brand styling */
/* Navbar brand */


/* --- Navbar Brand --- */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

.navbar-brand .logo {
  height: 50px;
  width: auto;
}

.navbar-brand:hover {
  color: #f5b400 !important;
}

/* --- Navbar links --- */
.navbar-nav .nav-link {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  color: #fff !important;
  letter-spacing: 0.5px !important;
  transition: color 0.2s ease !important;
}

.navbar-nav .nav-link:hover {
  color: #f5b400 !important;
}

.navbar-nav .dropdown-item {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #fff !important;
}

.navbar-nav .dropdown-item:hover {
  color: #f5b400 !important;
}

/* --- Mobiloptimering --- */
@media (max-width: 768px) {
  /* Fjern container-wrap, hamburger og brand på én linje */
  .navbar .container {
    flex-wrap: nowrap;
    position: relative;
    z-index: 9999;
  }

  /* Navbar-collapse fylder hele skærmen */
  .navbar-collapse {
    position: fixed;        /* overlay */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;          /* hele højden */
    background-color: rgba(0,0,0,0.95); /* mørk overlay */
    padding-top: 80px;      /* lidt afstand fra toppen */
    display: none;          /* skjult som standard */
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow-y: auto;
    z-index: 9999;
  }

  /* Vis menuen når den har klassen 'show' */
  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1.3rem;
    color: #fff !important;
  }

  /* Dropdown-menu på mobilen fylder også hele skærmen */
  .navbar-nav .dropdown-menu {
    position: static;       /* en del af flowet */
    float: none;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    border: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .navbar-nav .dropdown-item {
    padding: 12px 20px;
    text-align: center;
    font-size: 1.1rem;
  }

  /* Hamburger-knappen */
  .navbar-toggler {
    margin-left: auto;
    z-index: 10000;          /* over overlay */
  }
}


.courses-title {
  width: 100%;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 50px;
  letter-spacing: 1px;
  position: relative;
}

/* Dekorativ streg under titlen */
.courses-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #000;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Responsivt */
@media (max-width: 768px) {
  .courses-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .courses-title::after {
    width: 60px;
    height: 3px;
  }
}

/* Hero container */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90vh; /* næsten fuld skærmhøjde */
  background-image: url('/images/bg1.jpg'); /* dit baggrundsbillede */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 20px;
}

.hero-content {
  color: #fff;
  max-width: 800px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
}

/* Understregning / dekorativ streg */
.hero-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background-color: #fff;
  margin: 15px auto 0;
  border-radius: 3px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #f5b400; /* gyldent lys */
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #e0a500;
  transform: scale(1.05);
}

/* --- Responsiv --- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-btn {
    padding: 12px 25px;
  }
}


/* Courses sektion */
.courses {
  text-align: center; /* Titel og subtitle centreret */
  padding: 50px 20px;
}

.courses-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.courses-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 40px;
}

/* Wrapper for kortene */
.courses-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Kortene */
.course-card {
  background-color: #f9f9f9;
  border: 4px solid #000;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  width: 320px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Lottie container */
.lottie {
  width: 175px;
  height: 175px;
  margin: 0 auto 15px;
}

.course-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #000;
}

.course-card p {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* --- Responsiv --- */
@media (max-width: 768px) {
  .courses-cards {
    flex-direction: column; /* ét kort ad gangen på mobil */
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .course-card {
    scroll-snap-align: center;
    width: 90%;
    max-width: 360px;
    margin: 0 10px 20px;
  }

  .courses::-webkit-scrollbar {
    display: none;
  }
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 60px 20px;
  background-color: #fafafa;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

/* Form *//* Contact Section */
.contact {
  text-align: center;
  padding: 60px 20px;
  background-color: #fafafa;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

/* Form *//* Contact Section */
.contact {
  text-align: center;
  padding: 60px 20px;
  background-color: #fafafa;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

/* Form container */
.contact-form {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border: 4px solid #000;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form elements */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #000;
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  outline: none;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f5b400;
}

/* Submit button */
.contact-btn {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #f5b400;
  color: #000;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .contact-form {
    padding: 25px;      /* mindre padding på telefon */
    border-radius: 15px; /* rundere og mindre ramme */
  }

  .contact-title {
    font-size: 1.8rem;  /* mindre titel på telefon */
  }

  .contact-subtitle {
    font-size: 1rem;    /* mindre undertekst */
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 12px; /* mindre input */
    font-size: 0.95rem;
  }

  .contact-btn {
    font-size: 1rem;
    padding: 10px;
  }
}



/* Footer */
.site-footer {
  background-color: #fafafa;
  border-top: 4px solid #000;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo-img {
  height: 250px;
  width: auto;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
  font-weight: 600;
}

.footer-contact a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #f5b400;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  margin: 0 15px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5b400;
}

.footer-text {
  font-size: 0.95rem;
  color: #333;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .footer-logo-img {
    height: 150px;
    margin-bottom: 10px;
  }

  .footer-contact p {
    font-size: 0.95rem;
  }

  .footer-links a {
    display: block;
    margin: 8px 0;
  }

  .footer-text {
    font-size: 0.9rem;
  }
}


/* Confirmation Section */
.confirmation {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 60px 20px;
  background-color: #fafafa;
}

.confirmation-card {
  background: #fff;
  border: 4px solid #000;
  border-radius: 25px;
  padding: 50px 30px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: 'Playfair Display', serif;
}

.confirmation-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  text-transform: uppercase;
}

.confirmation-card p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
}

.btn-back-home {
  display: inline-block;
  padding: 12px 25px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.btn-back-home:hover {
  background: #f5b400;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .confirmation-card {
    padding: 30px 20px;
  }

  .confirmation-card h2 {
    font-size: 1.6rem;
  }

  .confirmation-card p {
    font-size: 1rem;
  }

  .btn-back-home {
    padding: 10px 20px;
    font-size: 1rem;
  }
}


/* Confirmation Hero */
.confirmation-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background-image: url('/images/bg-is.jpg'); /* dit hero-billede */
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  position: relative;
}

/* Mørk overlay for bedre kontrast */
.confirmation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.confirmation-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.confirmation-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.confirmation-hero p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

/* Responsiv design */
@media (max-width: 768px) {
  .confirmation-hero {
    min-height: 100vh;
    padding: 40px 15px;
  }

  .confirmation-hero h1 {
    font-size: 2rem;
  }

  .confirmation-hero p {
    font-size: 1rem;
  }
}

/* Contact Hero */
.contact-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background-image: url('/images/bg-is.jpg'); /* udskift med eget billede */
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  position: relative;
}

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

.contact-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-hero p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fafafa;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info {
  flex: 1 1 40%;
  background: #fff;
  border: 4px solid #000;
  border-radius: 25px;
  padding: 30px;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
}

.contact-info a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #f5b400;
}

/* Contact Form */
.contact-form {
  flex: 1 1 50%;
  background: #fff;
  border: 4px solid #000;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #000;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form button {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #f5b400;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 500px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }
}



/* Enroll Button */
.enroll-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background-color: #000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.enroll-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

.hero1 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90vh; /* næsten fuld skærmhøjde */
  background-image: url('/images/bg1.jpg'); /* dit baggrundsbillede */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 20px;
}


/* --- About Hero --- *//* --- About Hero --- */
.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('/images/bg2.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 130px 20px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-about .hero-content {
  max-width: 850px;
}

.hero-about .hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero-about .hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #f3f3f3;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Responsiv hero --- */
@media (max-width: 768px) {
  .hero-about {
    padding: 100px 15px 80px;
  }

  .hero-about .hero-title {
    font-size: 2rem;
  }

  .hero-about .hero-subtitle {
    font-size: 1rem;
  }
}

/* --- About Section --- */
.about-section {
  background-color: #fff;
  padding: 80px 20px;
  border-top: 4px solid #000;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
  background: #f9f9f9;
  border: 4px solid #000;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-text p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  border: 4px solid #000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Values Section --- */
.values-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.values-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #000;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  background: #fff;
  border: 4px solid #000;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 30px 25px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #000;
}

.value-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Responsiv --- */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .about-title {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 100%;
  }
}

/* Pricing Section */
.pricing {
  text-align: center;
  padding: 80px 20px;
  background: #f8f8f8;
}

.pricing-title {
  font-size: 2.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
}

.pricing-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border: 3px solid #000;
  border-radius: 20px;
  width: 320px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.pricing-card.highlight {
  background-color: #f5b400;
  color: #000;
  border: 3px solid #000;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.pricing-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.pricing-btn:hover {
  background-color: #f5b400;
  color: #000;
}

/* Responsivt design */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
  }
}

/* Currency Toggle Buttons */
.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.currency-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.currency-btn:hover {
  background-color: #f5b400;
  color: #000;
}

.currency-btn.active {
  background-color: #f5b400;
  color: #000;
  border: 2px solid #000;
}

/* --- Languages Section --- */
.languages {
  background-color: #f9f9f9;
  text-align: center;
  padding: 70px 20px;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}

.languages-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.languages-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.flag {
  font-size: 3rem;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.flag-item:hover .flag {
  transform: scale(1.15);
}

.flag-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.languages-subtitle {
  font-family: 'Playfair Display', serif;
  color: #444;
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Responsivt design --- */
@media (max-width: 768px) {
  .languages {
    padding: 50px 15px;
  }

  .languages-flags {
    gap: 30px;
  }

  .flag {
    font-size: 2.4rem;
  }

  .languages-title {
    font-size: 1.8rem;
  }

  .languages-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
}

