:root {
  --primary-purple: #6A4C93;
  --light-purple: #B8A9D9;
  --cream: #F5EDE4;
  --waffle-brown: #C68642;
  --dark-text: #2E2E2E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark-text);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  background: var(--primary-purple);
  position: sticky;
  top: 0;
  z-index: 2000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  padding: 4px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(10deg) scale(1.05);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* ABOUT HERO */
.about-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
  color: white;
}

.about-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* OWNER SECTION */
.owner-section {
  padding: 60px 8%;
  max-width: 1200px;
  margin: 0 auto;
}

.owner-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.owner-image {
  display: flex;
  justify-content: center;
}

.owner-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--light-purple);
}

.owner-info h2 {
  font-family: 'Fredoka', sans-serif;
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.owner-info h3 {
  font-family: 'Fredoka', sans-serif;
  color: var(--waffle-brown);
  font-size: 2rem;
  margin-bottom: 20px;
}

.owner-info p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.contact-info {
  margin-top: 25px;
  padding: 20px;
  background: var(--cream);
  border-radius: 15px;
}

.contact-info h4 {
  font-family: 'Fredoka', sans-serif;
  color: var(--primary-purple);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-info .phone {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--waffle-brown);
}

/* STORY SECTION */
.story-section {
  padding: 60px 8%;
  background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
  color: white;
  text-align: center;
}

.story-content h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-content p {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-size: 1.1rem;
  opacity: 0.9;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 600;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 5px;
}

/* BRANCHES INFO */
.branches-info {
  padding: 60px 8%;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.branches-info h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.branch-info-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.branch-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.branch-info-card:hover .branch-image img {
  transform: scale(1.05);
}

.branch-details {
  padding: 25px 20px;
}

.branch-details h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

.branch-address {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.directions-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-purple);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.directions-btn:hover {
  background: #4a3470;
  transform: scale(1.02);
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
  color: white;
}

.cta-section h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--waffle-brown);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(198, 134, 66, 0.4);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 8% 20px;
  background: var(--primary-purple);
  color: white;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.franchise-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--waffle-brown);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 10px 0;
  transition: 0.3s;
}

.franchise-btn:hover {
  background: #b3722e;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-container {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }

  .owner-image img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--primary-purple);
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 20px;
    border-radius: 0 0 0 12px;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about-hero {
    padding: 40px 20px 30px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .owner-section {
    padding: 40px 5%;
  }

  .owner-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
    text-align: center;
  }

  .owner-image img {
    width: 180px;
    height: 180px;
  }

  .owner-info h3 {
    font-size: 1.6rem;
  }

  .story-section {
    padding: 40px 5%;
  }

  .story-content h2 {
    font-size: 2rem;
  }

  .story-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .branches-info {
    padding: 40px 5%;
  }

  .branches-info h2 {
    font-size: 2rem;
  }

  .branches-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .branch-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .about-hero p {
    font-size: 0.9rem;
  }

  .owner-container {
    padding: 20px 15px;
  }

  .owner-image img {
    width: 150px;
    height: 150px;
  }

  .owner-info h3 {
    font-size: 1.3rem;
  }

  .owner-info p {
    font-size: 0.9rem;
  }

  .contact-info .phone {
    font-size: 1.1rem;
  }

  .story-content h2 {
    font-size: 1.6rem;
  }

  .story-content p {
    font-size: 0.95rem;
  }

  .story-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .branches-info h2 {
    font-size: 1.6rem;
  }

  .branch-details h3 {
    font-size: 1.1rem;
  }

  .branch-address {
    font-size: 0.8rem;
  }

  .directions-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}
