/* =====================================================
   OSSIE BRACC YOGA - nature_organic Responsive CSS
   Author: Professional CSS Developer & UI Designer
   Design: Nature-inspired organic (earth tones, green, warmth)
   ===================================================== */

/* RESET & BASE
   ----------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background-color: #F3F3F0;
  color: #235656;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
a {
  color: #1a3b3b;
  text-decoration: none;
  transition: color .2s;
}
a:focus,
a:active {
  outline: 2px dashed #b35a13;
  outline-offset: 2px;
}

/* TYPOGRAPHY
   ----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1a3b3b;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-size: 1rem;
}

strong, b {
  color: #235656;
  font-weight: 700;
}

/* CONTAINERS & LAYOUT
   ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(35,86,86,0.06);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #F3F3F0;
  box-shadow: 0 4px 16px rgba(35,86,86,0.07);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.24s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(179,90,19,0.13);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FEATURES & ORGANIC CARDS
   ----------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3F3F0;
  border-radius: 20px 50px 32px 12px / 38px 20px 38px 32px;
  box-shadow: 0 2px 8px rgba(35,86,86,0.10);
  padding: 28px 20px 20px 28px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 9px;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(35,86,86,0.13);
  transform: translateY(-4px) scale(1.02);
}

/* HERO BLOCK
   ----------------------------------------------------- */
.hero {
  text-align: center;
  align-items: center;
  background: linear-gradient(87deg,#F3F3F0 72%,#d9eddf 100%);
  border-radius: 36px;
  padding: 32px 18px 42px 18px;
  box-shadow: 0 2px 16px rgba(35,86,86,0.09);
}
.hero h1 {
  color: #1a3b3b;
  font-size: 2.2rem;
  margin: 0 0 20px 0;
}
.hero p {
  font-size: 1.15rem;
  color: #235656;
  margin-bottom: 24px;
}

/* CTA BUTTONS
   ----------------------------------------------------- */
.cta-btn {
  display: inline-block;
  background: #b35a13;
  color: #fff;
  border-radius: 999px;
  padding: 13px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(179,90,19,0.07);
  border: none;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  margin-top: 8px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #235656;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(35,86,86,0.17);
}

/* TESTIMONIALS CARDS
   ----------------------------------------------------- */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f4efe7;
  box-shadow: 0 3px 12px rgba(179,90,19,0.09);
  border-radius: 28px 12px 36px 16px / 24px 32px 28px 32px;
  color: #1a3b3b;
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #1a3b3b;
  margin-right: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  flex: 1;
}
.testimonial-card span {
  color: #b35a13;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* ABOUT, SERVICES, SCHEDULE, LEGAL, ETC
   ----------------------------------------------------- */
.about, .services, .schedule, .legal, .cta, .thankyou {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(35,86,86,0.05);
  padding: 36px 20px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1.02rem;
  color: #235656;
}
.contact-info img {
  width: 20px;
  margin-right: 12px;
  opacity: 0.85;
}

/* LEGAL / FOOTER STYLES
   ----------------------------------------------------- */
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

footer {
  background: #e3efe8;
  padding: 24px 0 14px 0;
  font-size: 0.94rem;
  color: #235656;
  border-top-left-radius: 40px 22px;
  border-top-right-radius: 40px 22px;
  box-shadow: 0 -2px 12px rgba(35,86,86,0.08);
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #235656;
  font-weight: 500;
  transition: color .18s;
  padding: 4px 9px;
  border-radius: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #b35a13;
  background: #f3f3f0;
}
footer p {
  text-align: center;
  opacity: .92;
  margin: 0;
}

/* TABLE (horarios)
   ----------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 1rem;
  background: #f9faf8;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(35,86,86,0.05);
}
th,
td {
  padding: 12px 10px;
  text-align: left;
  color: #235656;
}
thead th {
  background: #235656;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}
tbody tr:nth-child(even) {
  background: #e3efe8;
}
tbody tr:nth-child(odd) {
  background: #f3f3f0;
}

/* HEADER + NAVIGATION
   ----------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(35,86,86,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  min-height: 64px;
  gap: 0;
}
header a img {
  height: 56px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 auto;
  margin: 0 16px;
}
.main-nav a {
  color: #235656;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 13px;
  border-radius: 6px;
  transition: background .13s, color .13s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #e3efe8;
  color: #b35a13;
}

/* Hide mobile menu toggle by default (shown in mobile)
   ----------------------------------------------------- */
.mobile-menu-toggle {
  background: #e3efe8;
  color: #235656;
  font-size: 2.1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  padding: 4px 16px 4px 16px;
  margin-left: 16px;
  display: none;
  transition: background .15s, color .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #b35a13;
  color: #fff;
}

/* Mobile menu (off-canvas) */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fffefb;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(0.77,0,0.18,1);
  box-shadow: 3px 0 40px rgba(35,86,86,0.17);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.2rem;
  background: transparent;
  color: #235656;
  border: none;
  cursor: pointer;
  z-index: 2010;
  transition: color .1s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #b35a13;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 70px 32px 38px 32px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #235656;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 100%;
  display: block;
  padding: 10px 0 10px 8px;
  border-radius: 10px;
  transition: background .21s, color .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e3efe8;
  color: #b35a13;
}

