html, body {
	height: 100%;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
body {
position: relative;
min-height: 100vh;
margin: 0;
color: #ffffff;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}

/* Background image as a fixed pseudo-element so we can set opacity */
body::before {
content: "";
position: fixed;
inset: 0;
	/* use path relative to this CSS file (assets/css/ -> ../img/) */
	background-image: url('/assets/img/field4.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
opacity: 0.5; /* ~50% transparency */
z-index: -1;
will-change: transform;
}

/* Top header with left logo and centered title */
.site-header {
	position: relative;
	background: rgba(0, 0, 0, 0.65);
	color: #ffffff;
	padding: 8px 60px;
	min-height: 120px;
	border-bottom: 4px solid #071018; /* darker border */
	margin-left: 15%;
	margin-right: 15%;
}
.site-logo {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 96px;
}
.site-logo-left {
	left: 16px;
}
.site-logo-right {
	right: 16px;
}
.site-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
}
/* Navigation bar */
.site-nav {
  background-color: rgba(0, 0, 0, 0.75);
  border-bottom: 2px solid #071018;
  margin-left: 15%;
  margin-right: 15%;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-list li {
  position: relative;
  margin: 0;
}

.nav-list a {
  display: block;
  padding: 12px 18px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown submenu */
.nav-item-dropdown {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.85);
  min-width: 150px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-submenu {
  display: flex;
}

.nav-submenu li {
  margin: 0;
}

.nav-submenu a {
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-submenu a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Main content area with side margins and darker text */
.main-content {
  margin-left: 15%;
  margin-right: 15%;
  padding: 20px 25px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

.main-content a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  border-top: 2px solid #071018;
  margin-left: 15%;
  margin-right: 15%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright,
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p,
.footer-contact p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-contact strong {
  color: #ffffff;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #ffffff;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: #4a9eff;
  transform: scale(1.2);
}

/* Table styles */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}

th, td {
  border: 1px solid #ffffff;
  padding: 8px;
  text-align: left;
}

th {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
}

/* Center text class */
.center {
  text-align: center;
}

/* Award photo styles */
.award-photo {
  float: right;
  display: block;
  margin-left: 15px;
  margin-bottom: 10px;
  max-width: 200px;
}

/* Award section styles */
.award-section {
  margin-bottom: 40px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Section header highlight */
.section-header-red {
  text-align: center;
  color: #ffffff;
  background-color: #b30000;
  padding: 10px 15px;
  border-radius: 6px;
}

.award-text {
  flex: 1;
}

.award-photos {
  flex-shrink: 0;
  width: 200px;
}

.award-photos img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #ffffff;
}

.award-section h2 {
  color: #00d4ff;
  margin-bottom: 10px;
  margin-top: 0;
}

.award-section h3 {
  color: #ffffff;
  margin-bottom: 15px;
  margin-top: 0;
}

.award-content p {
  margin: 0;
}

/* Contact list styles */
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ffffff;
}

.contact-photo {
  margin-right: 20px;
}

.photo-placeholder {
  width: 100px;
  height: 100px;
  border: 2px dashed #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  margin: 0 0 10px 0;
  color: #ffffff;
}

.contact-info p {
  margin: 5px 0;
  color: #ffffff;
}

.contact-info a {
  color: #00d4ff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Mobile Responsive Design ===== */
@media (max-width: 768px) {
  /* Header adjustments */
  .site-header {
    padding: 12px 20px;
    min-height: 100px;
    margin-left: 0;
    margin-right: 0;
  }

  .site-logo {
    height: 60px;
  }

  .site-logo-left {
    left: 8px;
  }

  .site-logo-right {
    right: 8px;
  }

  .site-title {
    font-size: 2rem;
  }

  /* Navigation adjustments */
  .site-nav {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    position: relative;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 1);
    border-bottom: 2px solid #071018;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 1000;
    display: flex !important;
  }

  .nav-list.active {
    max-height: 500px;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    padding: 10px 15px;
    text-align: left;
  }

  .nav-submenu {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: auto;
  }

  .nav-item-dropdown:hover .nav-submenu,
  .nav-item-dropdown.active .nav-submenu {
    max-height: 200px;
  }

  .nav-submenu a {
    padding: 8px 30px;
  }

  /* Main content adjustments */
  .main-content {
    margin-left: 0;
    margin-right: 0;
    padding: 15px 20px;
  }

  /* Footer adjustments */
  .site-footer {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-content {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .footer-copyright,
  .footer-contact {
    min-width: auto;
    width: 100%;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Header adjustments for small screens */
  .site-header {
    padding: 10px 15px;
    min-height: 80px;
  }

  .site-logo {
    height: 45px;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .nav-list a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .nav-submenu a {
    padding: 6px 20px;
    font-size: 0.9rem;
  }

  /* Main content adjustments */
  .main-content {
    padding: 12px 15px;
  }

  .footer-copyright p,
  .footer-contact p {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    font-size: 1.1rem;
  }
}