
:root{
  --bg:#000;
  --gold:#f5c542;
  --silverblue:#b8c7ff;
  --white:#f2f2f2;
  --muted:rgba(242,242,242,.75);
  --card:rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.06);
  --stroke:rgba(245,197,66,.28);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  color:var(--white);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;

  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(120,140,255,0.06), transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), transparent 80%),
    #000;
}

/* HERO */

.hero{
  text-align:center;
  padding:48px 18px 28px;
  border-bottom:1px solid var(--stroke);
}

.logo{
  width:140px;
  max-width:42vw;
  margin:0 auto 14px;
  display:block;
}

.brand{
  margin:0;
  font-size:34px;
  font-weight:800;
  color:var(--gold);
}

.divider{ opacity:.7; }

.tagline{
  margin:10px 0 18px;
  color:var(--silverblue);
}

.hero-text{
  max-width:760px;
  margin:20px auto;
}

.hero-lead{
  font-size:18px;
  color:var(--gold);
  font-weight:600;
  margin-bottom:14px;
}

.hero-sub{
  color:var(--silverblue);
  margin-bottom:14px;
}

.hero-philosophy{
  color:rgba(242,242,242,.7);
  font-style:italic;
}

/* NAV */

.nav{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
}

.nav a:hover{
  color:var(--white);
  border-color:var(--gold);
}

/* MAIN */

.wrap{
  max-width:1000px;
  margin:0 auto;
  padding:30px 16px;
}

.panel{
  text-align:center;
  margin:20px auto;
  padding:22px 16px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  background:linear-gradient(180deg,var(--card),transparent);
}

.panel h2{
  color:var(--gold);
}

.lead{
  color:var(--silverblue);
}

/* GALLERY */

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:16px;
}

@media (min-width:900px){
  .grid{
    grid-template-columns:repeat(4,1fr);
  }
}

.card{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card figcaption{
  padding:10px;
  font-size:14px;
  color:var(--silverblue);
}

/* BUTTON */

.btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 16px;
  border-radius:999px;
  background:var(--gold);
  color:#000;
  text-decoration:none;
  font-weight:700;
}

/* FOOTER */

.footer{
  text-align:center;
  padding:30px;
  color:rgba(242,242,242,.6);
}
/* GALLERY */

.gallery {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: gold;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}/* GALLERY */

.gallery {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: gold;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
