/* General Reset */
body, h1, p, ul, li, a {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

/* Body and Background */
body {
  background: linear-gradient(to bottom, #5e2750, #f57c00); /* Ubuntu-inspired gradient */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header and Navigation */
header {
  background-color: #2c2c2c;
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

nav {
  display: flex;
  justify-content: center;
}

ul.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

ul.menu li {
  font-size: 1.2rem;
}

ul.menu li a {
  color: #f57c00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

ul.menu li a:hover {
  color: #ffffff;
}

/* Hero Section */
.hero {
  background: url('images/football-hero.jpg') no-repeat center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fdd835; /* Soccer yellow */
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Buttons */
.button {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #f57c00; /* Ubuntu orange */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #e65100;
}

/* Footer */
footer {
  background-color: #2c2c2c;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-top: auto;
}

footer i {
  color: #f57c00;
}
/* General Reset */
body, h1, h2, p, ul, li, a, button {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}

/* Body and Background */
body.tech-theme {
  background: linear-gradient(to bottom, #0d47a1, #1976d2); /* Deep blue gradient */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header and Navigation */
header {
  background-color: #0b3d91;
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

nav {
  display: flex;
  justify-content: center;
}

ul.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

ul.menu li a {
  color: #64b5f6; /* Light blue */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

ul.menu li a.active, ul.menu li a:hover {
  color: #ffffff;
}

/* Hero Section */
.hero {
  background: url('images/tech-hero.jpg') no-repeat center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #64b5f6; /* Light blue */
}

.hero p {
  font-size: 1.2rem;
}

/* Sections */
.section {
  padding: 20px;
  margin: 20px auto;
  background-color: #0b3d91;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 800px;
}

.section h2 {
  margin-bottom: 15px;
  color: #64b5f6;
}

.section ul {
  list-style: none;
}

.section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.section ul li a {
  color: #bbdefb; /* Lighter blue for links */
  text-decoration: none;
}

.section ul li a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #0b3d91;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-top: auto;
}

footer i {
  color: #64b5f6;
}
