:root {
  --primary-color: #cda45e;
  --secondary-color: #1a1814;
  --text-color: #444;
  --light-color: #fff;
  --accent-color: #e7ab3c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  letter-spacing: 1px;
}

.logo .red {
  color: red;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.sticky {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--light-color);
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light-color);
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover:after {
  width: 100%;
}

.mobile-menu {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--light-color);
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('img/hero.webp') no-repeat center center / cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--light-color);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}

.glf-button {
  transition: all 0.4s;
  background: transparent;
  border: 2px solid #cda45e;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  color: var(--light-color);
  cursor: pointer;
}

.glf-button:hover {
  background: #cda45e;
  color: #fff;
}

section.contact {
  background: #fff;
  padding: 60px 0;
  color: #000;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-info .info-item {
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

footer {
  background: #111;
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-info h3 span,
.footer-links h4,
.footer-newsletter h4 {
  color: var(--primary-color);
}

.footer-links ul,
.footer-newsletter form {
  margin-top: 15px;
}

.footer-links ul li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-links ul li i {
  margin-right: 8px;
  color: var(--primary-color);
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  width: 70%;
  margin-right: 5px;
  border: none;
  border-radius: 4px;
}

.footer-newsletter input[type="submit"] {
  padding: 10px 20px;
  border: none;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}

.social-links a:hover {
  color: var(--primary-color);
}

@media screen and (max-width: 991px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: 0.5s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 18px;
  }
   .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
}
