/* style.css – Cinematic Dark Mode for Kalyanam Stories */

/* Fonts */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #0f0f0f;
  color: #f1f1f1;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
}

/* Header */
.main-header {
  background: #000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD700;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #f1f1f1;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #FFD700;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: url('../images/hero-dark.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-button {
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.cta-button:hover {
  background: #f1c40f;
}

/* Sections */
section {
  padding: 60px 20px;
}
.container {
  max-width: 1000px;
  margin: auto;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0;
}
.service-list li {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #FFD700;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  border: 2px solid #333;
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
  border-color: #FFD700;
}

/* Contact */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #1c1c1c;
  padding: 30px;
  border-radius: 10px;
}
input, textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  background: #2c2c2c;
  color: #fff;
}
button {
  padding: 10px;
  background: #FFD700;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background: #f1c40f;
}

.whatsapp-link {
  display: inline-block;
  margin-top: 15px;
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #888;
  font-size: 0.9rem;
}
