/* --- Global Reset & Palette --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    font-family: sans-serif;
    color: #978671;      /* Stone */
    background: #EBDFCE; /* Sand */
    line-height: 1.6;
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #F4E5D9; /* Pearl */
    border-bottom: 1px solid #B2BDA3;
    padding: 10px 0;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: #978671;
}

.main-logo {
    height: 60px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(110%);
    background-color: #F4E5D9;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: #978671;
    text-decoration: none;
    font-weight: 500;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    color: #978671;
}

#menu-toggle { display: none; }

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0);
    z-index: 998;
}

#menu-toggle:checked ~ .menu-overlay { display: block; }

section { padding: 60px 20px; text-align: center; }

.hero {
    margin-top: 60px;
    height: 85vh;
    background: url('../images/Hero_Banner_Mobile.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

@media (min-width: 601px) {
    .hero { background: url('../images/Hero_Banner_Desktop.jpg') no-repeat center center / cover; }
}

.carousel-wrapper { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; }
.carousel-container {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    list-style: none;
    padding: 0;
    margin: 0;
}
.carousel-slide { flex: 0 0 100%; scroll-snap-align: center; }
.carousel-slide img { width: 90%; max-width: 800px; border-radius: 8px; }

.map-container {
    width: 95%;
    max-width: 600px;
    height: 400px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* --- Buttons & Socials --- */
.btn {
    background: #F8D3BB; /* Salmon Brand Color */
    color: #978671;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    border: none;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.btn-brand {
    background: #F8D3BB !important;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-links a {
    color: #978671;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #B2BDA3;
    transform: scale(1.2);
}

/* --- Footer --- */
.site-footer {
    background: #978671;
    color: #F4E5D9;
    padding: 20px 10px;
    text-align: center;
}

.site-footer p a, .site-footer p a:visited {
    color: #F4E5D9 !important;
    text-decoration: none;
    opacity: 0.8;
}

.soretech-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* --- Responsive Layout (Mobile) --- */
@media (max-width: 768px) {
    .container {
        width: 96% !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    section {
        padding: 30px 10px !important;
    }

    .slideshow-container img,
    .mySlides img,
    .carousel-item img {
        width: 100% !important;
        height: auto !important;
        display: block;
        object-fit: cover;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo { order: 1; }
    .nav { order: 2; }

    .menu-icon { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #F4E5D9;
        text-align: center;
        border-top: 1px solid #B2BDA3;
        padding: 20px 0;
        gap: 25px;
        z-index: 1001;
        pointer-events: auto;
    }

    #menu-toggle:checked ~ .nav .nav-links {
        display: flex;
    }

    .main-logo { height: 45px; }
    .logo-text { font-size: 1rem; }
}

/* --- Pricing Table Styles --- */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background: #F4E5D9;
    border: 1px solid #B2BDA3;
    border-radius: 8px;
    padding: 25px;
    width: 280px;
    text-align: center;
    color: #978671;
}

.pricing-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #B2BDA3;
    padding-bottom: 10px;
}

.price {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 15px 0 5px 0;
}

.price span {
    font-size: 0.85rem;
    display: block;
    font-weight: normal;
}

.per-session {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.details {
    font-size: 0.85rem;
    opacity: 0.8;
}

.drop-in-item {
    margin: 12px 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Testimonial Border Color Override */
.class-box[style*="border-left-color: #1ABC9C"] {
    border-left-color: #F8D3BB !important;
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }
}

/* --- Laura Profile Image Styling --- */
.profile-frame {
    width: 320px !important;
    height: 320px !important;
    margin: 20px auto;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 5px solid #F4E5D9 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 100%;
    display: block; 
}

.profile-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

