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

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* BACKGROUND IMAGE WITH FALLBACK AND ANIMATION */
body {
  background: url('technology.jpg') no-repeat center center fixed, linear-gradient(to bottom, #ffffff, #f0f0f0);
  background-size: cover;
  position: relative;
  animation: sunrise 20s infinite linear;
}

@keyframes sunrise {
  0% { background-color: rgba(255, 255, 255, 0.6); }
  50% { background-color: rgba(240, 240, 240, 0.6); }
  100% { background-color: rgba(255, 255, 255, 0.6); }
}

/* HEADER MENU */
.site-header {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.menu {
  position: relative;
  display: inline-block;
}

.menu-button {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000000;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.menu-content {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  flex-direction: column;
  border-radius: 5px;
  min-width: 200px;
  z-index: 1001;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-content a {
  padding: 12px 18px;
  color: #000000;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.menu-content a:hover {
  background-color: #ffd700;
  color: #000000;
}

/* TECHNOLOGY SECTION */
.technology {
  position: relative;
  width: 100%;
  text-align: center;
  color: #000000;
  padding: 100px 20px;
  z-index: 1;
}

.content-container {
  display: inline-block;
  padding: 30px 50px;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: 4.7em;
  font-weight: 900;
  font-family: 'Cinzel', 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #FFD700, #FFFFFF, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.sub-title {
  font-size: 2em;
  font-weight: 900;
  color: white;
  margin: 20px 0;
}

.technology-text {
  font-size: 1.5em;
  font-weight: 900;
  color: white;
  margin: 20px 0;
  line-height: 1.6;
}

.technology-list {
  font-size: 1.3em;
  font-weight: 900;
  color: white;
  text-align: left;
  margin: 20px auto;
  max-width: 800px;
  list-style-type: disc;
  padding-left: 40px;
}

.technology-list li {
  margin-bottom: 15px;
}

/* LOGO */
.peace-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 2;
}

/* FOOTER */
.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9em;
  padding: 10px 0;
  z-index: 1;
}

.site-footer p {
  font-weight: 900;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .main-title {
    font-size: 3.2em;
  }
  .sub-title {
    font-size: 1.5em;
  }
  .technology-text {
    font-size: 1.3em;
  }
  .technology-list {
    font-size: 1.1em;
    padding-left: 20px;
  }
  .content-container {
    padding: 20px;
  }
}