*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#0b0505;
  color:#f5e6c8;
  overflow-x:hidden;
  background-image:url("assets/bg-texture.jpg");
  background-size:cover;
  background-attachment:fixed;
}

.overlay{
  position:fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  z-index:-1;
}

h1,h2,h3{
  font-family:'Cinzel',serif;
}

.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,140,0,0.25);
}

.logo img{
  width:70px;
}

nav ul{
  display:flex;
  list-style:none;
  gap:35px;
}

nav a{
  color:#e6c07b;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

nav a:hover{
  color:#ff7b00;
}

.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
  background:
  linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
  url("assets/hero-bg.jpg");
  background-size:cover;
  background-position:center;
}

.hero-logo{
  width:180px;
  margin-bottom:20px;
}

.hero h1{
  font-size:90px;
  color:#f5d08d;
  text-shadow:0 0 20px rgba(255,140,0,0.5);
}

.hero p{
  margin-top:20px;
  font-size:22px;
  color:#d7c2a3;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
  justify-content:center;
}

.btn{
  padding:14px 34px;
  text-decoration:none;
  border-radius:4px;
  transition:0.3s;
  font-weight:600;
}

.primary{
  background:#7a1200;
  color:#fff;
  border:1px solid #ff7b00;
}

.primary:hover{
  background:#b32000;
  transform:translateY(-3px);
  box-shadow:0 0 20px rgba(255,120,0,0.5);
}

.secondary{
  border:1px solid #c49b5b;
  color:#f5d08d;
}

.secondary:hover{
  background:#c49b5b;
  color:#000;
}

.featured{
  padding:120px 80px;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:48px;
  color:#f0c67b;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.card{
  background:rgba(20,10,10,0.9);
  border:1px solid rgba(255,140,0,0.15);
  overflow:hidden;
  transition:0.4s;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px rgba(255,100,0,0.25);
}

.card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.card-content{
  padding:25px;
}

.card-content h3{
  margin-bottom:15px;
  font-size:28px;
}

.content-section{
  display:flex;
  align-items:center;
  gap:60px;
  padding:100px 80px;
}

.reverse{
  flex-direction:row-reverse;
}

.content-image img{
  width:100%;
  max-width:650px;
  border:1px solid rgba(255,140,0,0.2);
}

.content-text{
  max-width:500px;
}

.content-text h2{
  font-size:56px;
  margin-bottom:25px;
  color:#f0c67b;
}

.content-text p{
  margin-bottom:30px;
  line-height:1.8;
  color:#d7c2a3;
}

.community{
  padding:120px 20px;
  text-align:center;
}

.community h2{
  font-size:56px;
  margin-bottom:20px;
}

.community p{
  margin-bottom:35px;
}

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid rgba(255,140,0,0.15);
  background:#080404;
}

@media(max-width:991px){

  .navbar{
    padding:20px;
  }

  nav ul{
    gap:15px;
    font-size:14px;
  }

  .hero h1{
    font-size:52px;
  }

  .content-section{
    flex-direction:column;
  }

}
/* FIRE EMBERS */

.embers{
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  pointer-events:none;
  overflow:hidden;
  z-index:1;
}

.embers span{
  position:absolute;
  bottom:-20px;
  width:4px;
  height:4px;
  background:#ff7b00;
  border-radius:50%;
  box-shadow:
  0 0 10px #ff7b00,
  0 0 20px #ff3c00,
  0 0 30px #ff9900;
  animation:emberFloat linear infinite;
  opacity:0.7;
}

@keyframes emberFloat{

  0%{
    transform:translateY(0) translateX(0) scale(1);
    opacity:0;
  }

  10%{
    opacity:1;
  }

  100%{
    transform:translateY(-120vh) translateX(100px) scale(0);
    opacity:0;
  }

}