/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.gap-6 {
  gap: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.relative {
  position: relative;
}

.h-64 {
  height: 19rem;
  margin: 1vw;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bg-white {
  background-color: #fff;
}

.bg-gray-100 {
  background-color: #f7fafc;
}

.bg-slate-400 {
  background-color: #94a3b8;
}

.bg-opacity-50 {
  opacity: 0.5;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-gray-800 {
  color: #2d3748;
}

.text-lg {
  font-size: 1.125rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-relaxed {
  line-height: 1.625;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero Section */
#main-photography {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  color: #333;
  background-color: rgba(148, 163, 184, 0.5);
  margin-top: 5vw;
  line-height: 1.6;
}

/* Mobile CSS (screen ≤ 560px) */
@media (max-width: 600px) {
  #main-photography {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, sans-serif;
    color: #333;
    background-color: rgba(148, 163, 184, 0.5);
    margin-top: 20vw; /* navbar ke niche proper gap */
    line-height: 1.4;
    padding: 1rem;
  }

  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4vw; /* thoda zyada gap */
  }

  .hero-content {
    border: none !important;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    background-color: rgba(148, 163, 184, 0.4);
  }

  .hero-content h1 {
    text-align: center; /* mobile me justify ki jagah center achha lagega */
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.6rem; /* thoda chhota so mobile readable */
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.3;
    margin: 0 auto;
    word-break: break-word;
  }
  .gallery-section {

  width: 100% !important;
  max-width: 100% !important;
}

}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2vw;
}
.hero-content {
  border: 3px solid #000;
  background-color: rgba(148, 163, 184, 0.5);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  max-width: 42rem;
}
/* About Section */
.about-section {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem;
}

/* Gallery Section */
.gallery-section {
  background-color: #f7fafc;
  padding: 3rem 1.5rem;
}

.gallery-grid {
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem 0;
  background-color: #fff;
}

.cta-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #2d3748;
}
