*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Inter,sans-serif;
color:#f5d9a6;
  background:
    linear-gradient(rgba(188, 157, 101, 0.578), rgba(172, 133, 78, 0.244)),
    url("Jan\ 17\,\ 2026\,\ 09_43_19\ PM.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:100vh
}
header{
display:flex;
align-items:center;
justify-content:space-between;
padding:24px 64px;
border-bottom:1px solid rgba(255,215,150,.2)
}
.logo{
display:flex;
align-items:center;
gap:12px;
font-family:Cinzel,serif;
font-size:22px;
font-weight:700
}
nav{
display:flex;
gap:32px;
font-size:15px
}
nav a{
text-decoration:none;
color:#e8c98b;
opacity:.85
}
nav a:hover{opacity:1}
.hero{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 24px
}
.hero h1{
font-family:Cinzel,serif;
font-size:64px;
font-weight:700;
margin-bottom:24px
}
.hero p{
font-size:18px;
max-width:600px;
margin-bottom:40px;
opacity:.9
}
.hero button{
background:linear-gradient(135deg,#f2c87c,#d59b4a);
border:none;
border-radius:12px;
padding:14px 36px;
font-size:16px;
font-weight:500;
color:#3a1d0f;
cursor:pointer
}
.hero button:hover{opacity:.9}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.card {
  position: relative;
  padding: 54px 28px 40px;
  background: rgba(35, 15, 8, 0.55);
  border: 1px solid rgba(255, 190, 120, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 170, 80, 0.25);
}

/* GLOW RING */
.ring {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,190,120,0.45),
    rgba(255,190,120,0.15),
    transparent 70%);
  filter: blur(3px);
  animation: glow 4s infinite ease-in-out;
}

@keyframes glow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
  100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
}

/* ICON */
.icon {
  position: relative;
  z-index: 1;
  font-size: 38px;
  margin-bottom: 22px;
}

/* TEXT */
.card h3 {
  font-family: "Cinzel", serif;
  font-size: 20px;
  margin-bottom: 14px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 26px;
}

.card span {
  font-size: 14px;
  color: #f2c87c;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    padding: 80px 24px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 38px;
  }
}