:root {
  --primary-color: #ff9000;
  --secondary-color: #000000;
  --text-color: #ffffff;
  --background-color: #1b1b1b;
  --card-color: #2a2a2a;
  --hover-color: #ff7200;
  --border-color: #3a3a3a;
  --button-color: #ff9000;
  --button-hover: #ff7200;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-button {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--secondary-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease 0s;
}

.cta-button:hover {
  background-color: var(--button-hover);
  color: var(--secondary-color);
}

header {
  background-color: var(--secondary-color);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-color);
}

.logo span {
  color: var(--primary-color);
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://imagedelivery.net/xMnwd1aoy-PQ8Klk2JdGdw/596e8062-96c4-4f1a-3238-2e65e0c44000/public") center center / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

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

.about-section {
  padding: 100px 0;
  background-color: var(--background-color);
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.stats {
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  margin-bottom: 15px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
}

.gallery-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab {
  background: none;
  border: medium;
  color: var(--text-color);
  padding: 10px 20px;
  margin: 0px 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
}

.tab:hover {
  color: var(--primary-color);
}

.tab.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  row-gap: 20px;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease 0s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}

.thumbnail img {
  width: 100%;
  transition: transform 0.5s ease 0s;
}

.gallery-item:hover .thumbnail img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  transition: all 0.3s ease 0s;
}

.overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.stats span {
  font-size: 0.9rem;
}

.stats i {
  color: var(--primary-color);
  margin-right: 5px;
}

.view-button {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: medium;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease 0s;
}

.view-button:hover {
  background-color: var(--button-hover);
}

.load-more {
  text-align: center;
  margin-top: 40px;
}

#load-more-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

#load-more-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.legacy-section {
  padding: 100px 0;
  background-color: var(--background-color);
}

.legacy-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.legacy-text {
  flex: 1;
}

.legacy-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.legacy-text .cta-button {
  margin-top: 20px;
}

.legacy-image {
  flex: 1;
}

.legacy-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-form {
  flex: 1;
  background-color: var(--card-color);
  padding: 30px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: var(--button-hover);
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-item h3 {
  margin-bottom: 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 90%;
  max-height: 90vh;
  animation: modalopen 0.4s;
}

@keyframes modalopen {
  from
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
}

#modal-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.modal-info {
  background-color: var(--card-color);
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

.modal-info h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.modal-stats {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}

.modal-stats i {
  color: var(--primary-color);
  margin-right: 5px;
}

footer {
  background-color: var(--secondary-color);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-links h3,
.footer-social h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--card-color);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons i {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgb(153, 153, 153);
  margin-bottom: 5px;
}

@media (max-width: 992px) {

  .about-content,
  .legacy-content,
  .contact-content {
    flex-direction: column;
  }

  .about-image,
  .legacy-image {
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }

  .logo {
    margin-bottom: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .category-tabs {
    flex-wrap: wrap;
  }

  .tab {
    margin: 5px;
  }
}