


html {
  scroll-behavior: smooth;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif; /* Body font */
}


/* -------------------------------- */
/* Fonts */
/* -------------------------------- */
@font-face {
  font-family: 'HauntingEleanor-Regular';
  src: url('Fonts/HauntingEleanor-Regular.woff2') format('woff2'),
       url('Fonts/HauntingEleanor-Regular.woff') format('woff'),
       url('Fonts/HauntingEleanor-Regular.ttf') format('truetype'),
       url('Fonts/HauntingEleanor-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}



body {
  background-color: #121212;
  color: #f0f0f0;
  line-height: 1.6;
}


/* Navigation Bar */
.navbar {
  background-color: #1a1a1a;
  position: sticky;
  top: 0;
  padding: 1em 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between logo and nav */
  z-index: 1000;
}

.logo {
  max-height: 50px; /* adjust to fit navbar height */
  height: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Optional: make links aligned right, logo on left */
.navbar ul li a {
  font-family: 'Fredoka One', cursive; /* or your chosen font */
  color: #f0f0f0;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #e03e3e;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: #f0f0f0;
  cursor: pointer;
  user-select: none;
  padding: 0 10px;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('Images/Mafia2.png') no-repeat center center/cover;
  color: #e03e3e;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'HauntingEleanor-Regular', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #e03e3e, #ffb347);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.buttons .btn {
  text-decoration: none;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-family: 'Fredoka One', sans-serif;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.primary-btn {
  background-color: #e03e3e;
  color: #fff;
}

.primary-btn:hover {
  background-color: #ff5c5c;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #e03e3e;
  color: #e03e3e;
}

.secondary-btn:hover {
  background-color: #e03e3e;
  color: #fff;
}


/* -------------------------------- */
/* What is our Game?  */
/* -------------------------------- */

.kura-game-experience {
  width: 100%;
  
  margin: 0 auto 50px auto;
  background: #191919;
  padding: 48px 8px 72px 8px; /* Use small side padding */
  text-align: center;
}


.feature-blocks-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 95vw;
  padding: 0 clamp(8px, 2vw, 20px);
  gap: clamp(14px, 3vw, 24px);
}

.feature-section-title {
  font-family: 'HauntingEleanor-Regular', cursive;
  color: #e03e3e;
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 0 0 0px 0;
  max-width: none;
  align-self: flex-start;
  display: inline-block;
  position: relative;
}

.feature-underline {
  width: 98%;
  max-width: 1200px;
  height: 5px;
  background: linear-gradient(90deg, #e03e3e, #ffb347);
  border-radius: 3px;
  margin: 0px 0 0 0;
}

.feature-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
  max-width: 1480px; /* 4x350px + 3x40px gap */
  margin: 0 auto;
}


.feature-block {
  flex: 1 1 320px;                /* Grow/shrink each block, with base size 320px */
  min-width: 220px;               /* Prevent blocks from getting too small */
  max-width: 400px;               /* Prevent blocks from getting too large */
  width: 100%;                    /* Fill available space */
  background: #222;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 30px) clamp(12px, 3vw, 22px);
  box-shadow: 0 8px 24px rgba(224,62,62,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 7px solid #e03e3e;
  border-right: 7px solid #e03e3e;
  margin-bottom: clamp(14px, 3vw, 24px);
  box-sizing: border-box;
}




/*


.feature-block {
  flex: 0 1 350px;
  max-width: 350px;
  min-width: 260px;
  width: 100%;
  background: #222;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 30px) clamp(12px, 3vw, 22px);
  box-shadow: 0 8px 24px rgba(224, 62, 62, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 7px solid #e03e3e;
  border-right: 7px solid #e03e3e;
  margin-bottom: clamp(14px, 3vw, 24px);
  box-sizing: border-box;
}


.feature-block {
  flex: 0 1 350px; 
  max-width: 350px;
  min-width: 260px; 
  width: 100%;     
}


.feature-blocks {
  display: flex;
  gap: clamp(18px, 5vw, 40px);
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
}



.feature-block {
  flex: 1 1 280px;
  max-width: 350px;
  background: #222;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 30px) clamp(12px, 3vw, 22px);
  box-shadow: 0 8px 24px rgba(224, 62, 62, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 7px solid #e03e3e;
  border-right: 7px solid #e03e3e;
  margin-bottom: clamp(14px, 3vw, 24px);
  box-sizing: border-box;
}
*/
.feature-icon {
  font-size: clamp(1.5rem, 5vw, 3.0rem);
  margin-bottom: clamp(6px, 1.2vw, 12px);
}

.feature-block h3 {
  font-family: 'HauntingEleanor-Regular', serif;
  color: #ffb347;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: clamp(7px, 2vw, 12px);
  text-align: center;
}

.feature-block p {
  font-size: clamp(0.93rem, 2vw, 1.12rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.1em;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Responsive for mobile/tablet */
@media (max-width: 900px) {
  .feature-blocks {
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 4vw, 24px);
    max-width: 98vw;
    width: 98vw;
    padding: 0;
  }
  .feature-block {
    flex: 1 1 100%;
    min-width: 0;
    max-width: none;
    width: 96vw;
    margin-bottom: clamp(20px, 8vw, 30px);
    padding: clamp(14px, 6vw, 22px);
    border-left: 7px solid #e03e3e;
    border-right: 7px solid #e03e3e;
  }
  .feature-section-title {
    font-size: clamp(2rem, 8vw, 2.2rem);
  }
}


/* -------------------------------- */
/* Quote card */
/* -------------------------------- */

.quote-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 20px 0;
  margin: 0 auto 50px auto; 
}

.quote-marquee {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  /* Will duplicate content for seamless effect in practice */
}

.hero-quote {
  min-width: 340px;
  max-width: 420px;
  background: linear-gradient(90deg, #e03e3e, #ffb347);
  color: #000;
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.2rem;
  padding: 34px 22px;
  border-radius: 20px;
  border: 5px solid #ffb347;
  box-shadow: 0 8px 40px rgba(224,62,62,0.17);
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 7px #e03e3e, 0 0 4px #fff;
  flex-shrink: 0;
  margin: 0;
}

/* Animation keyframes for scrolling */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
  .hero-quote {
    min-width: 220px;
    max-width: 280px;
    font-size: 1rem;
    padding: 18px 10px;
  }
  .quote-marquee {
    gap: 18px;
  }
}


/* -------------------------------- */
/* Why Choose Us Container  */
/* -------------------------------- */
.why-us-container {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 48px;
  padding: 60px 20px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('Images/Discussion2.png') no-repeat center center/cover;
}



.why-us {
  flex: 2;
  width: 100%;
  max-width: 100vw;
  margin-left: 100px;
  color: #f5f5f5;
  font-size: 1.16rem;
  line-height: 1.75;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.03em;
  background: rgba(34, 34, 34, 0.83);
  padding: 32px 32px 32px 38px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(224,62,62,0.13);
  border-left: 7px solid #e03e3e;
  position: relative;
}

.why-us p {
  margin-bottom: 1.25em;
  /* Subtle highlight for key words: */
  font-size: 1.11rem;
  color: #f8e6cb;
  text-shadow: 1px 1px 5px #191919;
}

.why-us strong,
.why-us em {
  color: #ffb347;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.why-us p:nth-of-type(1)::first-letter,
.why-us p:nth-of-type(2)::first-letter,
.why-us p:nth-of-type(3)::first-letter,
.why-us p:nth-of-type(4)::first-letter,
.why-us p:nth-of-type(5)::first-letter {
  color: #e03e3e;
  font-size: 2.1em;
  font-weight: bold;
  float: left;
  line-height: 0.75;
  padding-right: 10px;
  font-family: 'HauntingEleanor-Regular', serif;
}


/* Optional divider bar under the title for more interest */
.why-us-title {
  position: relative;
  color: #e03e3e;
  font-family: 'HauntingEleanor-Regular', cursive;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.why-us-title::after {
  content: '';
  display: block;
  width: 950px;
  height: 5px;
  background: linear-gradient(90deg, #e03e3e, #ffb347);
  border-radius: 3px;
  margin: 16px auto 0 auto;
}



/* -------------------------------- */
/* 4. Thematic icons block */
/* -------------------------------- */

.thematic-icons {
  display: flex;
  justify-content: center;        /* Center the row horizontally */
  align-items: center;            /* Align images vertically */
  gap: 32px;                      /* Space between images */
  margin: 32px 0 42px 0;
  padding: 0 2vw;
  width: 100%;
  max-width: 100%;                /* Allow container to grow/shrink with page */
  overflow-x: visible;            /* Only allow scrolling on small screens */
  box-sizing: border-box;
}


.thematic-icons img {
  flex: 0 0 auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 6px solid #292929;
  background: #fff;
  box-shadow: 0 6px 18px rgba(224,62,62,0.10);
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.18s;
}

.thematic-icons img:hover {
  transform: scale(1.045);
}

/* Responsive for smaller screens */
@media (max-width: 700px) {
  .thematic-icons {
    gap: 16px;
    padding: 0 6px;
    overflow-x: auto;
  
  }
  .thematic-icons img {
    width: 140px;
    height: 140px;
  }
}


/* -------------------------------- */
/* Services Section */
/* -------------------------------- */

.services-section {
  background: url('Images/Discussion3.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  margin-top: 0;
}

.services-title {
  text-align: center;
  color: #000000;
  font-family: 'HauntingEleanor-Regular', cursive;
  font-size: 2.5rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: #222;
  color: #fafafa;
  flex: 1 1 250px;
  max-width: 340px;
  min-width: 250px;
  border-radius: 18px;
  padding: 35px 20px 30px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  position: relative;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s;
}

.service-box h3 {
  font-family: 'HauntingEleanor-Regular', cursive;
  color: #ffb347;
  margin-bottom: 18px;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.service-box p {
  font-size: 1.05rem;
  color: #e0e0e0;
}

.service-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px rgba(224,62,62,0.22);
}

.premium {
  border: 2.5px dashed #e03e3e;
  opacity: 0.85;
}

.coming-soon-banner {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  background: #e03e3e;
  color: #fff;
  font-family: 'Luckiest Guy', cursive;
  padding: 5px 18px;
  border-radius: 10px;
  font-size: 1.1rem;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
}

.service-img {
  width: 250px;
  height: 250px;
  margin-top: 5px;
  margin-bottom: 5px;
  object-fit: contain;
}


/* -------------------------------- */
/* Enquiry Section */
/* -------------------------------- */

.enquiry-section {
  background: #ffffff; /* A darker, but distinct color from other sections */
  padding: 80px 40px; /* More padding for space around */
  text-align: center;
  margin-top: 60px; /* Add vertical space above */
}

#enquire {
  scroll-margin-top: 90px; /* Adjust for your navbar height */
}

.enquiry-title {
  margin-bottom: 25px;  /* Increases space below the title */
  color: #e03e3e;       /* Bold red accent for brand alignment */
  font-family: 'HauntingEleanor-Regular', cursive;
  font-size: 2.3rem;
  letter-spacing: 1px;
  text-align: center;
}

.enquiry-form {
  max-width: 700px;  /* Increase max width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px; /* More gap between form elements */
}

.enquiry-form input,
.enquiry-form textarea {
  background: #ffffff; /* Slightly lighter input background */
  border: 1.5px solid #444; /* Subtle border */
  padding: 18px;
  font-size: 1.1rem;
  width: 100%;
  box-sizing: border-box;
}

.enquiry-form .primary-btn {
  background-color: #e03e3e;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.18rem;
  padding: 16px 38px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(224,62,62,0.19);
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.19s;
  outline: none;
  letter-spacing: 1px;
  margin-top: 8px;
}

.enquiry-form .primary-btn:hover,
.enquiry-form .primary-btn:focus {
  background-color: #ffb347;
  color: #e03e3e;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(224,62,62,0.26);
}

.enquiry-form .primary-btn:active {
  background-color: #e03e3e;
  color: #fff;
  transform: scale(0.97);
  box-shadow: 0 2px 9px rgba(224,62,62,0.15);
}

.founders-story {
  max-width: 800px;
  margin: 80px auto 60px auto;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
  text-align: center;
}

.founders-story h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 3.2rem;
  color: #e03e3e;
  margin-bottom: 25px;
}

.founders-story p {
  font-size: 1.18rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

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

.gallery-item {
  width: 250px;
  margin-bottom: 20px;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}


.small-btn {
  padding: 6px 18px;
  font-size: 1rem;
  border-radius: 24px;
  margin-left: 10px;
  white-space: nowrap;
  background-color: #e03e3e;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  transition: background 0.25s, color 0.25s;
}
.small-btn:hover,
.small-btn:focus {
  background-color: #ffb347;
  color: #e03e3e;
}


/* Footer */
footer {
  background-color: #121212;
  padding: 20px 40px;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

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

.footer-logo img {
  max-height: 50px;
}

.footer-links {
  flex: 1;
  margin-left: 30px;
}

.footer-links h4 {
  color: #e03e3e;
  margin-bottom: 10px;
  font-family: 'HauntingEleanor-Regular', cursive;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'Poppins', sans-serif;
}

.footer-links ul li a:hover {
  color: #e03e3e;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 30px;
}

.footer-social h4 {
  color: #e03e3e;
  margin-right: 15px;
  font-family: 'HauntingEleanor-Regular', cursive;
  font-size: 1.3rem;
  white-space: nowrap;
}



/* Social Icon Containers with background SVG icons */
.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-block;
  filter: invert(70%);
  transition: filter 0.3s;
}

.footer-social a.instagram {
  background: url('data:image/svg+xml;utf8,<svg fill="%23bbb" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.75 2C4.45 2 2 4.45 2 7.75v8.5C2 19.55 4.45 22 7.75 22h8.5c3.3 0 5.75-2.45 5.75-5.75v-8.5C22 4.45 19.55 2 16.25 2h-8.5zm7.5 2.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm-3.75 1.75c2.367 0 4.25 1.882 4.25 4.25s-1.883 4.25-4.25 4.25-4.25-1.882-4.25-4.25 1.883-4.25 4.25-4.25zm0 1.5a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5z"/></svg>') no-repeat center;
  background-size: contain;
}

.footer-social a.facebook {
  background: url('data:image/svg+xml;utf8,<svg fill="%23bbb" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 1 0-11.5 9.9v-7h-2v-3h2v-2.3c0-2 1.2-3.1 3-3.1.9 0 1.8.2 1.8.2v2h-1c-1 0-1.3.6-1.3 1.2V12h2.2l-.4 3h-1.8v7A10 10 0 0 0 22 12z"/></svg>') no-repeat center;
  background-size: contain;
}

.footer-social a:hover {
  filter: invert(33%) sepia(97%) saturate(3485%) hue-rotate(338deg) brightness(104%) contrast(101%);
}

footer p {
  text-align: center;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .navbar ul {
    flex-direction: column;
    display: none; /* Hide links by default on mobile */
    width: 100%;
    background-color: #1a1a1a;
    position: absolute;
    top: 60px; /* Height of navbar */
    right: 0;
    padding: 10px 0;
    z-index: 1001;
  }
  
  .navbar ul.show {
    display: flex; /* Show links when toggled */
  }
  
  .navbar ul li {
    margin: 12px 0;
    text-align: center;
  }
  
  .hamburger {
    display: block;
  }

  .buttons .btn {
    display: block;
    margin: 10px auto;
  }
  .info-testimonials {
    flex-direction: column;
  }
  .about-text, .testimonials {
    max-width: 100%;
  }
}


/* -------------------------------- */
/* FAQs Section */
/* -------------------------------- */

.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  color: #eee;
}

.faq-section h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
  color: #e03e3e;
  text-align: center;
  margin-bottom: 48px;
}

.faq-category {
  margin-bottom: 44px;
}

.faq-category-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem;
  color: #ffb347;
  margin-bottom: 24px;
  border-bottom: 2px solid #ffb347;
  padding-bottom: 10px;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-question {
  width: 100%;
  background-color: #222;
  color: #f5f5f5;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(224,62,62,0.1);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #e03e3e;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #2a2a2a;
  padding: 0 24px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 6px 16px rgba(224,62,62,0.1);
}

.faq-answer p {
  margin: 18px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Icon for expanding/collapsing */
.faq-question::after {
  content: "▼";
  font-size: 1rem;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(-180deg);
}


/* -------------------------------- */
/* Vacancies Section */
/* -------------------------------- */

.vacancies-notice {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #222;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(224, 62, 62, 0.15);
  color: #eee;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.vacancies-notice h2 {
  font-family: 'Fredoka One', cursive;
  color: #e03e3e;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.vacancies-notice p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.vacancies-notice a {
  color: #ffb347;
  text-decoration: none;
}

.vacancies-notice a:hover {
  text-decoration: underline;
}



/* -------------------------------- */
/* Gallery Section */
/* -------------------------------- */


.gallery-section {
  position: relative;
  color: #e03e3e;
  font-family: 'HauntingEleanor-Regular', cursive;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.gallery-section::after {
  content: '';
  display: block;
  width: 950px;
  height: 5px;
  background: linear-gradient(90deg, #e03e3e, #ffb347);
  border-radius: 3px;
  margin: 16px auto 0 auto;
}


/* -------------------------------- */
/* Mobile Adjustments */
/* -------------------------------- */


@media (max-width: 900px) {
  .why-us-container {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 30px 4vw;
    max-width: 100vw;
    width: 100%;
  }
  .why-us {
    margin-left: 0;
    max-width: 100vw;
    width: 100%;
    padding: 18px 4vw;
  }
  .why-us-title::after {
    width: 94vw !important;
    min-width: 80px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .why-us-container,
  .why-us {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .why-us-title::after {
    width: 72vw !important;
    max-width: 180px;
  }
}
