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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1rem 0;
}

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

.nav-logo h2 {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.3s;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #667eea;
}

.nav-link:hover {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s;
}

/* Page Subtitle */
.page-subtitle {
  padding: 1rem 2rem;
  border-bottom: 1px solid #222;
  max-width: 1400px;
  margin: 0 auto;
}

.page-subtitle h1 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.subtitle-text {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  max-width: 100%;
  overflow: hidden;
}

.hero-image {
  min-width: 100vw;
  height: 100vh;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 500px;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Gallery Section */
.gallery {
  padding: 8rem 0;
  background: #111;
}

.gallery-container {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: hidden; /* NO horizontal scroll */
}

.gallery-item {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  aspect-ratio: 3/4 !important; /* Portrait ratio for tall cats */
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .gallery-item {
    max-width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    padding: 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
}
