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

:root {
  --background: #0a0a0a;
  --foreground: #f5f5f5;
  --accent: #c9a962;
  --muted: #888888;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: white;
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--background) 100%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 2px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-image {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  object-position: -45px center;
}

.about-placeholder {
  font-size: 64px;
  opacity: 0.3;
}

.about-text {
  color: #aaa;
}

.about-text p {
  margin-bottom: 16px;
}

.gallery {
  background: #050505;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  background: #1a1a1a;
  color: var(--muted);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #252525;
}

.filter-btn.active {
  background: white;
  color: black;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}

@media (max-width: 640px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 4px;
  }
}

.photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  display: block;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.empty-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.empty-hint {
  font-size: 14px;
}

.empty-hint code {
  background: #1a1a1a;
  padding: 2px 8px;
  border-radius: 4px;
}

.contact {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #252525;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links span {
  color: #444;
  margin: 0 12px;
}

.footer p {
  color: #666;
  font-size: 14px;
}

.logo {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--foreground);
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

@media (max-width: 640px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox-nav.next {
    right: 10px;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.legal-section {
  padding-top: 120px;
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
}

.legal-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.legal-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--foreground);
}

.legal-container h3 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #ccc;
}

.legal-container p {
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-container a {
  color: var(--accent);
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-list {
  list-style: none;
  padding-left: 0;
}

.legal-list li {
  color: #aaa;
  margin-bottom: 8px;
  padding-left: 4px;
  line-height: 1.7;
}

.legal-note {
  background: #1a1a1a;
  padding: 16px;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.contact-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  margin: 16px 0;
}

.contact-box p {
  margin-bottom: 8px;
}

.info-box {
  background: #1a1a1a;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
  border-left: 3px solid #3498db;
}

.info-box p {
  margin-bottom: 8px;
}

.warning-box {
  background: #1a1a1a;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
  border-left: 3px solid #ffc107;
}
