﻿/* ========== GLOBAL ========== */
:root {
    --brand-pink: #ff5c7b;
    --brand-dark: #2a2a2a;
    --maroon: #7A1829;
    --light-pink: #ffccd5;
    --footer-bg: #7A1829;
    --footer-fg: #f5f5f5;
    --footer-fg-60: rgba(255,255,255,.6);
    --footer-line: rgba(255,255,255,.12);
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* kills tiny white strip on mobile */
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Make all images fluid by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== NAVBAR / HEADER ========== */

.navbar {
    transition: .25s ease;
}

header.navbar {
    background-color: var(--maroon) !important;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

    header.navbar.bg-maroon,
    .navbar.bg-maroon {
        background: var(--maroon) !important;
        background-color: var(--maroon) !important;
    }

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    font-family: "Great Vibes", cursive;
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff !important;
    letter-spacing: 0.6px;
}

    .navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }

    .navbar-brand span {
        font-family: "IvyMode", sans-serif !important;
        font-weight: 600;
        font-size: 1.65rem;
        letter-spacing: 0.4px;
        color: #fff;
        text-transform: capitalize;
    }

    .navbar-brand:hover span {
        color: var(--light-pink);
    }

/* Nav links */
.navbar-nav {
    gap: 1rem;
}

    .navbar-nav .nav-item:last-child {
        margin-right: 0;
    }

.navbar .nav-link {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 1rem;
    color: #f8f9fa !important;
    text-transform: none;
    letter-spacing: 0.4px;
    transition: color 0.3s ease, transform 0.2s;
}

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: var(--light-pink) !important;
        transform: translateY(-1px);
    }

/* Phone button (angled box) */
.phone-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #2a2a2a;
    background: #fff;
    padding: 0.55rem 1.2rem;
    border-radius: 4px;
    transform: skew(-12deg);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .phone-box i,
    .phone-box span {
        transform: skew(12deg);
    }

    .phone-box i {
        font-size: 1rem;
        color: #2a2a2a;
    }

    .phone-box:hover {
        background: #f8d7da;
        color: var(--maroon);
        transform: skew(-12deg) scale(1.03);
    }

/* ========== HERO / CAROUSEL ========== */

.hero-section {
    position: relative;
}

/* main hero */
.hero {
    position: relative;
    min-height: 75vh; /* no fixed height; better on mobile */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    /* dark overlay */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.45));
    }

/* inner content */
.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
}

.hero-eyebrow {
    font-family: "Great Vibes", cursive;
    font-size: 34px;
    line-height: 1;
    margin-bottom: .25rem;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: .5px;
}

/* hero badge under heading */
.hero-badge {
    max-width: 260px;
    margin: 1rem auto;
}

/* angled CTA button */
.hero-cta {
    display: inline-block;
    background-color: #ff5c63;
    color: #fff;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    font-style: italic;
    text-decoration: none;
    padding: 12px 28px;
    border: none;
    position: relative;
    transform: skew(-15deg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

    .hero-cta span {
        display: inline-block;
        transform: skew(15deg);
    }

    .hero-cta:hover {
        background-color: var(--maroon);
        color: #fff;
        box-shadow: 0 6px 14px rgba(0,0,0,0.2);
        transform: skew(-15deg) translateY(-2px);
    }

/* curved bottom divider */
.curve-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
    line-height: 0;
}

    .curve-divider svg {
        display: block;
        width: 100%;
        height: 80px;
    }

    .curve-divider path {
        fill: #fff;
    }

/* carousel dots */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
}

.carousel-indicators .active {
    background: var(--brand-pink);
}

.carousel-indicators {
    bottom: 55px !important;
    z-index: 10;
}

/* hero responsive tweaks */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero-inner {
        padding: 4rem 1.25rem 3rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-badge {
        max-width: 200px;
    }
}

/* ========== SECTION HEADINGS ========== */

.premium-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #5b0b18;
    letter-spacing: 0.03em;
}

/* flourish under headings */
.flourish {
    margin-top: 0.3rem;
    opacity: 0.8;
    max-width: 300px;
}

/* ========== SERVICES (cards) ========== */

.service-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, .15);
    }

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    padding: 0.85rem 1rem;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--maroon);
    backdrop-filter: blur(2px);
}

.service-card:hover .service-caption {
    background: rgba(255, 255, 255, 0.98);
}

/* only affect our services row, not all .row.g-4 */
.services-row > div {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 992px) {
    .services-row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .services-row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ========== ABOUT / CTA ========== */

.about-cta {
    background: url('images/down (2).jpg') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .about-cta .about-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 55%;
        height: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(4px);
    }

    .about-cta .about-content {
        position: relative;
        z-index: 2;
        max-width: 500px;
    }

    .about-cta .about-title {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 1.8rem;
        font-weight: 600;
        color: #2e2e2e;
    }

.about-flourish {
    max-width: 290px;
    margin-top: .5rem;
}

.about-cta .about-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-cta .about-overlay {
        width: 100%;
    }

    .about-cta .about-content {
        text-align: center;
        max-width: 100%;
    }
}

/* ========== FOOTER ========== */

.footer-dark {
    background-color: var(--footer-bg) !important;
    color: var(--footer-fg);
    font-family: "Playfair Display", serif;
    padding-top: 40px;
    padding-bottom: 20px;
}

    .footer-dark .footer-title {
        font-weight: 700;
        font-size: 1.1rem;
        color: #fff;
        margin-bottom: 0.6rem;
        letter-spacing: 0.4px;
    }

    .footer-dark ul li a {
        font-family: "Playfair Display", serif;
        font-weight: 500;
        font-size: 1rem;
        color: #f8f9fa;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition: color 0.3s ease, transform 0.2s;
        display: inline-block;
        padding: 3px 0;
    }

        .footer-dark ul li a:hover {
            color: var(--light-pink) !important;
            transform: translateY(-2px);
        }

.text-light-60 {
    color: var(--footer-fg-60) !important;
}

/* strong horizontal divider above copyright */
.footer-rule {
    border: none;
    height: 1px;
    background: rgba(255,255,255,.35); /* visible on maroon */
    margin: 40px 0 25px;
}

/* footer logos (IMPORTANT for responsiveness) */
.footer-logo,
.footer-logo-small {
    max-width: 100%;
    height: auto;
    display: block;
}

/* social icons (footer) */
.social-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 22px;
    transition: all .25s ease;
}

    .social-lg:hover {
        background: #fff;
        color: var(--maroon) !important;
        transform: translateY(-3px);
    }


/* brand section in footer */
.footer-brand-section {
    text-align: center;
}

    .footer-brand-section img {
        margin: 0 auto 15px;
    }

/* back-to-top button (visual only; JS in master page) */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-pink);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    text-decoration: none;
    z-index: 999;
    transition: transform .2s ease;
    opacity: 0;
    pointer-events: none;
}

    .back-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .back-to-top:hover {
        transform: translateY(-3px);
    }
/* vertical divider in footer */
.footer-divider-row {
    position: relative;
}

    .footer-divider-row::after {
        content: "";
        position: absolute;
        top: 10%;
        bottom: 10%;
        left: 50%;
        width: 1px;
        background: rgba(255,255,255,.25);
    }

/* remove divider on small screens */
@media (max-width: 767px) {
    .footer-divider-row::after {
        display: none;
    }
}
