@import url('https://fonts.googleapis.com/css2?family=Squada+One&family=Arimo:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --dark-green: #357738;
    --dark-teal: #0f5f53;
    --pink-salmon: #efaa9c;
    --dark-brown: #503530;
    --off-white: #ede8ea;
    --white: #ffffff;
    --font-heading: 'Squada One', sans-serif;
    --font-body: 'Arimo', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.5;
    color: var(--white);
    background-color: var(--off-white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: bold;
    transition: opacity 0.3s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    opacity: 0.9;
}

/* Section Common Styles */
section {
    width: 100%;
    padding: 80px 10%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.full-width {
    padding-left: 0;
    padding-right: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Section 1: Hero */
.hero {
    background-color: var(--dark-green);
    min-height: 100vh;
    padding-top: 40px;
    position: relative;
}

.hero-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
}

.hero-content {
    flex: 1;
    padding: 40px;
}

.hero-image-wrapper {
    flex: 1.5;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 80px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: var(--dark-brown);
    color: var(--white);
}

/* Section 2: About Deb */
.about {
    background-color: var(--pink-salmon);
    color: var(--dark-brown);
}

.about-content {
    flex: 1;
    padding-right: 40px;
}

.about-photo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-photo-wrapper img {
    border-radius: 200px;
    width: 350px;
    height: 500px;
    object-fit: cover;
}

.about h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Section 3: Philosophy */
.philosophy {
    background-color: var(--dark-teal);
    position: relative;
    flex-direction: column;
}

.philosophy-quote-top {
    width: 100%;
    text-align: right;
    color: var(--pink-salmon);
    font-style: italic;
    font-size: 20px;
    margin-bottom: 40px;
}

.philosophy-main {
    display: flex;
    align-items: center;
    width: 100%;
}

.philosophy-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.philosophy-image-wrapper img {
    border-radius: 200px;
    width: 450px;
    height: 320px;
    object-fit: cover;
    transform: rotate(-90deg); /* Stacked rocks was rotated in JSON */
}

/* Re-thinking rotation based on JSON: 
"E":90.0 in the rocks image, but the actual photo in Canva looks normal.
Wait, "M0,150L0,150C0,67.2,67.2,0,150,0h200c82.8,0,150,67.2,150,150l0,0c0,82.8-67.2,150-150,150H150C67.2,300,0,232.8,0,150z"
is a pill shape.
I'll just use object-fit and border-radius.
*/

.philosophy-image-wrapper img {
    border-radius: 150px;
    width: 450px;
    height: 300px;
    object-fit: cover;
    transform: none;
}

.philosophy-content {
    flex: 1;
    padding-left: 40px;
}

.philosophy h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.philosophy p {
    font-size: 20px;
    margin-bottom: 30px;
}

.philosophy .btn {
    background-color: var(--white);
    color: var(--dark-brown);
}

/* Section 4: Reasons */
.reasons {
    background-color: var(--dark-green);
    text-align: center;
    flex-direction: column;
}

.reasons h2 {
    font-size: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.reason-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid var(--white);
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-item h3 {
    font-size: 24px;
    font-family: var(--font-body); /* Labels are not uppercase display font in description but are in JSON? No, labels in JSON use Klima font which is a sans-serif. */
    text-transform: none;
}

/* Section 5: Qualifications */
.qualifications {
    background-color: var(--pink-salmon);
    text-align: center;
    flex-direction: column;
    color: var(--dark-brown);
}

.qualifications h2 {
    font-size: 60px;
    margin-bottom: 10px;
    width: 100%;
}

.qualifications .subtitle {
    font-size: 20px;
    margin-bottom: 60px;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.qual-card {
    background-color: var(--off-white);
    padding: 40px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.qual-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.qual-card h3 {
    font-size: 24px;
    font-family: var(--font-body);
    text-transform: none;
}

/* Section 6: Learn With Me */
.learn {
    background-color: var(--dark-teal);
    align-items: flex-start;
}

.learn-content {
    flex: 1;
    max-width: 50%;
}

.learn h2 {
    font-size: 60px;
    margin-bottom: 10px;
}

.learn h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    text-transform: none;
}

.learn p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Section 7: Track Record */
.track-record {
    background-color: var(--dark-green);
    text-align: center;
    flex-direction: column;
}

.track-record h2 {
    font-size: 60px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    background-color: var(--white); /* White for card backgrounds as per global styling */
    color: var(--dark-brown);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stars {
    color: var(--pink-salmon);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--off-white);
    padding-top: 20px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    font-size: 20px;
    font-family: var(--font-body);
}

/* Section 8: Get In Touch */
.contact {
    padding: 0;
    display: flex;
    min-height: 100vh;
}

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-content {
    flex: 1;
    background-color: var(--dark-teal);
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-quote {
    color: var(--pink-salmon);
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 30px;
    font-style: italic;
}

.contact h2 {
    font-size: 80px;
    margin-bottom: 40px;
}

.contact p {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

.contact a:hover {
    border-bottom: 1px solid var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .hero, .about, .philosophy-main, .contact {
        flex-direction: column;
    }
    .hero-content, .hero-image-wrapper, .about-content, .about-photo-wrapper, .philosophy-content, .philosophy-image-wrapper, .learn-content {
        max-width: 100%;
        padding: 20px;
    }
    .reasons-grid, .qualifications-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}