:root {
    --rose: #091448;
    /* primary rose */
    --rose-dark: #f9f9fa77;
    /* darker rose for scroll */
    --rose-light: #7776b3;
    /* lighter rose for hover */
    --footer-bg: #091448;
    /* footer color */
    --footer-text: #fff;
}

body {
    background-color: #fffd9ea1;
    color: var(--text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    background-color: var(--rose);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--rose-dark);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--rose) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--rose-dark) !important;
}

.navbar .navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.navbar .nav-link {
    color: #fff !important;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar .nav-link:hover {
    color: var(--rose-light) !important;
    transform: scale(1.1);
}

/* Toggler: no border + white icon */
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Default hamburger icon: white */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* When scrolled: #091448 */
.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23091448' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas styles */
.offcanvas {
    background-color: var(--rose);
}

.offcanvas .nav-link {
    color: #fff !important;
}

.offcanvas .nav-link:hover {
    color: var(--rose-light) !important;
}

.offcanvas.custom-offcanvas {
    width: 280px !important;
    /* desired width on medium+ devices */
    max-width: 90vw !important;
    /* keep it responsive on very small screens */
}

/* Make the built-in close button white */
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}



/* Hero */
.hero {
    height: 100vh;
    color: #fff;
    background: url('./assets/imgs/02.jpg') center/cover no-repeat;
}

/* Buttons */
.btn-primary {
    background-color: var(--rose);
    border-color: var(--rose);
}

.btn-primary:hover {
    background-color: var(--rose-light);
    border-color: var(--rose-light);
}

/* Section backgrounds */
section.bg-light {
    background-color: var(--bg-light) !important;
}

/* Section titles */
section h2 {
    color: var(--rose);
    font-weight: 700;
}

a,
button,
.btn {
    transition: all 0.3s ease;
}


/* footer theme */
.footer {
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.footer p {
    margin: 0;
}

footer a i:hover,
button:hover,
.btn:hover {
    color: #fddfeb;
    transform: scale(1.04);
    opacity: 0.85;
}


@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }
}