:root {
  --primary-color: #700e00;
  --secondary-color: #000033;
  --accent-color: #ffe255;
  --text-color: #333;
  --light-text: #fff;
  --background-light: #fff;
  --background-dark: #000033;
  --button-color: #f0ad31;
  --button-hover: #d1801c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--button-color);
  color: var(--light-text);
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
}

.donation-button {
  position: fixed;
  right: -120px;
  bottom: 50%;
  background-color: white;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s ease;
}

.donation-button:hover {
  right: -15px;
  transform: scale(1.05);
}

.donation-text {
  font-weight: bold;
  color: #000;
}

@media (max-width: 768px) {
  .donation-text {
    display: none;
  }

  .donation-button {
    padding: 15px;
    border-radius: 50%;
  }
}

.scroll-arrow {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(5px);
}

.scroll-up {
  transform: rotate(180deg);
}

.scroll-up:hover {
  transform: rotate(180deg) translateY(5px);
}

.used-for-spacing {
  width: 150px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 1px;
}