/* Hide mobile nav in desktop */
@media (min-width: 950px) {
  .mobile-menu,
  .mobile-menu.active {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* MOBILE NAV show/hide logic */
@media (max-width: 949px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block !important;
  }
}
@media (max-width: 949px) {
  header .container {
    min-height: 58px;
  }
  header a img {
    height: 46px;
  }
}

/* RESPONSIVE STYLES
   ----------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .section {
    padding: 32px 7vw;
  }
  .about, .services, .schedule, .legal, .cta, .thankyou {
    padding: 30px 12px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    margin-bottom: 42px;
    padding: 24px 6vw;
    border-radius: 18px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 13px;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .about, .services, .schedule, .legal, .cta, .thankyou {
    border-radius: 14px;
    padding: 18px 6px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    padding: 16px 12px 14px 16px;
  }
  table th,table td {
    font-size: 0.95rem;
    padding: 8px 6px;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 16px;
    padding: 18px 5vw 26px 5vw;
  }
}

/* Spacing between sections
   ----------------------------------------------------- */
section + section {
  margin-top: 28px;
}

/* Form and Contact (base)
   ----------------------------------------------------- */
.contact-form p {
  font-size: 1.06rem;
  margin-top: 12px;
  margin-bottom: 8px;
}

/* Utility: Margin between cards
   ----------------------------------------------------- */
.content-wrapper > * + * {
  margin-top: 20px;
}
.card + .card,
.feature-item + .feature-item,
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* Organic/Natural style elements (leaf shape, blobs etc can be added as SVG background with absolute, but omitted here for compatibility) */

/* MICRO-INTERACTIONS & TRANSITIONS
   ----------------------------------------------------- */
a, button, .cta-btn, .feature-item, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background .17s, color .14s, box-shadow .19s, transform .18s;
}

/* COOKIE CONSENT BANNER
   ----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #e3efe8;
  color: #235656;
  padding: 22px 10px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 12px rgba(35,86,86,0.09);
  font-size: 1.05rem;
  gap: 30px;
  transition: transform .25s cubic-bezier(.77,0,.18,1), opacity .18s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  border-radius: 999px;
  background: #b35a13;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 24px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-banner button.cookie-settings {
  background: #235656;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  filter: brightness(1.12);
  background: #235656;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: .98rem;
    align-items: flex-start;
    padding: 20px 3vw 20px 3vw;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 9px;
    width: 100%;
  }
}

/* COOKIE SETTINGS MODAL
   ----------------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: rgba(35,86,86,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .2s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px 36px 18px 12px;
  padding: 32px 24px 26px 24px;
  min-width: 240px;
  max-width: 92vw;
  box-shadow: 0 5px 30px rgba(35,86,86,0.17);
  color: #235656;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: #1a3b3b;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #e3efe8;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #235656;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #b35a13;
  border-radius: 6px;
  margin-right: 3px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  background: transparent;
  position: absolute;
  top: 14px;
  right: 24px;
  border: none;
  font-size: 2.2rem;
  color: #235656;
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #b35a13;
}
@media (max-width: 470px) {
  .cookie-modal-content {
    min-width: 0;
    padding: 18px 8px 16px 8px;
    font-size: .96rem;
  }
}

/* ORGANIC DECORATIVE ELEMENTS (for nature_organic style, optional) */
/* You could add SVG blobs or leaf divs as decorative backgrounds using ::before, ::after if markup allows. */

/* GENERAL INTERACTIONS AND ACCESSIBILITY
   ----------------------------------------------------- */
:focus-visible {
  outline: 2px dashed #b35a13;
  outline-offset: 3px;
}

::-webkit-input-placeholder { color: #b3bdb7; }
::-moz-placeholder { color: #b3bdb7; }
:-ms-input-placeholder { color: #b3bdb7; }
::placeholder { color: #b3bdb7; }

/* Hide elements visually (utility) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* --- The End of Ossie Bracc Yoga CSS --- */
