/* style.css */

/*--------------------------------------------------------------
# Root Variables
--------------------------------------------------------------*/
:root {
  --font-primary: 'Oswald', sans-serif;
  --font-secondary: 'Nunito', sans-serif;

  /* Analogous Color Scheme - Base: Teal */
  --color-primary: #008080; /* Teal - Main brand color */
  --color-primary-dark: #006666; /* Darker teal for hover/active states */
  --color-primary-light: #e0f2f1; /* Light teal for subtle backgrounds or accents */

  --color-accent1: #00A060; /* Green - Analogous accent */
  --color-accent1-dark: #00804D;

  --color-accent2: #0060A0; /* Blue - Analogous accent */
  --color-accent2-dark: #004D80;

  --color-text-light: #FFFFFF;
  --color-text-dark: #363636; /* Bulma's default text color, good for body */
  --color-text-headings: #222222; /* For main headings, slightly darker */
  --color-text-subtle: #555555; /* For less important text */

  --color-background-body: #FFFFFF; /* Default body background */
  --color-background-light-section: #f8f9fa; /* Very light gray for section backgrounds */
  --color-background-dark-section: #212529; /* Dark background for contrast sections or footer */
  
  --color-border: #dbdbdb; /* Bulma's default border color */
  --color-border-input-focus: var(--color-primary);

  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 12px;

  --box-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --box-shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-strong: 0 6px 20px rgba(0, 0, 0, 0.15);

  --transition-speed: 0.3s ease;
  --header-height: 3.25rem; /* Default Bulma navbar height (52px) */
  --header-padding-compensation: 80px; /* Padding for pages with fixed header */
}

/*--------------------------------------------------------------
# General Styles & Bulma Overrides
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrollbars */
}

body {
  font-family: var(--font-secondary);
  color: var(--color-text-dark);
  line-height: 1.7;
  background-color: var(--color-background-body);
  font-size: 1rem; /* Base font size */
  padding-top: 0px !important;
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-headings);
  font-weight: 500; /* Oswald default weight */
}

.title {
    color: var(--color-text-headings); 
    text-shadow: none; 
}
.title.is-1 { font-size: 3rem; }
.title.is-2 { font-size: 2.5rem; }
.title.is-3 { font-size: 2rem; }
.title.is-4 { font-size: 1.5rem; }
.title.is-5 { font-size: 1.25rem; }


.subtitle {
    color: var(--color-text-subtle);
    font-weight: 400; /* Nunito for subtitles */
    font-family: var(--font-secondary);
}

a {
  color: var(--color-primary);
  transition: color var(--transition-speed);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Global Button Styles (enhancing Bulma) */
.button {
  font-family: var(--font-primary);
  font-weight: 500;
  border-radius: var(--border-radius-small);
  transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.8em 1.8em;
  border-width: 1px; /* Ensure consistent border appearance */
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-medium);
}

.button.is-primary {
  background-color: var(--color-primary);
  border-color: transparent;
  color: var(--color-text-light);
}

.button.is-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: transparent; /* Keep border transparent on hover */
  color: var(--color-text-light);
}

.button.is-primary:focus,
.button.is-primary.is-focused {
    box-shadow: 0 0 0 0.125em rgba(0, 128, 128, 0.35); /* Teal focus ring */
}

.button.is-large {
    font-size: 1.25rem; /* Adjusted for better proportion */
}

/* Section Styling */
.section {
  padding: 4rem 1.5rem; 
}

.section-title {
  margin-bottom: 3rem !important; /* Bulma .title has margin, ensure enough */
  font-weight: 700;
  color: var(--color-text-headings);
  text-align: center !important; /* Ensure all section titles are centered */
}

.container {
  max-width: 1140px; 
}

/*--------------------------------------------------------------
# Header / Navbar
--------------------------------------------------------------*/
.header.is-fixed-top .navbar {
  background-color: rgba(255, 255, 255, 0.95); 
  box-shadow: var(--box-shadow-soft);
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px);
}

