/* --- CSS RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- VARIABLES & BASE STYLES --- */
:root {
  --color-primary: #1a1a1a;
  --color-secondary: #f4f4f4;
  --color-accent: #25d366;
  --color-text: #333333;
  --color-light-gray: #e0e0e0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #fff;
  color: var(--color-text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* --- HEADER --- */
.main-header {
  text-align: center;
  padding: 2rem 1rem;
}

.logo-container img {
  max-width: 160px;
  height: auto;
  margin: 0 auto;
}

/* --- HERO SECTION --- */
.hero {
  background-color: var(--color-secondary);
  text-align: center;
  padding: 4rem 1rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
}

.hero-content .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin: 0.5rem 0 2rem;
}

/* --- BUTTONS --- */
.button {
  display: inline-block;
  font-family: var(--font-body);
  padding: 12px 28px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* --- STORES SECTION --- */
.stores-section {
  padding: 4rem 1rem;
}

.store-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.store-item {
  background: #fff;
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.store-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.store-item h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.store-item p {
  margin-bottom: 1.5rem;
}

/* --- RESOURCES SECTION --- */
.resources-section {
  padding: 4rem 1rem;
  background-color: var(--color-secondary);
}

.resource-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.resource-item {
  text-align: center;
}

.resource-item img {
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.resource-item:hover img{
    transform: scale(1.03);
}

.resource-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary);
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 4rem 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-column .section-title {
  text-align: left;
  font-size: 2.2rem;
}

.about-column .list-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.about-column ul {
  list-style-type: none;
}

.about-column ul li {
  margin-bottom: 0.75rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding: 4rem 1rem;
  background-color: var(--color-secondary);
  text-align: center;
}

.contact-section form {
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-section form button{
    display: block;
    width: 100%;
}
.form-message {
  margin-top: 1rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* --- FOOTER --- */
.main-footer {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: var(--color-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-bottom: 2rem;
}
.whatsapp-button:hover {
  background-color: #128C7E;
  color: #fff;
}
.whatsapp-button img {
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #fff;
}
.recaptcha-notice {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.5rem;
}

/* --- MEDIA QUERIES for larger screens --- */
@media (min-width: 600px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Larger logo on tablets */
  .logo-container img {
    max-width: 180px;
  }
}

@media (min-width: 900px) {
  .section-title {
    font-size: 3rem;
  }
  .stores-section, .resources-section, .about-section, .contact-section {
    padding: 6rem 2rem;
  }
  .resource-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-content {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  /* Larger logo on desktops */
  .logo-container img {
    max-width: 200px;
  }
}
