@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');        /* CSS RESET STUFF */

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

html, body { height: 100%; }

body {
    font-family: 'Poppins', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    background-color: whitesmoke;
    position: relative;
}

header {
    text-align: center;
    padding: 40px 0 10px 0;
}

.breadcrumb {
    margin: 20px 0;
    color: #666;
}

.breadcrumb a {
    color: #8e44ad;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.logo {
    max-width: 300px;
    height: auto;
    margin: -5rem auto 20px;
    display: block;
}

header p { font-size: 1.5rem; font-weight: bold; }

h1 {
    font-family: "Playfair Display";
    color: #8e44ad;
    margin-top: -5rem;
    margin-bottom: 10px;
    font-size: 3.75rem;
    font-weight: 700;
}
h2 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    color: #8e44ad;
    margin-bottom: 1rem;
}
h3 {
    color: #8e44ad;
    font-weight: normal;
}

p { margin-bottom: 1.5rem; }

section {
    margin: 40px 0;
}

.profile {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.profile-pic {
    flex: 0 0 250px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-pic img {
    width: 100%;
    height: auto;
}
.profile-text {
    flex: 1;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.service-box {
    flex-basis: calc(33% - 20px);
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.service-box:hover {
    transform: translateY(-5px);
}
.cta {
    background: #8e44ad;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.cta h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}
.cta button {
    background: white;
    color: #8e44ad;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}
.cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
#testimonials {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial {
    font-style: italic;
    position: relative;
    padding: 0 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    text-align: justify;
}
.testimonial:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.testimonial:before {
    content: '"';
    font-size: 60px;
    color: #f0e6fa;
    position: absolute;
    left: -20px;
    top: -10px;
    z-index: -1;
}

.yellowy {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 20px 3em;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1em;
}


footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
}
.emoji {
    font-size: 1.5em;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }
    .profile-pic {
        margin: 0 auto 20px;
    }
    .service-box {
        flex-basis: 100%;
    }
}