@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: white;
    background-color: #0a0a0a;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px;
    background-color: #1a1a1a;
}

.logo img {
    height: 67px;
    width: 80px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #9a7445;
}

.btn-jouer {
    background-color: #c3a26f;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-jouer a {
    color: white;
    text-decoration: none;
}

.btn-jouer:hover {
    background-color: #9a7445;
}

.hero {
    min-height: calc(100vh - 97px - 40px);
    background-image: url('/New_IMG/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative; 
    z-index: 0;
}



.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    font-size: 3rem;
    margin-top: 20px;
    font-weight: bold;
}



.hero-content {
  background-color: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  padding: 40px;
  border-radius: 20px;
  color: #f5f5f5;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    position: relative;
  z-index: 1;
}


.hero-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #ffcc70;
  font-weight: bold;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}




.features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px 20px;
    background-color: #121212;
}

.feature {
    max-width: 300px;
    text-align: center;
    color: white;
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff4655;
}

.feature p {
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    font-size: 0.9rem;
    color: white;
}