/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Navigation */
.nav {
  background-color: #ffffff;
  border-bottom: 2px solid #8b4cbf;
  padding: 1rem 1.5rem;
}

.nav-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}

.logo-text {
  font-size: 1.5rem;
  color: #8b4cbf;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  align-items: center;
}

.nav-link {
  color: #8b4cbf;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #7a42a8;
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.container-small {
  max-width: 896px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.text-center {
  text-align: center;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-logo {
  width: 128px;
  height: 128px;
  margin: 0 auto 2rem;
  border-radius: 8px;
}

/* Make small page icons (used on Instagram and Newsletter pages) match the hero logo */
.icon-logo {
  width: 128px;
  height: 128px;
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  object-fit: contain;
}

.hero-title {
  font-size: 3.75rem;
  color: #8b4cbf;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-phone {
  margin-bottom: 1.5rem;
}

.phone-link {
  font-size: 1.875rem;
  color: #8b4cbf;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.phone-link-large {
  display: inline-block;
  font-size: 1.875rem;
  color: #8b4cbf;
  text-decoration: none;
  margin: 1.5rem 0;
}

.phone-link-large:hover {
  text-decoration: underline;
}

.phone-link-medium {
  display: inline-block;
  font-size: 1.5rem;
  color: #8b4cbf;
  text-decoration: none;
  margin: 1.5rem 0;
}

.phone-link-medium:hover {
  text-decoration: underline;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-primary {
  background-color: #8b4cbf;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #7a42a8;
}

.btn-secondary {
  border: 2px solid #8b4cbf;
  color: #8b4cbf;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: #8b4cbf;
  color: #ffffff;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border: 2px solid #8b4cbf;
  border-radius: 0.5rem;
}

.feature-title {
  font-size: 1.5rem;
  color: #8b4cbf;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-text {
  color: #666;
}

/* Contact Section */
.contact-section {
  text-align: center;
}

.contact-title {
  font-size: 1.875rem;
  color: #8b4cbf;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.contact-text {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1rem;
}

.contact-phone {
  color: #8b4cbf;
  text-decoration: none;
}

.contact-phone:hover {
  text-decoration: underline;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.contact-link {
  color: #8b4cbf;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.divider {
  color: #ccc;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.25rem;
  color: #8b4cbf;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #666;
}

/* Coming Soon Box */
.coming-soon-box {
  margin: 3rem 0;
  padding: 3rem;
  border: 4px solid #8b4cbf;
  border-radius: 0.5rem;
  background-color: #ffffff;
  text-align: center;
}

.coming-soon-title {
  font-size: 3rem;
  color: #8b4cbf;
  margin-bottom: 1rem;
  font-weight: 500;
}

.coming-soon-text {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Info Box */
.info-box {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
}

.info-title {
  font-size: 1.5rem;
  color: #8b4cbf;
  margin-bottom: 1rem;
  font-weight: 500;
}

.info-text {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1rem;
}

.info-text-small {
  font-size: 1.125rem;
  color: #666;
  margin-top: 1.5rem;
}

.instagram-link {
  color: #8b4cbf;
  text-decoration: none;
}

.instagram-link:hover {
  text-decoration: underline;
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.info-item-title {
  font-size: 1.25rem;
  color: #8b4cbf;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.info-item-text {
  color: #666;
}

/* How It Works */
.how-it-works {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 0.5rem;
}

.how-it-works-title {
  font-size: 1.5rem;
  color: #8b4cbf;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-number {
  width: 24px;
  height: 24px;
  background-color: #8b4cbf;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-text {
  color: #666;
}

/* CTA Box */
.cta-box {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  border: 2px solid #8b4cbf;
  border-radius: 0.5rem;
}

.cta-title {
  font-size: 1.5rem;
  color: #8b4cbf;
  margin-bottom: 1rem;
  font-weight: 500;
}

.cta-text {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Icon Large */
.icon-large {
  font-size: 4rem;
  margin: 0 auto 1.5rem;
}

/* Instagram Page */
.instagram-main {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.instagram-handle {
  font-size: 1.5rem;
  color: #8b4cbf;
  margin-bottom: 1rem;
  font-weight: 500;
}

.instagram-text {
  color: #666;
  margin-bottom: 1.5rem;
}

.instagram-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.instagram-feature {
  padding: 1.5rem;
  border: 1px solid #8b4cbf;
  border-radius: 0.5rem;
}

.feature-title-small {
  font-size: 1.125rem;
  color: #8b4cbf;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.feature-text-small {
  color: #666;
  font-size: 0.875rem;
}

/* Redirect Notice */
.redirect-notice {
  text-align: center;
  padding: 1.5rem;
  background-color: #8b4cbf;
  color: #ffffff;
  border-radius: 0.5rem;
}

.redirect-subtext {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.redirect-link {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .instagram-features {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .divider {
    display: none;
  }
}
