﻿/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0e0e14;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #111122;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
}

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

.nav-links a {
  text-decoration: none;
  color: #ffffff;
}

/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a3a, #0e0e14);
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-buttons {
  margin-top: 2rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: #141428;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-right: 1rem;
}

.btn.primary {
  background: #6a5acd;
  color: #ffffff;
}

.btn.secondary {
  border: 1px solid #6a5acd;
  color: #6a5acd;
}

.btn:hover {
  opacity: 0.85;
}

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

.card {
  background: #22224a;
  /* padding-top: 75%; */
  border-radius: 8px;
}

.card > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 4px;
  border: none;
}

/* Footer */
.site-footer {
  background: #0a0a12;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }
}
