/*
Theme Name: Shubham Sharma Events
Description: Elegant, modern event planner site for Delhi-based business
*/

:root {
  --primary: #b9935a;
  --secondary: #3a3a3a;
  --accent: #f5f5f5;
  --white: #fff;
  --black: #181818;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--secondary);
  background: var(--accent);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

main {
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-top: 0;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; }

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.9em 2em;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.btn:hover, .btn:focus {
  background: #a07a3b;
  transform: translateY(-2px) scale(1.04);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--white);
  min-height: 70vh;
  padding: 3rem 0 2rem 0;
  box-shadow: var(--shadow);
}
.hero-content {
  flex: 1 1 350px;
  padding: 2rem 3vw;
  z-index: 2;
}
.hero-content h1 {
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-image {
  flex: 1 1 350px;
  min-width: 320px;
  text-align: right;
  padding: 1rem 3vw 1rem 0;
}
.hero-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--accent);
  padding: 3rem 0;
}
.about-image {
  flex: 1 1 320px;
  min-width: 300px;
  padding: 0 2vw;
}
.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.about-content {
  flex: 2 1 400px;
  padding: 0 3vw;
}
.about-values {
  margin: 1.5rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
}
.about-values li {
  background: var(--white);
  padding: 0.7em 1.2em;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.2s;
}
.about-values li:hover {
  transform: scale(1.05);
}

.services {
  background: var(--white);
  padding: 3rem 0 2rem 0;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.service-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 14px;
  margin-bottom: 1rem;
  object-fit: cover;
}
.service-card h3 {
  margin: 0.5rem 0 0.7rem 0;
}

.gallery {
  background: var(--accent);
  padding: 3rem 0 2rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  object-fit: cover;
  transition: transform 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.04);
}

.packages {
  background: var(--white);
  padding: 3rem 0 2rem 0;
}
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.package-card {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 300px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.package-card h3 {
  margin-bottom: 0.7rem;
}
.package-card ul {
  padding-left: 1.2em;
  margin: 0 0 1.2rem 0;
}
.package-price {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonials {
  background: var(--accent);
  padding: 3rem 0 2rem 0;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 200px;
  font-style: italic;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.testimonial-author {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  color: var(--primary);
  font-weight: 600;
}

.stats {
  background: var(--white);
  padding: 2.5rem 0 2rem 0;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.stat {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.5rem 2.5rem;
  text-align: center;
  min-width: 120px;
  transition: transform 0.2s;
}
.stat:hover {
  transform: scale(1.05);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-size: 1rem;
  color: var(--secondary);
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--accent);
  padding: 3rem 0 2rem 0;
}
.cta-content {
  flex: 2 1 340px;
  padding: 0 3vw;
}
.cta-content h2 {
  margin-bottom: 0.7rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 1rem 0;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8em 1em;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
.contact-form button {
  align-self: flex-start;
}
.contact-details {
  margin-top: 1.2rem;
  font-size: 1rem;
}
.contact-details a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-details a:hover {
  color: #a07a3b;
}
.cta-image {
  flex: 1 1 300px;
  min-width: 260px;
  padding: 1rem 2vw;
  text-align: right;
}
.cta-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero, .about, .cta-contact {
    flex-direction: column;
    text-align: center;
  }
  .hero-image, .about-image, .cta-image {
    text-align: center;
    padding: 1rem 0;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero-content, .about-content, .cta-content {
    padding: 0 1rem;
  }
  .services-grid, .packages-grid, .testimonials-grid, .stats-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
