
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #000000;
  color: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}
/*Navbar*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(221, 175, 100, 0.4);
    position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #DDAF64;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}

nav a:hover {
  color: #DDAF64;
}

nav a.active {
  border-bottom: 2px solid #DDAF64;
  padding-bottom: 4px;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.button {
  background-color: #DDAF64;
  padding: 10px 18px;
  border-radius: 25px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background-color: #c99c44;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(221, 175, 100, 0.7);
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .nav-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    margin-top: 16px;
  }

  nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  nav a {
    margin: 8px 0;
  }
}


/*Hero Section*/


.hero {
  text-align: center;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 80px 20px 60px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background-glow.png') no-repeat center;
  background-size: cover;
  opacity: 0.4;
  z-index: 0;
  animation: scrollGlow 30s linear infinite alternate;
}


.hero * {
  position: relative;
  z-index: 1;
}

.tag {
  color: #DDAF64;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
  }
}



/*Cards section*/

.metrics {
  display: flex;
  justify-content: center;
  background-color: #0c0c0c;
  padding: 60px 20px;
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  max-width: 280px;
  box-shadow: 0 0 40px rgba(221, 175, 100, 0.25);
  border: 1px solid rgba(221, 175, 100, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .card {
    padding: 20px 24px;
  }
}

.card h2 {
  font-size: 38px;
  color: #DDAF64;
  margin: 10px 0 5px;
}

.card p {
  color: #ccc;
  font-size: 16px;
  margin: 0 0 20px;
}

.card img {
  width: 70px;
  margin-top: 20px;
}


/*Footer*/

footer {
  background-color: #0a0a0a;
  padding: 50px 40px;
  border-top: 1px solid rgba(221, 175, 100, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: #DDAF64;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 28px;
  margin-right: 10px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 14px;
  color: #DDAF64;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-column a:hover {
  color: #fff;
}

.newsletter label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
  color: #ccc;
}

.newsletter input[type="email"] {
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
  width: 200px;
}

.newsletter button {
  padding: 10px 16px;
  background-color: #DDAF64;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .newsletter button {
    width: 100%;
  }
}

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #666;
  padding-top: 20px;
}

.footer-column .social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #aaa;
}

.footer-column .social a:hover {
  color: #fff;
}

@keyframes scrollGlow {
0% {
    background-position-y: 100%;
}
100% {
    background-position-y: 0%;
}
}

@media screen and (max-width: 768px) {
  .metrics {
    flex-direction: column;
    align-items: center;
  }

  .card {
    margin: 20px 0;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
  }

/*About Section in About page*/
.about-section {
  background-color: #000; 
  padding: 4rem 2rem;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .about-section {
    padding: 2rem 1rem;
  }
}

.about-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #DDAF64;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .about-columns {
    flex-direction: column;
    align-items: stretch;
  }
}


.about-card {
  flex: 1 1 250px;
  background-color: #111;
  padding: 1.5rem;
  border-left: 4px solid #DDAF64;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.about-card h3 {
  margin-top: 0;
  color: #DDAF64;
  font-size: 1.3rem;
}

.about-card p {
  margin: 0.5rem 0 0;
  color: #ccc;
  font-size: 1rem;
}


/*
.contact-form {
  background-color: #000; 
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.contact-form form {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  height: 150px;
}

.contact-form .button {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
}
 */