:root {
  --primary: #ff7927;
  --secondary: #504142;
  --white: #fff;
  --max-width: 1200px;
  --padding: 1rem;
  --bg-dark: #1a1a1a;
  --bg-darker: #121212;
  --text-light: #e0e0e0;
  --card-bg: #252525;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

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

/* Header Styles */
header {
  background: var(--bg-darker);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Add frosted glass effect when at top */
header.at-top {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--padding);
}

.logo {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}

/* Hero Section - Update existing styles and add responsive adjustments */
.hero {
  padding: 4rem 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./Resources/images/nus.webp");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  padding-top: 2rem;
}

.hero-content {
  display: block;
  width: 100%;
}

.hero-text {
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-text p {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(1rem, 3vw, 1.1rem);
}

/* Add responsive styles for hero section */
@media (max-width: 768px) {
  .hero {
    padding-top: 4rem;
    min-height: 60vh;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }

  .hero-text p {
    margin-bottom: 1rem;
  }
}

/* Services Section - Updated Styles */
.services {
  padding: 4rem 0;
  background-color: var(--bg-darker);
}

.services h2 {
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: rotate(10deg);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-content h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  padding-right: 70px;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more-btn {
  align-self: flex-start;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.read-more-btn:hover {
  background: var(--primary);
  color: white;
}

/* Responsive layout */
@media (min-width: 768px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background: #e66615;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0);
}

/* Contact Form */
.contact {
  padding: 4rem 0;
  background-color: var(--bg-darker);
}

.contact h2 {
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 0;
  flex: 1;
}

.form-group.full-width {
  flex: 100%;
  margin-bottom: 1.5rem;
}

.form-group.full-width:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  position: absolute;
  left: 0.5rem;
  top: -2px;
  transform: translateY(-50%);
  background-color: #202020;
  padding: 0 0.4rem;
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #404040;
  border-radius: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--card-bg);
  border: 1px solid #404040;
  border-radius: 4px;
  color: var(--text-light);
  font-size: 1rem;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background-color: var(--card-bg);
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  color: var(--primary);
  border-color: var(--primary);
  background-color: #202020;
}

/* Adjust textarea padding for the floating label */
.form-group textarea {
  min-height: 150px;
  padding-top: 1rem;
}

/* Mobile responsiveness for form */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Footer - Updated Design */
footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 4rem 0;
  border-top: 3px solid var(--primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 0 var(--padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.contact-icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

/* Contact persons styling */
.contacts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-person {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-person-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.contact-person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-person-header h3 {
  color: var(--primary);
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-person-title {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Footer navigation styling - Updated */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  position: relative;
  padding-left: 1rem;
  transition: transform 0.15s ease;
}

.footer-nav a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.footer-nav a:hover {
  transform: translateX(4px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section p {
    justify-content: center;
  }

  .contact-person-header {
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav a {
    padding-left: 0;
  }

  .footer-nav a::before {
    display: none;
  }

  .contacts {
    gap: 1.5rem;
  }

  .contact-person {
    padding-bottom: 1.5rem;
  }

  /* Add these new styles */
  .address-container {
    justify-content: center;
  }

  .address-text {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Add styles for required field indicators */
.form-group label.required::after {
  content: "*";
  color: var(--primary);
  margin-left: 4px;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: var(--bg-dark);
}

.about h2 {
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
}

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

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Add responsive styles for about section */
@media (max-width: 768px) {
  .about {
    padding: 3rem 0;
  }

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

/* Contact Form - Add margin to submit button */
.contact-form .cta-button {
  margin-top: 1rem;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}

/* Update header and nav styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    max-width: 300px;
    background: none;
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease-in-out;
    z-index: 1050;
  }

  .nav-links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1;
  }

  /* Overlay when menu is open */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1040;
  }

  /* Hamburger animation */
  .hamburger.active span:first-child {
    transform: translateY(9.5px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:last-child {
    transform: translateY(-9.5px) rotate(-45deg);
  }

  /* Add specific style for when header is at-top */
  header.at-top .nav-links::before {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

/* Logo Carousel - Update styles */
.logo-carousel {
  background: var(--bg-darker);
  padding: 2rem 0;
}

.logo-carousel h2 {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: var(--max-width);
}

.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    var(--bg-darker) 0%,
    rgba(26, 26, 26, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 20s linear infinite;
  display: flex;
  width: calc(250px * 8);
}

.slider .slide {
  height: 100px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.slider .slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.slider .slide img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(100%);
}

/* Responsive adjustments for logo carousel */
@media (max-width: 768px) {
  .slider::before,
  .slider::after {
    width: 100px;
  }

  .slider .slide {
    width: 200px;
  }

  .slider .slide-track {
    width: calc(200px * 8);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

/* Add styles for button container and secondary button */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid var(--primary);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
  background: var(--primary);
  color: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Update responsive styles for buttons */
@media (max-width: 480px) {
  .hero-buttons {
    gap: 0.75rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* FAQ Page Styles */
.faq-hero {
  padding: 8rem 0 4rem;
  background-color: var(--bg-darker);
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-section {
  padding: 4rem 0;
  background-color: var(--bg-dark);
}

.faq-grid {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-category h2 {
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.faq-item {
  margin-bottom: 1rem;
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.25rem;
}

.faq-answer.active {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
}

/* Responsive styles for FAQ page */
@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-category:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 6rem 0 3rem;
  }

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

  .faq-section {
    padding: 3rem 0;
  }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

.toast {
  background: var(--card-bg);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid #4caf50;
}

.toast.error {
  border-left: 4px solid #f44336;
}

.toast-icon {
  font-size: 1.25rem;
}

.toast.success .toast-icon {
  color: #4caf50;
}

.toast.error .toast-icon {
  color: #f44336;
}

/* Responsive toast */
@media (max-width: 768px) {
  .toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .toast {
    width: 100%;
  }
}

.address-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.address-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.address-text p {
  margin: 0;
}

/* Add these styles */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  opacity: 0.8;
  transition: all 0.2s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.1);
}

.social-links img {
  transition: transform 0.2s ease;
}

.social-links a:active {
  transform: translateY(0) scale(1);
}

.breadcrumb {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 0.5rem;
  color: #666;
}

.breadcrumb li:last-child {
  color: #666;
}

.breadcrumb a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #333;
}

.instagram-feed {
  margin-top: 3rem;
}

/* Charity Campaign Styles */
.charity-campaign {
  background-color: var(--bg-darker);
  padding: 3rem 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.campaign-text {
  flex: 1;
}

.campaign-text h2 {
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.campaign-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.campaign-image {
  flex: 0 0 300px;
  text-align: center;
}

.campaign-image img {
  max-width: 100%;
  height: auto;
  filter: brightness(0.9);
  border-radius: 16px;
}

.campaign-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Campaign Page Styles */
.campaign-hero {
  background-color: var(--bg-darker);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("./Resources/images/Hjaltarnas-Hus2.jpg");
  background-size: 100% auto;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  /* min-height: 60vh; */
}

.campaign-hero h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

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

.campaign-highlight {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.campaign-details {
  padding: 4rem 0;
  background-color: var(--bg-dark);
}

.campaign-info {
  margin-bottom: 3rem;
}

.campaign-info h2 {
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.campaign-info ul {
  list-style-type: none;
  padding: 0;
}

.campaign-info li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

.campaign-info li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.about-hjaltarnas-hus {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hjaltarnas-hus h2 {
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.about-hjaltarnas-hus p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.cta-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .campaign-content {
    flex-direction: column;
    text-align: center;
  }

  .campaign-image {
    order: -1;
  }

  .campaign-buttons {
    justify-content: center;
  }

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

  .campaign-highlight {
    font-size: 1.2rem;
  }
}

/* Add responsive adjustments for mobile */
@media (max-width: 768px) {
  .campaign-hero {
    background-size: cover;
    background-position: center;
    min-height: auto;
  }
}

/* Campaign Banners */
.campaign-banner-full {
  background: linear-gradient(
    90deg,
    var(--bg-darker),
    rgba(255, 121, 39, 0.15),
    var(--bg-darker)
  );
  padding: 0.75rem;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 73px; /* Height of the header */
  z-index: 998; /* Below header */
  cursor: pointer;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255, 121, 39, 0.1);
  border-bottom: 1px solid rgba(255, 121, 39, 0.1);
  text-decoration: none;
}

.campaign-banner-full:hover {
  background: linear-gradient(
    90deg,
    var(--bg-darker),
    rgba(255, 121, 39, 0.2),
    var(--bg-darker)
  );
}

.campaign-banner-full p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  padding: 0 2rem;
}

.campaign-banner-full strong {
  color: var(--primary);
}

/* Adjust main content to account for header + banner */
main {
  padding-top: 73px; /* Height of header (73px) + banner (40px) */
}

/* Mobile banner styles */
@media (max-width: 768px) {
  .campaign-banner-full {
    position: relative;
    top: 73px; /* Position it right after the header */
    background: linear-gradient(
      90deg,
      var(--bg-darker),
      rgba(255, 121, 39, 0.15),
      var(--bg-darker)
    );
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .campaign-banner-full:hover {
    background: linear-gradient(
      90deg,
      var(--bg-darker),
      rgba(255, 121, 39, 0.2),
      var(--bg-darker)
    );
  }

  .campaign-banner-full p {
    padding: 0;
    text-align: left;
  }

  .campaign-banner-full.hidden {
    display: none;
  }

  .hero {
    margin-top: 0;
    padding-top: 2rem;
  }
}

/* Byggnads Info Section */
.byggnads-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1),
    rgba(255, 167, 103, 0.1)
  );
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}

.byggnads-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.byggnads-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.byggnads-content p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .byggnads-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .byggnads-logo {
    height: 50px;
  }

  .byggnads-content p {
    font-size: 1rem;
  }
}

/* New Product Promotional Banner */
.new-product-banner {
  background: linear-gradient(
    135deg,
    rgba(255, 121, 39, 0.15) 0%,
    rgba(255, 121, 39, 0.08) 50%,
    rgba(255, 121, 39, 0.15) 100%
  );
  padding: 3rem 0;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.new-product-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 121, 39, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding);
  position: relative;
  z-index: 1;
}

.banner-text {
  flex: 1;
}

.banner-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 121, 39, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 121, 39, 0);
  }
}

.banner-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), #ffa767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.banner-image {
  flex: 0 0 400px;
  position: relative;
}

.banner-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.banner-image:hover img {
  transform: scale(1.02);
}

/* Responsive styles for promotional banner */
@media (max-width: 900px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-image {
    flex: none;
    width: 100%;
    max-width: 500px;
    order: -1;
  }

  .banner-text p {
    max-width: none;
  }

  .banner-text h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .new-product-banner {
    padding: 2rem 0;
  }

  .banner-text h2 {
    font-size: 1.5rem;
  }

  .banner-image img {
    height: 200px;
  }
}
