/* Bora Theme V2 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-light: #fff3d8;
    /* Cream base */
    --text-dark: #0c0e0f;
    /* Near Black */
    --primary-gold: #efb810;
    /* Vibrant Gold */
    --neutral-taupe: #a9977e;
    /* Earthy Taupe */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(169, 151, 126, 0.2);
    /* Taupe opacity */
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand img {
    max-height: 50px;
    /* Adjust according to logo */
    margin-right: 10px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Buttons */
.btn-primary-custom,
.btn-dark,
.btn-outline-dark {
    border-radius: 0;
    /* Modern, sharp corners */
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    transition: all 0.3s;
}

.btn-primary-custom {
    background-color: var(--primary-gold);
    color: var(--text-dark);
    border: 2px solid var(--primary-gold);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

/* Cards */
.card {
    border: none;
    background-color: #fff;
    /* White cards stand out on cream bg */
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-price {
    font-family: var(--font-heading);
    color: var(--neutral-taupe);
    font-size: 1.2rem;
    font-weight: 800;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-gold);
    color: var(--text-dark);
    padding: 5px 10px;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 10;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    border-top: 5px solid var(--primary-gold);
}

footer a {
    color: var(--neutral-taupe);
}

footer a:hover {
    color: var(--primary-gold);
}

/* Carousel/Banner Refinement */
.carousel-item {
    height: 60vh;
    /* Reduced height as requested */
    min-height: 500px;
    background-color: var(--neutral-taupe);
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Centered Caption with Shadow/Border effect */
.carousel-caption {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center Vertically */
    align-items: center;
    /* Center Horizontally */
    background: rgba(0, 0, 0, 0.1);
    /* Slight overlay for better text pop */
}

.carousel-caption h1,
.carousel-caption p {
    text-shadow:
        0px 0px 5px rgba(0, 0, 0, 0.8),
        0px 0px 10px rgba(0, 0, 0, 0.5);
    /* Glowing shadow border effect */
    font-weight: 800;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}