/* styles.css */
/* Copyright © AR WebScapes 2025 */

:root {
  --dark-bg: #0f1c1f;
  --accent: #00b28f;
  --text-light: #f5f5f5;
  --text-muted: #cccccc;
  --font-stack: 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-stack);
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

.hero {
  background: url('/assets/header-placeholder.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
}

.hero h1 {
  font-size: 2.75rem;
  color: var(--accent);
  font-weight: 600;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--text-light);
}

.content {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.about, .vision, .gallery, .contact {
  margin-bottom: 3rem;
}

h2 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.placeholder-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.placeholder {
  background-color: #1e2a2c;
  border: 2px dashed var(--text-muted);
  color: var(--text-muted);
  padding: 2.5rem 1rem;
  flex: 1 1 calc(33.333% - 1rem);
  text-align: center;
  border-radius: 8px;
  min-height: 100px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.placeholder:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-light);
}

.footer {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #101f22;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
}
.contact-section {
  padding-top: 1rem;
}

.contact-entry {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.contact-placeholder {
  border: 1px dashed #aaa;
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  color: #ccc;
  font-family: monospace;
}

