:root {
  --bg: #0d0d0f;
  --fg: #f5f5f5;
  --accent: #ff4040;
  --glass: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

header.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
}

nav a {
  color: var(--fg);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  background: linear-gradient(180deg, rgba(0,0,0,0.6), var(--bg)),
    url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1500&q=80')
    center/cover no-repeat;
  text-align: center;
  color: white;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

.gallery-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.gallery-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.gallery-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  background: #111;
}

/* Inquiry line styling */
.inquiries {
  text-align: center;
  padding: 2rem;
  margin-top: 1rem;
  color: #ccc;
  font-size: 1rem;
  background: var(--glass);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.inquiries a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.inquiries a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #111;
  color: #888;
  font-size: 0.9rem;
}
