/*
Theme Name: Bloom Cafe
Description: Modern, fresh cafe/restaurant theme for Bloom Cafe, Gurgaon
Author: Convotra AI
*/

:root {
  --primary: #6c9a8b;
  --secondary: #f6c453;
  --accent: #e26a2c;
  --neutral: #f9f9f9;
  --dark: #222;
  --text: #333;
  --radius: 1.2rem;
  --shadow: 0 4px 24px rgba(60,60,60,0.08);
}

body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  color: var(--text);
  background: var(--neutral);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: 'Segoe UI Semibold', 'Roboto Slab', serif;
  color: var(--primary);
  margin-top: 0;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  margin: 2.5rem 0 2rem 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-content {
  flex: 1 1 350px;
  padding: 2.5rem 2rem;
}
.hero-image {
  flex: 1 1 350px;
  min-width: 300px;
  max-width: 500px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 var(--radius) 0;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--neutral);
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-image {
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 400px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text {
  flex: 2 1 350px;
  padding: 2rem 2rem;
}

/* Menu Highlights */
.menu-highlights {
  margin: 2.5rem 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 2.5rem 1.5rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.menu-item {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1rem 1.5rem 1rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.menu-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.menu-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 32px rgba(60,60,60,0.13);
}
.price {
  color: var(--accent);
  font-weight: bold;
  margin-left: 0.5em;
}
.menu-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Gallery */
.gallery {
  margin: 2.5rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.gallery-grid img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 32px rgba(60,60,60,0.13);
}

/* Specials */
.specials {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin: 2.5rem 0;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.specials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.specials li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  margin: 2.5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.2rem;
  font-style: italic;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 8px 32px rgba(60,60,60,0.13);
}
.author {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--primary);
  font-style: normal;
}

/* Stats Strip */
.stats-strip {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  margin: 2.5rem 0;
  padding: 1.5rem 1rem;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}
.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Reservation CTA */
.reservation-cta {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.reservation-cta a {
  color: #fff;
  text-decoration: underline;
}

/* Contact Info */
.contact-info {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin: 2.5rem 0 3rem 0;
  text-align: center;
}
.contact-info a {
  color: var(--primary);
  text-decoration: underline;
}

/* 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;
}

/* Cards (Menu, Gallery, Testimonials) */
.card {
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  background: #fff;
}
.card:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 8px 32px rgba(60,60,60,0.13);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero, .about {
    flex-direction: column;
  }
  .hero-image, .about-image {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero-content, .about-text, .menu-highlights, .specials, .reservation-cta, .contact-info {
    padding: 1.2rem 0.7rem;
  }
  .gallery-grid, .menu-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    flex-direction: column;
    gap: 1rem;
  }
}
