/* Materialize CSS Customization for Creative Retreat Days */
/* Handmade Style with Color #8B4252 */

:root {
  --primary-color: #8B4252;
  --primary-dark: #6B3240;
  --primary-light: #A85A6B;
  --accent-color: #D4A5B0;
  --text-dark: #2C181C;
  --text-light: #FFFFFF;
  --bg-light: #F5F0F1;
  --bg-dark: #E8DEE0;
  --border-color: #C9B4B9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Header Styles - Plain Text Menu */
header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #710207;
}
h3{
    font-size: 1.9rem;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  order: 1;
  margin-right: auto;
}

.mobile-menu-toggle {
  order: 2;
}

.brand-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
  order: 3;
  margin-left: auto;
}

.nav-menu li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
  padding: 0.5rem 0;
}

.nav-menu li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Square Blocks Menu */
.square-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(29%, 1fr));
  gap: 1.5rem;
  padding: 3rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.btn{
    height: 72px
}
.square-menu-item {
  aspect-ratio: 2;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--text-light);
  border: 3px solid var(--primary-dark);
}

.square-menu-item:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

.square-menu-item h3 {
  font-size: 1.2rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

/* Split Screen Hero (50/50 vertical) */
.hero-split {
  display: flex;
  min-height: 80vh;
  flex-wrap: wrap;
}

.hero-left,
.hero-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.hero-left {
  background: var(--primary-color);
  color: var(--text-light);
}

.hero-right {
  background: var(--bg-dark);
  color: var(--text-dark);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Sections with Contrasting Backgrounds */
section {
  padding: 4rem 20px;
  margin: 0 auto;
  max-width: 1200px;
}

section:nth-child(even) {
  background-color: var(--bg-dark);
}

section:nth-child(odd) {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* About Master Block */
.about-master {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--bg-light);
  box-shadow: 0 4px 12px rgba(139, 66, 82, 0.3);
  margin: 2rem 0;
}

.about-master img {
  width: 100%;
  max-width: 300px;
  border: 5px solid var(--primary-color);
  box-shadow: 10px 10px 0 var(--primary-dark);
}

/* Benefits Block */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-card {
  background: var(--text-light);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(139, 66, 82, 0.3);
  text-align: center;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: scale(1.05) rotate(1deg);
}

.benefit-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Accordion */
.accordion-item {
  background: var(--text-light);
  margin-bottom: 1rem;
  border: 2px solid var(--primary-color);
}

.accordion-header {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 1.5rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: var(--primary-dark);
}

.accordion-content {
  padding: 1.5rem;
  display: none;
}

.accordion-content.active {
  display: block;
}

/* Services Block */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background: var(--text-light);
  box-shadow: 0 4px 12px rgba(139, 66, 82, 0.3);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(139, 66, 82, 0.3);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--primary-color);
}

/* Step-by-step Instructions */
.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-number {
  background: var(--primary-color);
  color: var(--text-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  border: 3px solid var(--primary-dark);
}

.step-content {
  flex: 1;
}

/* Prices Block */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.price-card {
  background: var(--text-light);
  box-shadow: 0 4px 12px rgba(139, 66, 82, 0.3);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-width: 5px;
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: bold;
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

/* CTA Block */
.cta-block {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border: 5px solid var(--primary-dark);
}

.cta-block h1,
.cta-block h2,
.cta-block h3,
.cta-block h4,
.cta-block h5,
.cta-block h6 {
  color: var(--text-light)!important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-block h2 {
  font-size: 2.5rem;
}

.cta-block p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.cta-block a {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border: 3px solid var(--primary-dark);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 3rem 20px 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
 
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.placeholder-img {
  background: #CCCCCC;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border: 2px solid var(--border-color);
  object-fit: cover;
}

.placeholder-img[src*="picture"] {
  background: #CCCCCC;
  min-height: 300px;
}

/* Contact Info */
.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(139, 66, 82, 0.3);
  margin: 2rem 0;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Google Maps */
.map-container {
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(139, 66, 82, 0.3);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .nav-wrapper {
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .nav-menu li a {
    display: block;
    padding: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .brand-logo img {
    height: 40px;
  }

  .hero-split {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-master {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .square-menu {
    grid-template-columns: 1fr;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .square-menu-item {
    padding: 1rem;
  }

  .square-menu-item h3 {
    font-size: 1rem;
  }

  nav {
    padding: 0 10px;
  }

  section {
    padding: 2rem 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Handmade Style Elements */
.handmade-border {
  box-shadow: 0 4px 12px rgba(139, 66, 82, 0.3);
  position: relative;
}

.handmade-border::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px dashed var(--primary-light);
  pointer-events: none;
}

/* Text Contrast */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
}

p, li {
  color: var(--text-dark);
}

/* White text in sections with burgundy background */
header,
.hero-left,
.square-menu-item,
.accordion-header,
.step-number,
.cta-block,
footer,
.cookie-banner {
  color: var(--text-light);
}

header h1,
header h2,
header h3,
header h4,
header h5,
header h6,
header p,
header li,
header a,
.hero-left h1,
.hero-left h2,
.hero-left h3,
.hero-left h4,
.hero-left h5,
.hero-left h6,
.hero-left p,
.hero-left li,
.hero-left a,
.square-menu-item h1,
.square-menu-item h2,
.square-menu-item h3,
.square-menu-item h4,
.square-menu-item h5,
.square-menu-item h6,
.square-menu-item p,
.square-menu-item li,
.square-menu-item a,
.accordion-header h1,
.accordion-header h2,
.accordion-header h3,
.accordion-header h4,
.accordion-header h5,
.accordion-header h6,
.accordion-header p,
.accordion-header li,
.accordion-header a,
.step-number h1,
.step-number h2,
.step-number h3,
.step-number h4,
.step-number h5,
.step-number h6,
.step-number p,
.step-number li,
.step-number a,
.cta-block h1,
.cta-block h2,
.cta-block h3,
.cta-block h4,
.cta-block h5,
.cta-block h6,
.cta-block p,
.cta-block li,
.cta-block a,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p,
footer li,
footer a,
.cookie-banner h1,
.cookie-banner h2,
.cookie-banner h3,
.cookie-banner h4,
.cookie-banner h5,
.cookie-banner h6,
.cookie-banner p,
.cookie-banner li,
.cookie-banner a {
  color: var(--text-light);
}

section:nth-child(even) h1,
section:nth-child(even) h2,
section:nth-child(even) h3,
section:nth-child(even) p,
section:nth-child(even) li {
  color: var(--text-dark);
}

section:nth-child(odd) h1,
section:nth-child(odd) h2,
section:nth-child(odd) h3,
section:nth-child(odd) p,
section:nth-child(odd) li {
  color: var(--text-dark);
}
