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

body {
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  color: #4a2a16;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('/images/background.png') center center / cover no-repeat;
  z-index: -1;
}

body.content::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('/images/background.png') center bottom / cover no-repeat;
  opacity: 0.8;
  z-index: -1;
}

.mascot-img {
  width: 400px;
  max-width: 88%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.turiltext {
  width: 300px;
  max-width: 88%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.beta img {
  width: 100px;
  max-width: 88%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

button img {
  transition: transform 0.15s ease;
}

button:hover img {
  transform: scale(1.1);
}

.active-lang img {
  border: 2px solid #0d6efd; /* Bootstrap primary */
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.5);
  transform: scale(1.05);
}

/* NAVBAR */

.language-btn img {
  border-radius: 8px;
  transition: 0.2s ease;
}

.language-btn:hover img {
  transform: scale(1.08);
}

.active-language img {
  outline: 3px solid #ff8a00;
  outline-offset: 3px;
  box-shadow: 0 0 10px rgba(255, 138, 0, 0.6);
}

/* DASHBOARD */

.dashboard-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.dashboard-welcome {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  text-align: center;
}

.dashboard-weather {
  border-radius: 20px;
}

.dashboard-welcome h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.dashboard-welcome p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  /* background: rgba(255, 255, 255, 0.9); */
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.dashboard-card h2 {
  font-weight: 800;
  margin-bottom: 18px;
  color: #4a2a16;
}

.dashboard-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 14px;
  margin-top: 1rem;
}

.dashboard-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.dashboard-item:hover {
  transform: translateY(-2px);
}

.empty-text {
  color: #6c757d;
  font-style: italic;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

/* GRUPPER */

.groups-mascot {
  width: 300px;
  height: auto;
}


/* OMOSS */

.about-page {
  min-height: 100vh;
  background: #fbefe0;
  color: #4a2a16;
  font-family: 'Poppins', sans-serif;
}

.about-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('/images/background.png') center bottom / cover no-repeat;
  opacity: 0.18;
  z-index: -1;
}

.about-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 55px 24px 30px;
}

.about-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.back-link {
  text-decoration: none;
  color: #d76532;
  font-size: 38px;
  position: absolute;
  margin-top: 6px;
}

.about-container h1 {
  font-family: 'Poppins', serif;
  font-size: 32px;
  margin-left: 42px;
  margin-bottom: 70px;
}

.about-logo-section {
  text-align: center;
  margin-bottom: 45px;
}

.about-mascot {
  width: 200px;
  height: auto;
}

.about-logo-section h2 {
  font-family: 'Poppins', serif;
  font-size: 46px;
  color: #d76532;
  margin: 8px 0 10px;
}

.about-logo-section p {
  color: #9b8b72;
  font-size: 12px;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 48px;
  text-align: center;
}

.about-accordion {
  margin-top: 30px;
}

.about-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(74, 42, 22, 0.2);
}

.about-accordion .accordion-button {
  background: transparent;
  color: #4a2a16;
  font-size: 1.6rem;
  padding: 24px 0;
  box-shadow: none;
}

.about-accordion .accordion-button::after {
  content: "›";
  background-image: none;
  font-size: 2rem;
  transform: none;
}

.about-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}

.about-accordion .accordion-body {
  padding: 0 0 24px;
}

.features-section h3 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background: transparent; /* remove background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps whole squirrel visible */
}

.feature-item h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.feature-item p {
  color: #9b8b72;
  font-size: 16px;
  line-height: 1.25;
}

.about-links {
  margin-top: 60px;
}

.about-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4a2a16;
  text-decoration: none;
  font-size: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(74, 42, 22, 0.12);
}

footer {
  text-align: center;
  margin-top: 36px;
  color: #a89376;
  font-size: 16px;
}

.frontpagefooter {
  text-align: center;
  margin-top: 36px;
  color: #685c4c;
  font-size: 12px;
}