html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
    --bloom-red: rgb(153, 0, 0);
    --bloom-black: #000000;
}

.btn-primary {
    background-color: var(--bloom-red);
    border-color: var(--bloom-red);
}

.btn-outline-primary {
    color: var(--bloom-red);
    border-color: var(--bloom-red);
}

/* ACTIVE NAV LINK */
/*.navbar .nav-link.active {
    color: rgb(153,0,0) !important;
    font-weight: 600;
    position: relative;
}

    .navbar .nav-link.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;*/ /* space between text and underline */
        /*width: 100%;
        height: 3px;*/ /* thickness of underline */
        /*background-color: rgb(153,0,0);
        border-radius: 2px;
    }*/

/* BASE NAV LINK */
.navbar .nav-link {
    position: relative;
    transition: color 0.25s ease;
}

    /* ACTIVE LINK */
    .navbar .nav-link.active {
        color: rgb(153,0,0) !important;
        font-weight: 600;
    }

    /* UNDERLINE (ACTIVE + HOVER) */
    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 3px;
        background-color: rgb(153,0,0);
        border-radius: 2px;
        /* Start hidden */
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s ease;
    }

    /* ACTIVE LINK SHOWS UNDERLINE */
    .navbar .nav-link.active::after {
        transform: scaleX(1);
    }

    /* HOVER ALSO SHOWS UNDERLINE */
    .navbar .nav-link:hover::after {
        transform: scaleX(1);
    }

    .navbar .nav-link:hover {
        color: rgb(153,0,0) !important;
        opacity: 0.85;
        transition: color 0.25s ease, opacity 0.25s ease;
    }

/* HERO SECTION */

.hero-section h1 {
    font-family: 'Libre Baskerville', serif;
}
.hero-section {
    background-color: #ffffff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn-primary {
    background-color: rgb(153,0,0);
    border-color: rgb(153,0,0);
}

    .hero-buttons .btn-primary:hover {
        background-color: #a00000;
        border-color: #a00000;
    }

.hero-buttons .btn-outline-primary {
    color: rgb(153,0,0);
    border-color: rgb(153,0,0);
}

    .hero-buttons .btn-outline-primary:hover {
        background-color: rgb(153,0,0);
        color: #fff;
    }

.navbar-brand {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

    .nav-link:hover {
        color: rgb(153,0,0) !important;
    }

.navbar .btn-primary:hover {
    background-color: #a00000 !important;
    border-color: #a00000 !important;
}

/* SERVICES SECTION */
.services-section h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.service-card {
    border-top: 4px solid rgb(153,0,0);
    border-radius: 6px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

.service-title {
    font-weight: 600;
    color: #000;
}

.service-text {
    color: #555;
    font-size: 0.95rem;
}

/* PORTFOLIO PLACEHOLDER SECTION */
.portfolio-section h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.portfolio-card {
    border-top: 4px solid rgb(153,0,0);
    border-radius: 6px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .portfolio-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

.portfolio-title {
    font-weight: 600;
    color: #000;
}

.portfolio-text {
    color: #555;
    font-size: 0.95rem;
}

/* ABOUT SECTION */
.about-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    line-height: 1.3;
}

.about-text {
    color: #555;
    font-size: 1.05rem;
}

/*.about-graphic {
    border: 2px solid rgb(153,0,0);
    border-radius: 8px;
    display: inline-block;
    background-color: #fff;
}
*/
.about-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

/* CTA SECTION */
.cta-section {
    background-color: rgb(153,0,0);
}

.cta-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 2rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: #f2f2f2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-light {
    font-weight: 600;
    border-radius: 6px;
}

    .cta-section .btn-light:hover {
        background-color: #fff;
        color: rgb(153,0,0);
    }

/* CONTACT PAGE */
.contact-hero {
    background-color: #f8f8f8;
}

.contact-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.contact-subtitle {
    color: #555;
    font-size: 1.15rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    border-radius: 8px;
    background-color: #fff;
}

.btn-primary {
    background-color: rgb(153,0,0);
    border-color: rgb(153,0,0);
}

    .btn-primary:hover {
        background-color: #a00000;
        border-color: #a00000;
    }
/* CONTACT BUTTON STYLE */
.contact-link {
    background-color: rgb(153,0,0);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background-color 0.25s ease, opacity 0.25s ease;
}

    .contact-link:hover {
        background-color: #a00000;
        opacity: 0.9;
    }

    .contact-link.active {
        background-color: #a00000;
    }


/* ABOUT PAGE */
.about-hero {
    background-color: #f8f8f8;
}

.about-hero-title,
.about-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.about-hero-subtitle {
    color: #555;
    font-size: 1.15rem;
}

.about-text {
    color: #555;
    font-size: 1.05rem;
}

/*.about-graphic {
    border: 2px solid rgb(153,0,0);
    border-radius: 8px;
    background-color: #fff;
}

.about-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 700;
}
*/
.approach-card,
.process-step {
    border-top: 4px solid rgb(153,0,0);
    border-radius: 6px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .approach-card:hover,
    .process-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

.about-cta {
    background-color: rgb(153,0,0);
}

/* SERVICES PAGE */
.services-hero {
    background-color: #f8f8f8;
}

.services-hero-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.services-hero-subtitle {
    color: #555;
    font-size: 1.15rem;
}

.service-card,
.included-card,
.process-step {
    border-top: 4px solid rgb(153,0,0);
    border-radius: 6px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .service-card:hover,
    .included-card:hover,
    .process-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

.services-cta {
    background-color: rgb(153,0,0);
}

/* PORTFOLIO PAGE */
.portfolio-hero {
    background-color: #f8f8f8;
}

.portfolio-hero-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.portfolio-hero-subtitle {
    color: #555;
    font-size: 1.15rem;
}

.portfolio-card {
    border-top: 4px solid rgb(153,0,0);
    border-radius: 6px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .portfolio-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

/* FOOTER */
.site-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.footer-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-link {
    margin: 0 10px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

    .footer-link:hover {
        color: rgb(153,0,0);
    }

.footer-copy {
    color: #777;
    font-size: 0.9rem;
}