.navbar-item, .navbar-link {
  font-family: var(--font-secondary);
  font-weight: 600; /* Slightly bolder for nav items */
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.navbar-item:hover, .navbar-link:hover,
.navbar-item.is-active { /* Style for active page link */
  background-color: var(--color-primary-light) !important; 
  color: var(--color-primary-dark) !important;
}

.navbar-item.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary) !important; /* Override Bulma's default link color */
}
.navbar-item.logo-text:hover {
    background-color: transparent !important; /* No hover background for logo */
}

.navbar-burger span {
  background-color: var(--color-primary);
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
    padding: 0.5rem 0;
  }
  .navbar-item {
    padding: 0.75rem 1.25rem;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--color-text-light); /* Default text color for hero */
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

#hero .hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .container {
  max-width: 800px;
}

#hero .hero-title, #hero .title { /* Ensure hero title uses white */
  color: var(--color-text-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

#hero .hero-subtitle, #hero .subtitle { /* Ensure hero subtitle uses white */
  color: var(--color-text-light);
  opacity: 0.9; /* Slightly less prominent than title */
}

#hero .hero-text { /* Ensure hero paragraph uses white */
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

#hero .button.is-primary {
    background-color: var(--color-accent1); 
    border-color: var(--color-accent1);
    padding: 0.9em 2.2em; /* Slightly adjusted padding for hero button */
}
#hero .button.is-primary:hover {
    background-color: var(--color-accent1-dark);
    border-color: var(--color-accent1-dark);
}

/*--------------------------------------------------------------
# Workshops, Clientele (Cards)
--------------------------------------------------------------*/
.workshops-section, .clientele-section, .external-resources-section {
  background-color: var(--color-background-light-section);
}

.card { /* General card styling for .workshop-card, .testimonial-card, etc. */
  background-color: var(--color-text-light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--box-shadow-soft);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  height: 100%; 
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Ensure content doesn't spill from rounded corners */
}

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

/* Card Image container specific styles */
.card .card-image { /* Bulma's .card-image wrapper */
  position: relative; /* Needed for Bulma's figure.image if used */
}

.card .image-container { /* Custom class for the <figure> or a <div> wrapping <img> */
  display: block; /* Or flex if content needs to be centered inside */
  overflow: hidden; /* Crucial for object-fit and border-radius on image */
}

/* Workshop Card Images */
.workshop-card .image-container {
  height: 220px; 
  width: 100%;
  background-color: var(--color-primary-light); /* Placeholder bg */
}
/* Testimonial Card Images (Profile Pics) */
.testimonial-card .image-container {
  width: 150px; /* Profile pic width */
  height: 150px; /* Profile pic height */
  margin: 1.5rem auto 0; /* Center profile pic container */
  border-radius: 50%;
  background-color: var(--color-primary-light); /* Placeholder bg */
}

.card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* If is-rounded is on img tag itself for testimonials */
.testimonial-card .image-container img.is-rounded {
    border-radius: 50%;
}


/* Card Content specific styles */
.card .card-content {
  padding: 1.5rem;
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  text-align: center; /* STROGO: All card content centered */
}

.card .card-content .title { /* Titles within cards */
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-headings);
}
.card .card-content .subtitle { /* Subtitles within cards */
  font-size: 0.9rem;
  color: var(--color-text-subtle);
  margin-bottom: 1rem;
  font-family: var(--font-secondary); /* Ensure Nunito */
}

.workshop-card .price-tag {
  font-weight: 700;
  color: var(--color-accent2);
  font-size: 1.2rem;
  display: block; /* Ensure it takes full width for centering */
  margin-bottom: 1rem;
}

.card .card-content .content { /* Paragraphs within cards */
  font-size: 0.95rem;
  margin-bottom: 1.5rem; 
  flex-grow: 1; 
  /* Text will be centered due to parent's text-align: center */
}
/* For workshop card description, if really long, centered might be less readable.
   If specific override for readability is needed, target it:
.workshop-card .card-content .content { text-align: left; } 
   But sticking to STROGO for now.
*/

