/* ==========================================================================
   Miranda Gerber — custom.css
   Extracted from inline <style> block and inline style="" attributes
   ========================================================================== */

/* Typography Utility Classes */
.font-handwriting {
    font-family: 'Caveat', cursive, sans-serif;
}
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.tracking-wide {
    letter-spacing: 0.15em;
}

/* Custom styling to match your minimalist design */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #212529;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Custom Navigation Styles */
/* Navigation Link Adjustments */
.nav-link-custom {
    font-size: 0.75rem !important; /* Slightly smaller, delicate font size */
    color: #1a1a1a !important;      /* Darker, near-black by default */
    font-weight: 600 !important;    /* Bolder for stronger presence */
    text-decoration: none;
    border-bottom: 2px solid transparent; /* reserves space so nothing shifts on hover */
    padding-bottom: 2px;
    transition: color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.nav-link-custom:hover, 
.nav-link-custom:focus {
    color: #000000 !important;      /* Text still sharpens to pure black */
    border-bottom-color: #f3cfc6;   /* Rose underline appears on hover */
}
/* Custom Hover for the Full-Height Action Button */
.btn-hover-custom {
    background-color: #111111 !important;
    color: #ffffff !important; /* Explicitly white default text */
    border: none;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.btn-hover-custom:hover,
.btn-hover-custom:focus {
    background-color: #444444 !important; /* Subtle fade to lighter charcoal */
    color: #ffffff !important; /* Ensures text stays white and visible on hover */
}

/* Forces a subtle 2px gap below the text within the flex container */
.align-btn-text {
    margin-bottom: 2px !important;
}

/* Default (Desktop & Tablets): Clean, solid light background */
.hero-watercolor-bg {
    background-color: #ffffff !important; /* Or #fcfbfa for a soft off-white */
    background-image: none !important;
}

/* Mobile Screens Only (576px and down) */
@media (max-width: 576px) {
    .hero-watercolor-bg {
        position: relative;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)), 
            url('../img/heroes/watercback-480x360-1.webp') !important;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

/* Moving/Floating Image Window Class (.et_pb_image_20 style) */
.et_pb_image_20 {
    display: block;
    width: 100%;
    height: auto;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: floatImage 6s ease-in-out infinite;
    transform-origin: center center;
}

/* Smooth floating animation */
@keyframes floatImage {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
        box-shadow: 0 25px 40px rgba(0,0,0,0.15);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
}

/* Background soft design accent container for the painting */
.image-window-wrapper {
    position: relative;
    padding: 2rem;
}
.image-window-wrapper::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 75%;
    height: 75%;
    background: #f2efe9;
    border-radius: 8px;
    z-index: 1;
    transform: rotate(-3deg);
}

/* Elegant Core Concept Icon styling */
.concept-icon-box {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fbf9f6; /* Soft paper-like tint */
    border: 1px solid #eae5db;
    color: #4a4a4a;
    font-size: 2.2rem;
    transition: all 0.3s ease-in-out;
}
.concept-block:hover .concept-icon-box {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
    .nav-full-height-btn {
        display: flex;
        align-items: center;
        height: 100%;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .nav-full-height-btn .btn {
        height: calc(100% + 1rem); /* Extends button to the top and bottom edge of the py-1 nav bar */
        display: inline-flex;
        align-items: center;
        margin-top: -0.5rem;
        margin-bottom: -0.5rem;
        border-left: 1px solid #dee2e6; /* Soft separator line between menu text and button */
    }
}
/* Core Concept Icons Hover State - Millennial Pink */
.concept-block:hover .concept-icon-box {
    background-color: #f3cfc6; /* Soft Millennial Pink background */
    color: #ffffff;            /* Keeps the vector icon white on hover */
    border-color: #f3cfc6;     /* Matches the border to the pink background */
    transform: translateY(-4px); /* Keeps the smooth lift effect */
    box-shadow: 0 8px 15px rgba(243, 207, 198, 0.4); /* Optional warm pink glow shadow */
}
/* ==========================================================================
   Below: new classes replacing inline style="" attributes found in the body
   ========================================================================== */

/* Navbar brand text (was inline on .navbar-brand) */
.navbar-brand-custom {
    letter-spacing: 0.05em;
    color: #111111;
    line-height: 1;
}

/* Nav menu list font size (was inline on the <ul class="navbar-nav">) */
.nav-list-font {
    font-size: 0.8rem;
}

/* "Book a Class" nav button text size (was inline on the nav CTA <a>) */
.nav-btn-text-size {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

/* Hero intro line above the H1 (was inline, in addition to .tracking-wide) */
.hero-intro-text {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

/* Narrow centered container used by the FAQ section */
.container-narrow {
    max-width: 800px;
}

/* Narrow centered container used by the Newsletter/CTA section */
.container-narrow-sm {
    max-width: 600px;
}

/* Scroll-to-top button fixed position (was inline on #btnScrollToTop) */
.scroll-top-btn-position {
    bottom: 20px;
    right: 20px;
}

/* Custom Millennial Pink Button Hover State (Dark Font) */
.custom-pink-hover:hover, 
.custom-pink-hover:focus {
    background-color: #f3cfc6 !important;
    border-color: #f3cfc6 !important;
    color: #212529 !important; /* Sets text to high-contrast dark charcoal */
    transition: all 0.25s ease-in-out;
}