/* ===== General Styles ===== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #fafafa;
  color: #222;
  height: 100%;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}
* {
  scrollbar-width: none;
}

/* ===== Header / Navbar ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

nav a {
  text-decoration: none;
  color: #222;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #b36a20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ===== Main Sections ===== */
main {
  padding-top: 80px;
}

section {
  position: relative;
  overflow: hidden;
}

.parallax {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

/* ===== Hero Section ===== */
.hero h1 {
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 20px auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  margin: 10px;
  font-weight: 600;
}

.btn-primary {
  background: #fbbf24;
  color: #222;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}

/* ===== Menu / About / Gallery / Contact ===== */
.menu, .about, .gallery, .contact {
  background: white;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 6px auto;
}

.menu span {
  color: #b36a20;
  font-weight: bold;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item div {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}
