/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1e1b18;
  color: #fdf6e3;
  scroll-behavior: smooth;
}

/* Hero Section */
header.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('Pankaj.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 27, 24, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-top: 20px;
}

.mata-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  animation: float 2s ease-in-out infinite;
  border: 4px solid #fdf6e3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Profile Section */
section.profile {
  position: relative;
  padding: 100px 20px;
  text-align: center;
}

.profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('pankaj-placeholder.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.profile-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.profile-content h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.profile-content .description {
  font-size: 1.2em;
  line-height: 1.6;
}

/* Gallery Section */
section.gallery {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.grid-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Contact Section */
section.contact {
  padding: 80px 20px;
  text-align: center;
  background: #3e1f1f;
}

.contact a {
  color: #fdf6e3;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  color: #ffd699;
}

/* Button */
button#bookBtn {
  margin-top: 20px;
  padding: 12px 30px;
  background: #fdf6e3;
  color: #3e1f1f;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

button#bookBtn:hover {
  background: #e6e0d4;
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #1e1b18;
  font-size: 0.9em;
  color: #fdf6e3;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5em;
  }
  .profile-content h2 {
    font-size: 2em;
  }
  .grid-item img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2em;
  }
  .mata-img {
    width: 140px;
    height: 140px;
  }
}
