:root {
  --primary: #410040;
  --primary-light: #7b2c79;
  --text-dark: #2d2d2d;
  --text-light: #474747;
  --bg-alt: #f8f4f8;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--primary); /* was var(--text-dark) */
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- Navigation --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-logo-img {
  height: 40px;
}

.navbar-links {
  display: flex;
  gap: 2rem;
}

.navbar-links a {
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.navbar-links a.active,
.navbar-links a:hover {
  color: var(--primary-light);
}

.flags-group {
  display: flex;
  gap: 0.5rem;
}

.flag-btn {
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
}

.flag-btn:hover {
  opacity: 1;
}

.flag-img {
  width: 24px;
  border-radius: 2px;
}

/* Hide mobile specific elements on desktop */
.mobile-flags,
.mobile-divider,
.hamburger {
  display: none;
}

/* --- Contact & Footer --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #eee;
  font-size: 0.9rem;
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 5% 2rem;
  text-align: center;
}

.footer-logo-img {
  height: 30px;
  margin: 0 auto 2rem;
  filter: grayscale(1) brightness(2);
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #444;
  border-radius: 50%;
  margin: 0 1rem;
  vertical-align: middle;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
  }

  .navbar-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    height: calc(100vh - 70px);
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
  }

  .navbar-links.open {
    right: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .flags-group {
    display: none;
  }

  .mobile-flags {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
}

.read-more-btn-container {
  text-align: center;
}
.read-more-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  font-weight: bold;
}

.read-more-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* soup image section */
.fullwidth-section {
  position: relative;
  padding: 0 !important;
}

.fullwidth-text-mobile {
  display: none;
}

@media (max-width: 768px) {
  .fullwidth-text-mobile {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .fullwidth-text-mobile p {
    max-width: 500px;
    margin: 0 auto 1rem;
  }

  .fullwidth-text-mobile p:last-child {
    margin-bottom: 0;
  }
}

.fullwidth-text-mobile h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
