:root {
  --primary-color: #ff2a85;
  --secondary-color: #111111;
  --bg-color: #faf9f8;
  --card-bg: #ffffff;
  --text-color: #2c2c2c;
  --text-muted: #777777;
  --border-radius: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 0.8rem 2rem;
}

@media (max-width: 768px) {
  header, .navbar, .nav-container {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
  }

  .logo-container, .brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo-img, header img {
    max-height: 35px;
    width: auto;
  }

  .logo-text, .brand-name {
    font-size: 1.1rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  nav, .nav-links {
    display: flex;
    gap: 12px;
  }

  nav a, .nav-links a {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .section {
  	scroll-margin-top: 160px !important;
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--secondary-color);
}

.brand img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 42, 133, 0.15);
}

.card-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.card-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background-color: #eef0f2;
}

img.lazy-img {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

img.loaded {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-info {
  padding: 1rem;
  text-align: center;
}

.card-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: var(--transition);
  z-index: 2010;
}

.lightbox-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-close {
  top: 25px;
  right: 25px;
}

.lightbox-prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

footer {
  background: var(--secondary-color);
  color: #ffffff;
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-top: 5rem;
}

footer p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

footer .author {
  color: var(--primary-color);
  font-weight: 600;
}