/* --------------------
   COLORS
---------------------*/

:root{

    --white:#fcfcfc;
    --text:#222222;
    --purple:#522D80;
    --orange:#F56600;
    --light:#f4f4f4;

}

/* --------------------
   GLOBAL
---------------------*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background-color:#fafafa;
    color:var(--text);

}

/* --------------------
   NAVIGATION
---------------------*/

nav{

    width:100%;
    height:110px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 7%;

    position:fixed;
    top:0;

    background:rgba(252,252,252,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid #efefef;

    z-index:1000;

}

/* --------------------
   LOGO
---------------------*/

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.paw{

    font-size:2.8rem;
    color:var(--orange);

}

.paw-logo{
    height:60px;
    width:auto;
    margin-right:-20px;
}

.logo-text{

    display:flex;
    flex-direction:column;

    line-height:1;

}

.logo-top{

    font-family:'Playfair Display', serif;

    font-size:2.2rem;

    letter-spacing:2px;

    color:var(--purple);

}

.logo-bottom{

    display:flex;

    align-items:flex-end;

    gap:8px;

    margin-top:-4px;

}

.with{

    font-family:'Allura', cursive;

    font-size:2rem;

    color:var(--orange);

}

.megan{

    font-family:'Playfair Display', serif;

    font-size:2.2rem;

    letter-spacing:2px;

    color:var(--purple);

}

nav ul{

    display:flex;
    gap:40px;
    list-style:none;

}

nav a{

    text-decoration:none;
    color:#555;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:var(--purple);

}

.book-btn{

    background:var(--orange);
    color:white;
    padding:14px 26px;
    border-radius:40px;
    font-weight:600;

}

.book-btn:hover{

    transform:translateY(-2px);

}

/* --------------------
   HERO
---------------------*/

.hero{

    min-height:100vh;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding:150px 8% 80px;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:url("images/chem-pattern.svg");

    background-size:1200px;

    background-repeat:repeat;

    opacity:.04;

    pointer-events:none;

}

.hero-text{

    max-width:600px;

}

.eyebrow{

    color:var(--purple);

    font-size:.95rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:28px;

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:3.2rem;
    line-height:1.2;

    margin-bottom:24px;

    max-width:500px;

}

.hero-description{

    font-size:1.15rem;
    line-height:1.8;

    color:#555;

    margin-bottom:40px;

}

.hero-stats{

    display:flex;
    gap:30px;

    background:rgba(82,45,128,.04);

    padding:14px 20px;
    border-radius:16px;

    width:fit-content;
    margin:40px 0;

}

.hero-stats span{

    position:relative;
    color:var(--purple);
    font-weight:600;

}

.hero-stats span:not(:last-child)::after{

    content:"|";

    margin-left:30px;

    color:#cfcfcf;

}

.buttons{

    display:flex;
    gap:20px;

}

.primary-btn{

    background:var(--orange);
    color:white;
    text-decoration:none;

    padding:18px 34px;
    border-radius:50px;

    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-3px);

}

.secondary-btn{

    border:2px solid var(--purple);
    color:var(--purple);

    text-decoration:none;

    padding:18px 34px;

    border-radius:50px;

    transition:.3s;

}

.secondary-btn:hover{

    background:var(--purple);
    color:white;

}

.hero-image{

    display:flex;
    justify-content:center;

}

.hero-image img{

    width:420px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.hero-text,
.hero-image{

    position:relative;
    z-index:2;

}

/* --------------------
   HIGHLIGHTS
---------------------*/

.highlights{
    padding:40px 8% 90px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.highlight-card{
    background:white;
    padding:34px 28px;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    border:1px solid #eeeeee;
    transition:.3s ease;
}

.highlight-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.09);
}

.highlight-card h3{
    color:var(--purple);
    font-size:1.05rem;
    margin-bottom:14px;
}

.highlight-card p{
    color:#555;
    line-height:1.7;
    font-size:.95rem;
}

/* --------------------
   ABOUT ME
---------------------*/

.about-me{

    padding:100px 8%;
    max-width:1000px;
    margin:auto;

}

.about-me h2{

    font-family:'Playfair Display', serif;
    color:var(--purple);
    font-size:2.5rem;
    margin-bottom:30px;

}

.about-me p{

    font-size:1.05rem;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;

}

.about-me ul{

    padding-left:25px;
    line-height:2;

}

.about-me li{

    color:#555;

}

/* --------------------
   SERVICES
---------------------*/

.services{

    padding:100px 8%;

}

.services h2{

    text-align:center;
    font-family:'Playfair Display', serif;
    color:var(--purple);
    font-size:2.5rem;
    margin-bottom:50px;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.service-card{

    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.service-card h3{

    margin-bottom:15px;

}

.price{

    font-size:2rem;
    font-weight:700;
    color:var(--orange);
    margin-bottom:20px;

}

.service-card p{

    color:#555;
    line-height:1.8;

}

/* --------------------
   SUBJECTS
---------------------*/

.subjects{
    padding:100px 8%;
    background:#fafafa;
}

.subjects h2{
    text-align:center;
    font-family:'Playfair Display', serif;
    color:var(--purple);
    font-size:2.5rem;
    margin-bottom:50px;
}

.subjects-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.subject-card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.subject-card h3{
    color:var(--purple);
    margin-bottom:15px;
}

.subject-card p{
    color:#555;
    line-height:1.7;
}

.coming-soon{
    opacity:.75;
}

/* --------------------
   CALL TO ACTION
---------------------*/

.cta{

    padding:90px 8%;
    text-align:center;

}

.cta h2{

    font-family:'Playfair Display', serif;
    font-size:2.8rem;
    color:var(--purple);
    margin-bottom:20px;

}

.cta p{

    max-width:700px;
    margin:0 auto;
    color:#555;
    line-height:1.8;
    font-size:1.1rem;

}

.cta-button{

    display:inline-block;
    margin-top:35px;
    background:var(--orange);
    color:white;
    text-decoration:none;
    padding:16px 36px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;

}

.cta-button:hover{

    transform:translateY(-2px);

}

.cta .booking-note{

    margin-top:50px;
    font-size:.85rem;
    color:#999;

}

.booking-note a{
    color:inherit;
    text-decoration:none;
}

.booking-note a:hover{
    text-decoration:underline;
}

/* --------------------
   FOOTER
---------------------*/

footer{

    text-align:center;
    padding:40px 8%;

}

footer{

    background:#F3EEFA;
    text-align:center;
    padding:40px 8%;

}

footer h3{

    color:var(--purple);
    margin-bottom:10px;

}

footer p{

    color:#777;
    margin-bottom:8px;

}

.footer-copy{

    margin-top:20px;
    font-size:.9rem;

}

/* --------------------
   MOBILE
---------------------*/

@media (max-width: 768px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-image img{
        width:100%;
        max-width:350px;
    }

    .highlights{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .subjects-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

}