@import "common.css";
:root {
    --main-color: #f77f00;
  --text-color: #333333;
  --heading-color: #1a1a1a;
  --bg-light-gray: #f8f8f8;
  --bg-beige: #f7f1e3;
  --bg-dark: #222222;
  --bg-white: #ffffff;
  --border-color: #cccccc;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: 600;
}
.hero-section {
    position: relative;
    width: 100%;
    height: 40vh; 
    background: url("../../img/TEAM.JPG") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2em;
    }
}
main {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.intro-section {
    max-width: 800px;
    margin: 0 auto 50px;
}

.intro-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.dots-img {
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
}

.intro-header-section {
  padding-bottom: 50px;
}
.intro-section p {
   font-size: clamp(0.9rem, 1.2vw, 1rem);
	color: #0e0e0e;
	margin-bottom: 20px;
}


.approach-section {
    padding: 50px 0;
    max-width: 600px;
    margin: 0 auto;
}

.approach-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
}

.approach-list p {
    font-size: 1.1em;
    line-height: 2; 
    margin: 0; 
}

.formats-intro {
    padding-top: 10px;
}

.formats-intro h2 {
    font-size: 2em;
}
.footer-formats-header{
    margin-top: 50px;
    margin-bottom: 80px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
	color: #0e0e0e;
}

.formats-intro p {
    max-width: 700px;
    margin: 10px auto;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
	color: #0e0e0e;
}
.section-title {
	font-size: 2.5em;
	margin-bottom: 50px;
	font-weight: 600;
}

@media (max-width: 1024px) {
    main {
        padding: 40px 3%;
    }

    .intro-section h1 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .intro-section h1 {
        font-size: 1.8em;
    }

    .intro-section p, .approach-list p, .formats-intro p {
        font-size: 1em;
    }
    .dots-img{
        max-width: 400px;
    }
}

.team-formats-section {
    padding: 10px 10px;
    background-color: #ffffff;
    text-align: center;
}
.main-workshops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.workshop-card {
    background-color: #44444414;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.workshop-card .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px; 
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.image-overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 10px 20px;
}


.workshop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.workshop-card .card-content {
    padding: 25px;
}

.workshop-card .card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}
.workshop-card .card-subtitle {
    font-size: 1.1em;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
}

.workshop-card .card-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}
.workshop-card .card-link {
    font-size: 0.9em;
    color: #0a0a0a;
    cursor: pointer;
}

.mini-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 35px;
}

.mini-format-card {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: left;
    min-height: 150px; 
}

.mini-format-card h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.mini-format-card p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

@media (max-width: 900px) {
    .main-workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-formats-section {
        padding: 60px 15px;
    }
    .workshop-card .card-content {
        padding: 20px;
    }
    .mini-formats-grid {
        grid-template-columns: 1fr;
    }
    .mini-format-card {
        text-align: center;
    }
}
.quote-section {
  position: relative;
  padding: 100px 20px;
  background-image: url("../../img/TEAM.JPG");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.quote-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, 0.541); 
    z-index: 1; 
  }
.quote-content {
  color: #fff;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
}

.quote-author {
  font-size:  2.2em;
  font-weight: 400;
  color: #fff;
}
.quote-paragraph {
  font-size:  2.2em;
  color: #fff;
  margin-bottom: 20px;
}
.testimonial-section-mm {
    padding: 80px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.testimonial-container-mm {
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-container-mm h2 {
    color: var(--heading-color);
    text-align: center; 
    font-size: 2.5em;
	margin-bottom: 50px;
	font-weight: 600;
}

.quote-text-mm {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #333333d6;
    text-align: center; 
    font-style: italic;
}

.author-details-mm {
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-top: 50px;
}

.author-photo-mm {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.author-name-mm {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--heading-color);
}

.author-role-mm {
    font-weight: bold;
    font-size: small;
    color: #000000a8;
}
.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.author-name {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #333;
}

.author-title {
    font-size: 0.9em;
    font-style: italic;
    color: #666;
    margin: 0;
}
@media (max-width: 500px) {
    .mini-service-card {
        flex-basis: 100%; 
    }
}
.cta-banner-section {
    padding: 80px 5%;
    background-color: #88888833;
    text-align: center;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cta-banner-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-color);
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
}
.cta-banner-buttons .btn-cta.primary {
    background-color: #F42B37;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
}
.cta-banner-buttons .btn-cta.primary:hover {
    background-color: #DD6822; 
}


.cta-button.secondary {
    color: #0e0d0d;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    background-color: #77757559;
}

.cta-button.secondary:hover {
    background-color: #DD6822
}
@media (max-width: 600px) {
    .cta-banner-section {
        padding: 50px 3%;
    }

    .cta-banner-content h2 {
        font-size: 1.8em;
    }

    .cta-banner-content p {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .cta-banner-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-banner-buttons .btn-cta.primary {
        width: 70%; 
        max-width: 300px;
        padding: 12px 20px;
    }

}