.card .button { /* Button at the bottom of a card */
  margin-top: auto; /* Pushes button to the bottom */
}

/*--------------------------------------------------------------
# Accolades Section
--------------------------------------------------------------*/
.accolades-section {
  background-color: var(--color-background-light-section);
}
.accolades-section .content.is-medium {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}
.accolades-section .level-item .heading {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.accolades-section .level-item .title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
}
.accolades-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-soft);
    margin-top: 2rem; /* Spacing if it's below text */
}

/*--------------------------------------------------------------
# Clientele Section (Testimonials) - uses .card styles above
--------------------------------------------------------------*/
.testimonial-card .card-content .title { /* Name */
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem; /* Space after image */
}
.testimonial-card .card-content .subtitle { /* Role */
    font-size: 0.9rem;
    color: var(--color-accent1);
}
.testimonial-card .content { /* Testimonial text */
    font-style: italic;
    color: var(--color-text-subtle);
}

/*--------------------------------------------------------------
# External Resources Section
--------------------------------------------------------------*/
.external-resources-section .box {
    background-color: var(--color-text-light);
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-speed);
    padding: 1.5rem;
    height: 100%; /* Ensure boxes in a row have same height */
}
.external-resources-section .box:hover {
    box-shadow: var(--box-shadow-medium);
    transform: translateY(-3px);
}
.external-resources-section .box h3.title.is-5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem; /* Adjusted size */
}
.external-resources-section .box h3.title.is-5 a {
    color: var(--color-accent2);
    font-weight: 500;
}
.external-resources-section .box h3.title.is-5 a:hover {
    color: var(--color-accent2-dark);
}
.external-resources-section .box p {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Community Section
--------------------------------------------------------------*/
#community {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 5rem 1.5rem;
  color: var(--color-text-light); /* Default text color for section */
}

.community-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)); 
  z-index: 1;
}

#community .container {
  position: relative;
  z-index: 2;
}

#community .section-title, #community .subtitle {
  color: var(--color-text-light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

#community .button {
    margin: 0.5rem;
}
#community .button.is-facebook {
    background-color: #3b5998; color: white; border-color: #3b5998;
}
#community .button.is-facebook:hover {
    background-color: #324b80; border-color: #324b80;
}
#community .button.is-twitter {
    background-color: #1da1f2; color: white; border-color: #1da1f2;
}
#community .button.is-twitter:hover {
    background-color: #1a8cd8; border-color: #1a8cd8;
}
.community-image {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: var(--border-radius-medium);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  background-color: var(--color-text-light); /* Or light gray like other content sections */
}
.contact-section .label {
    color: var(--color-text-dark);
    font-weight: 600; /* Bolder labels */
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}
.contact-section .input, .contact-section .textarea, .contact-section .select select {
    border-radius: var(--border-radius-small);
    border-color: var(--color-border);
    box-shadow: var(--box-shadow-soft); /* Subtle shadow for inputs */
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
    font-size: 1rem;
    padding: 0.75em 1em;
}
.contact-section .input:focus, 
.contact-section .textarea:focus,
.contact-section .select select:focus,
.contact-section .input:active, 
.contact-section .textarea:active,
.contact-section .select select:active {
    border-color: var(--color-border-input-focus);
    box-shadow: 0 0 0 0.125em rgba(0, 128, 128, 0.25); 
}
.contact-section .select:not(.is-multiple)::after { /* Style dropdown arrow */
    border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--color-background-dark-section);
  color: #a9b3bb; 
  padding: 3rem 1.5rem 2rem;
  font-size: 0.9rem;
}

.footer .title.footer-title {
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer a {
  color: #c3cbd2;
}

.footer a:hover {
  color: var(--color-text-light);
}

.footer ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}

