:root {
  --primary: #e63946;
  --dark: #0a0a0a;
  --card-bg: rgba(18, 18, 18, 0.78); 
  --light: #f5f5f5;
  --border: #262626;
  --accent: #ffb703;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* === DIRECT WATERMARK CONTAINER (BIGGER SIZE) === */
.bg-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0; /* Keeps it behind main content */
  pointer-events: none; /* Allows clicks to pass through */
}

.bg-watermark img {
  /* Increased from 550px to 850px for a prominent full-screen graphic */
  width: min(850px, 92vw);
  height: auto;
  opacity: 0.16; /* Faint enough for readability, visible enough to stand out */
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.9));
}

/* Notice Banner */
.wip-banner {
  background: var(--accent);
  color: #000;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
}

/* Header & Nav */
header {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* === HEADER LOGO (BIGGER SIZE) === */
.logo-img {
  /* Increased from 48px to 75px for higher visibility */
  height: 75px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #fff;
  border-bottom: 2px solid var(--primary);
}

/* Main Content Container */
.container {
  max-width: 850px;
  margin: 2.5rem auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2; /* Ensures text & buttons float above watermark */
}

/* Hero Section */
.hero {
  border-left: 4px solid var(--primary);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
  background: rgba(10, 10, 10, 0.5);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-radius: 0 6px 6px 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero p {
  color: #aaa;
  font-size: 1.05rem;
}

/* Content Cards */
.card {
  background: var(--card-bg);
  padding: 1.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px); /* Frosted glass effect over watermark */
}

.card h2 {
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #c92a37;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: 6px;
  border: 1px solid var(--border);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item p {
  padding: 0.85rem;
  font-size: 0.85rem;
  color: #aaa;
  font-weight: 600;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.75);
  color: #fff;
  font-size: 0.95rem;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  color: #555;
  font-size: 0.8rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 10;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .logo-img {
    height: 55px; /* Scales down gracefully on small mobile screens */
  }
  .bg-watermark img {
    width: 90vw;
  }
}