/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  color: #e0e0e0;
  background-color: #0a0a1a;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 4px;
}

.logo span {
  font-family: 'Righteous', cursive;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b0b0c0;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #fff;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e0e0e0;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: #0a0a1a;
}

.hero-image {
  flex: 0 0 45%;
  max-width: 45%;
  overflow: hidden;
  min-height: 100vh;
}

.hero-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-content {
  flex: 1;
  text-align: center;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: 'Righteous', cursive;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #d0d0e0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* Section Heading */
.section-heading {
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  background: #0a0a1a;
}

.section-heading h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
  padding: 4rem 1.5rem;
  background: #0a0a1a;
}

.content-section.alt {
  background: #0d0d22;
}

.content-block {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.content-image {
  flex: 0 0 40%;
}

.content-image img {
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.content-text {
  flex: 1;
}

.content-text h3 {
  font-family: 'Righteous', cursive;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.content-text p {
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1rem;
  color: #c0c0d0;
}

.content-text blockquote {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.content-text blockquote p {
  font-style: italic;
  color: #b0b0c0;
}

.content-text blockquote .quote {
  font-size: 1.05rem;
  color: #d0d0e0;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 1.5rem;
  background: #0d0d22;
  text-align: center;
}

.gallery-section h2 {
  font-family: 'Righteous', cursive;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #060612;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: #808090;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.copyright {
  font-size: 0.85rem;
  color: #606070;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.3s;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 26, 0.97);
    padding: 1rem 1.5rem;
    gap: 1rem;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-image {
    flex: none;
    max-width: 100%;
    width: 100%;
    min-height: auto;
  }

  .hero-image img {
    height: auto;
    max-height: 70vh;
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  .content-block,
  .content-block.reverse {
    flex-direction: column;
  }

  .content-image {
    flex: none;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