.footer .social-links a { /* Text-based social links */
    font-weight: 500;
    display: inline-block; /* For proper spacing */
    padding: 0.25rem 0; /* Small vertical padding */
}
.footer .social-links li:not(:last-child) {
    margin-right: 1rem; /* If links are inline-block */
}


.footer hr {
    background-color: #495057; 
    height: 1px;
    border: none;
    margin: 1.5rem 0;
}
.footer .content p {
    color: #a9b3bb;
}


/*--------------------------------------------------------------
# Utility Classes (e.g., for GSAP animations)
--------------------------------------------------------------*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px); /* Start slightly lower */
  /* GSAP will handle the transition, but a fallback can be nice */
  /* transition: opacity 0.5s ease-out, transform 0.5s ease-out; */
}

/* is-visible class will be added by JS (GSAP ScrollTrigger) */
/* .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
} */

/*--------------------------------------------------------------
# Specific Page Styles
--------------------------------------------------------------*/
/* success.html */
.success-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background-color: var(--color-background-light-section);
}
.success-page-container .success-icon { /* Placeholder for potential icon */
    font-size: 4rem; /* Example */
    color: var(--color-accent1);
    margin-bottom: 1rem;
}
.success-page-container .title {
    color: var(--color-text-headings);
}
.success-page-container .subtitle {
    color: var(--color-text-subtle);
}

/* privacy.html, terms.html */
.static-page-content {
  padding-top: var(--header-padding-compensation); 
  padding-bottom: 3rem;
  min-height: calc(100vh - var(--header-padding-compensation)); /* Ensure it takes reasonable height */
}
.static-page-content .container {
    max-width: 800px; 
}
.static-page-content .title.is-1 { /* Main page title */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.static-page-content .title:not(.is-1) { /* Section titles within page */
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.static-page-content p, 
.static-page-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}
.static-page-content ul,
.static-page-content ol {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.static-page-content ul { list-style-type: disc; }
.static-page-content ol { list-style-type: decimal; }


/*--------------------------------------------------------------
# Read More Link Style (Example, if used)
--------------------------------------------------------------*/
.read-more-link {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-accent1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3em 0;
  position: relative;
}
.read-more-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent1);
  transform: scaleX(0.5);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.read-more-link:hover {
    color: var(--color-accent1-dark);
    text-decoration: none;
}
.read-more-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  .title.is-1 { font-size: 2.25rem; }
  .title.is-2, .section-title { font-size: 2rem; margin-bottom: 2rem; }
  .title.is-3 { font-size: 1.75rem; }
  .title.is-4 { font-size: 1.3rem; }


  #hero .hero-title, #hero .title.is-1 {
    font-size: 2.2rem;
  }
  #hero .hero-subtitle, #hero .subtitle.is-3 {
    font-size: 1.2rem;
  }
  
  .columns.is-multiline .column { 
    margin-bottom: 1.5rem; /* Add space between stacked cards */
  }
  .workshop-card .image-container {
      height: 200px; 
  }
  .testimonial-card .image-container {
      width: 120px;
      height: 120px;
  }
  
   .footer .columns > .column { /* Target direct children columns */
    text-align: center; 
    margin-bottom: 1.5rem;
  }
  .footer .columns > .column:last-child {
    margin-bottom: 0;
  }
  .footer .social-links li {
    display: inline-block; /* Keep them inline but centered by parent */
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}

/* Cookie Consent Popup - Minimal styling, mostly handled inline as per prompt */
#cookie-consent-popup {
    z-index: 9999 !important; 
}
#cookie-consent-popup p a {
    color: #bbb; /* Lighter link for better contrast on dark bg */
    text-decoration: underline;
}
#cookie-consent-popup p a:hover {
    color: var(--color-text-light);
}
#accept-cookie-consent {
    background-color: var(--color-primary) !important; 
    color: var(--color-text-light) !important;
    font-family: var(--font-primary) !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius-small) !important;
}
#accept-cookie-consent:hover {
    background-color: var(--color-primary-dark) !important;
}