/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Inter:wght@400;600&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #121212;
  color: #eee;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30, 30, 30, 0.9);
  padding: 1rem 2rem;
  border-bottom: 2px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #d4af37;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: #eee;
  font-weight: 600;
  transition: 0.3s;
}

.nav a:hover {
  color: #d4af37;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #d4af37;
  cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .hero button {
    width: 100%;
    font-size: 1rem;
  }
}


/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(18,18,18,0.95)),
              url("../images/bg.png") center/cover no-repeat;
  color: #fff;
  padding: 2rem;
}

.hero-content {
  max-width: 700px;
  animation: fadeIn 2s ease;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #d4af37;
}

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

.hero button {
  background: #d4af37;
  color: #121212;
  padding: 0.9rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration:none;
}

.hero button:hover {
  background: #f0d77b;
  transform: translateY(-3px);
  text-decoration:none;
}
.hero button a{  text-decoration:none; color:white;}





/* Features */
.features {
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #d4af37;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(30, 30, 30, 0.8);
  border: 2px solid #333;
  border-radius: 15px;
  padding: 2rem;
  transition: 0.3s;
}
.card img { height: auto; width:100%; }
.card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f0d77b;
}

.sep-card {
  background: rgba(30, 30, 30, 0.8);
  border: 2px solid #333;
  border-radius: 15px;
  padding: 2rem;
  transition: 0.3s;
  height:256px;
}

.sep-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.sep-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f0d77b;
}




/* Footer */
.footer {
  background: #1a1a1a;
  text-align: center;
  padding: 1rem;
  border-top: 2px solid #d4af37;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa;
}
footer a { color: #ffd700; text-decoration: none; margin: 0 10px; }
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Flag Animation */
.flag {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #d4af37, #b68c2e);
  color: #121212;
  font-weight: bold;
  border-radius: 3px 0 0 3px;
  animation: wave 2s infinite ease-in-out;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
}

/* Flag-like waving text */
.flag-text {
  display: flex;
  gap: 0.1rem;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #d4af37;
  text-shadow: 2px 2px 4px #000;
}

.flag-text span {
  display: inline-block;
  animation: waveText 1.5s infinite ease-in-out;
}

/* Delay each letter so the wave moves */
.flag-text span:nth-child(1) { animation-delay: 0s; }
.flag-text span:nth-child(2) { animation-delay: 0.1s; }
.flag-text span:nth-child(3) { animation-delay: 0.2s; }
.flag-text span:nth-child(4) { animation-delay: 0.3s; }
.flag-text span:nth-child(5) { animation-delay: 0.4s; }
.flag-text span:nth-child(6) { animation-delay: 0.5s; }
.flag-text span:nth-child(7) { animation-delay: 0.6s; }
.flag-text span:nth-child(8) { animation-delay: 0.7s; }

@keyframes waveText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Copy confirmation message */
#copyMessage {
  margin-top: 1rem;
  font-size: 1rem;
  color: #d4af37;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#copyMessage.show {
  opacity: 1;
}
.claims {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 45vh;
  color: #fff;
  padding: 2rem;
  margin: 10px;
}

.claims button {
  background: #d4af37;
  color: #121212;
  padding: 0.9rem 3rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration:none;
}

.claims button:hover {
  background: #f0d77b;
  transform: translateY(-3px);
  text-decoration:none;
}
.claims button a{  text-decoration:none; color:white;}