.selectable-card {
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.selectable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.selectable-card.selected .card {
    border: 2px solid #007bff !important;
    background-color: #eaf4ff;
}
.bg-footer {
    background: linear-gradient(to right, rgba(80, 0, 80, 0.75), rgba(210, 0, 210, 0.75));
    /* background-color: rgba(80, 0, 80, 0.75); /* deep wine-purple, symbolizing royalty & strength */
}
.footer a:hover {
    text-decoration: underline;
}
body {
    font-family: "Playfair Display", serif;
    padding-top: 50px; /* or whatever your header height is */
}

.image-banner-container {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
}

.image-banner-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(80, 0, 80, 0.75), rgba(210, 0, 210, 0.75));
}

.top-sticky {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}

.carousel-container {
    width: 100%;
    height: 500px;
    position: relative;
    margin-bottom: 2rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
}
.carousel-btn.prev-btn {
    left: 10px;
}
.carousel-btn.next-btn {
    right: 10px;
}

.smart-button {
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}
.smart-button:hover {
    background-color: #0056b3;
}
.smart-button:active {
    transform: scale(0.97);
}
.smart-button:disabled {
    background-color: #ccc !important;
    border-color: #aaa !important;
    cursor: not-allowed;
}

.video-caption-wrapper {
    margin-bottom: 2rem;
}

.testimonial-carousel .carousel-item {
    min-height: 180px;
}
.testimonial-carousel p {
    color: #333;
}
.testimonial-carousel h6 {
    color: #5b1833; /* Lady Amanda purple */
}

.full-quote-banner {
    background: linear-gradient(to right, rgba(80, 0, 80, 0.75), rgba(210, 0, 210, 0.75)); /* spiritual wine tones */
    color: #fff;
}
.full-quote-banner blockquote {
    margin: 0 auto;
    max-width: 800px;
}
.full-quote-banner .quote-author {
    margin-top: 1rem;
    font-weight: 500;
    font-style: normal;
    color: #f6e6d9; /* warm gold-beige tone */
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .btn-primary {
    background-color: #5b1833;
    border-color: #5b1833;
}

.contact-form .btn-primary:hover {
    background-color: #7e3058;
    border-color: #7e3058;
}

.contact-form .form-status {
    min-height: 1.5em;
    color: #5b1833;
}

.hero-banner {
    background: linear-gradient(to right, rgba(80, 0, 80, 0.75), rgba(210, 0, 210, 0.75))
        url("images/hero-background.jpg") center/cover no-repeat;
    min-height: 70vh;
    padding: 2rem 1rem;
}

.card .card-text {
    color: #5b1833;
}

.text-block {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.text-block-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #3f2e25; /* warm, spiritual brown */
}

.text-block-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5c4433; /* soft earth tone */
}

.text-block.text-left {
    text-align: left;
}

.social-media-item i {
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}
.social-media-item:hover i {
    transform: scale(1.2);
    color: #007bff;
}

.hover-underline {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hover-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: currentColor;
    transition:
        width 0.3s ease,
        left 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
    left: 0;
}

.nav-link.active {
    font-weight: bold;
    color: darkslateblue !important; /* Bootstrap primary color */
}

.modern-button {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border: 5px solid rgba(80, 0, 80, 0.75);
    background-color: #fff;
    color: rgba(80, 0, 80, 0.75);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease-in-out;
    letter-spacing: 1px;
    cursor: pointer;
}

.modern-text {
    font-family: "Segoe UI", sans-serif;
}
.modern-button:hover {
    background-color: rgba(80, 0, 80, 0.75);
    color: #fff;
}

.modern-button:active {
    transform: scale(0.97);
}

.modern-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: #999;
    color: #999;
}

.section-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(160, 0, 160);
    opacity: 0.5;
}

.section-header-text {
    font-family: "Segoe UI", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(160, 0, 160);
    margin: 0;
}

.narrative-module {
    background: #fff8f4;
    border-left: 5px solid rgba(80, 0, 80, 0.75);
}

.nav-title {
    color: rgba(80, 0, 80, 0.75);
}

.narrative-options button {
    text-align: left;
}
.perfume-text {
    color: darkmagenta;
    font-weight: bold;
}
.resize {
    width: 15%;
    height: 15%;
}
.resize-header {
    width: 5%;
    height: 5%;
    padding-right: 10px;
}

.responsive-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio (height ÷ width × 100) */
    height: 0;
    overflow: hidden;
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
