/* ============================================
   LIQUOR STORE MURFREESBORO LANDING PAGE
   University Liquor & Wine - Local SEO Page
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.liquor-store-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.liquor-store-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Hero-image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.liquor-store-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.85) 100%);
  z-index: 2;
}

.liquor-store-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.liquor-store-hero .decorative-line {
  width: 80px;
  height: 2px;
  background: var(--primary-gold);
  margin: 0 auto 30px;
}

.liquor-store-hero .hero-title {
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.liquor-store-hero .hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  font-weight: 300;
}

.liquor-store-hero .hero-location {
  font-size: 16px;
  color: var(--primary-gold);
  margin-bottom: 40px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.liquor-store-hero .hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.our-story-section {
  background: var(--cream);
}

.our-story-section .story-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.our-story-section .story-content p {
  margin-bottom: 1.25rem;
}

.our-story-section .story-content a {
  color: var(--primary-gold);
  font-weight: 500;
}

.our-story-section .story-content a:hover {
  text-decoration: underline;
}

/* ============================================
   DELIVERY PARTNERS SECTION
   ============================================ */
.delivery-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.delivery-partner-card {
  background: white;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.delivery-partner-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.delivery-partner-card h4 {
  margin-bottom: 1rem;
  color: var(--primary-navy);
  font-size: 1.25rem;
}

.delivery-partner-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text-medium);
}

.delivery-partner-card ul {
  text-align: left;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

.delivery-partner-card ul li {
  margin-bottom: 0.5rem;
}

/* FAQ accordion - reuse same as beer/wine collection */
.faq-accordion .accordion-item {
  margin-bottom: 15px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: var(--primary-gold);
}

.faq-accordion .accordion-header {
  width: 100%;
  padding: 25px 30px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-accordion .accordion-header:hover {
  background: var(--off-white);
}

.faq-accordion .accordion-header.active {
  background: var(--cream);
}

.faq-accordion .accordion-toggle {
  font-size: 28px;
  color: var(--primary-gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion .accordion-header.active .accordion-toggle {
  transform: rotate(45deg);
}

.faq-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-accordion .accordion-content.active {
  max-height: 1200px;
  padding: 0 30px 30px;
}

.faq-accordion .accordion-content p {
  margin-bottom: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-accordion .accordion-content a {
  color: var(--primary-gold);
  font-weight: 500;
}

.faq-accordion .faq-contact-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-accordion .faq-contact-cta .btn-primary {
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .liquor-store-hero {
    min-height: 500px;
    height: 85vh;
  }

  .liquor-store-hero .hero-title {
    font-size: 1.75rem;
  }

  .liquor-store-hero .hero-subtitle {
    font-size: 1rem;
  }

  .faq-accordion .accordion-header {
    padding: 20px;
  }

  .faq-accordion .accordion-content.active {
    padding: 0 20px 20px;
  }
}
