/* Kumbhalgarh Event Management - Google / Material theme */
:root {
  /* Google Material colors */
  --primary: #4285F4;
  --primary-dark: #1967D2;
  --primary-light: #8ab4f8;
  --surface: #ffffff;
  --background: #f8f9fa;
  --background-alt: #e8eaed;
  --text: #202124;
  --text-secondary: #5f6368;
  --text-light: #80868b;
  --white: #fff;
  --shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  --shadow-hover: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
  --radius: 8px;
  --radius-sm: 4px;
  --font-heading: 'Roboto', -apple-system, sans-serif;
  --font-body: 'Roboto', -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--background);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--white);
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top Bar */
.top-bar {
  background: var(--text);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar .phone {
  color: var(--primary-light);
  font-weight: 500;
}

.top-bar .whatsapp {
  color: #25d366;
  font-weight: 500;
}

.top-bar .whatsapp:hover {
  color: #34d26a;
  text-decoration: none;
}

.top-bar .phone:hover {
  color: var(--white);
  text-decoration: none;
}

/* Header */
.header {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo:hover {
  color: var(--white);
  text-decoration: none;
  opacity: 0.95;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.75rem;
  opacity: 0.95;
  letter-spacing: 0.02em;
}

/* Navigation */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.nav a {
  color: var(--white);
  padding: 0.5rem 0.75rem;
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.nav .has-dropdown {
  position: relative;
}

.nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10;
}

.nav .dropdown a {
  color: var(--text);
  padding: 0.5rem 1rem;
}

.nav .dropdown a:hover {
  background: var(--background);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    width: 100%;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav.is-open ul {
    display: flex;
  }

  .nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    background: rgba(0,0,0,0.1);
    margin-left: 1rem;
    margin-top: 0.25rem;
    display: none;
  }

  .nav .has-dropdown:hover .dropdown,
  .nav .has-dropdown.is-open .dropdown {
    display: block;
  }
}

/* Hero */
.hero {
  background: var(--primary);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 3rem 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-tagline {
  color: rgba(255,255,255,0.95);
  font-size: 1rem;
  margin: 0;
}

.hero-small {
  min-height: 200px;
  padding: 2rem 1rem;
}

.contact-block {
  max-width: 640px;
}

.contact-block p {
  margin: 0.5rem 0;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-dark {
  background: var(--text);
  color: var(--white);
}

.section-dark a {
  color: var(--primary-light);
}

.section-dark a:hover {
  color: var(--white);
}

.section-alt {
  background: var(--background-alt);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 500;
  color: var(--text);
}

.section-dark .section-title {
  color: var(--white);
}

.subsection-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 500;
  color: var(--text);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--primary-light);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Testimonials inline */
.testimonials-inline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  font-style: italic;
  box-shadow: var(--shadow);
}

.testimonial-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Useful links */
.useful-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.useful-links-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.useful-links-grid li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.useful-links-grid a:hover {
  text-decoration: underline;
}

/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.section-link {
  margin: 1rem 0 0;
}

.section-link a {
  font-weight: 600;
}

.lead {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
}

.section-dark .lead {
  color: rgba(255,255,255,0.9);
}

.lead.center {
  text-align: center;
}

.performed-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.services-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-col li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
}

.section-alt .services-col li {
  border-color: rgba(0,0,0,0.08);
}

/* CTA */
.cta-section {
  background: var(--primary);
  color: var(--white);
}

.cta-section .section-title,
.cta-section .lead {
  color: var(--white);
}

.cta-section a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cta-section a:hover {
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  margin-top: 1rem;
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 500;
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* Service blocks (Khamma Ghani style) */
.service-blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-block-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.service-block-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--text);
}

.service-block-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Wedding services list */
.wedding-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 2rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wedding-services-list li a {
  display: block;
  padding: 0.4rem 0;
  font-weight: 500;
}

/* Explore Our Best (Shehnai Waden style) */
.explore-best-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.explore-best-card {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  text-align: center;
  color: var(--text);
  border-top: 4px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.explore-best-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  color: var(--primary-dark);
}

/* Booking groups (Malang style) */
.booking-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.booking-group-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.booking-group-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
}

.booking-group-card p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.booking-group-card .suitable-for {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.highlight-cta {
  font-weight: 600;
  color: var(--primary);
}

/* Our Other Websites */
.other-websites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.other-websites-col h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.other-websites-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.other-websites-col li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.other-websites-col a:hover {
  text-decoration: underline;
}

/* Video grid – YouTube embeds by heading */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-card .video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-card .video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card .video-heading {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.section-dark .video-card .video-heading {
  color: rgba(255,255,255,0.95);
}

/* Hotels – Kumbhalgarh & Ranakpur */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hotel-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  list-style: none;
}

.hotel-area {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hotel-name {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.hotel-rooms {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hotel-rooms li {
  padding: 0.2rem 0;
}

.hotel-facilities {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.hotel-card .btn-outline {
  margin-top: 0;
}

.section-alt .hotel-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

/* Video placeholder */
.video-placeholder {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

/* SEO section */
.seo-section {
  padding: 2rem 0;
}

.seo-heading {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 1rem;
  color: var(--text);
}

/* Footer cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.footer-cards .card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.footer-cards .card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.footer-cards .card p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-cards .card a {
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--primary-light);
}
