/* Baked By Bettsy Branding (Teal/Dark Blue/Gold) */
:root {
    --brand-bg: #ffffff;
    /* White as per crumbl screenshot */
    --brand-dark: #000000;
    /* Black text */
    --brand-gold: #D4AF37;
    /* Gold/Mustard accent */
    --brand-white: #ffffff;

    /* Mappings */
    --primary-color: var(--brand-dark);
    --accent-color: var(--brand-gold);
    --bg-color: var(--brand-bg);

    --card-radius: 20px;
    --btn-radius: 50px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-dark);
    background-color: var(--brand-bg);
    /* New Background Color */
    overflow-x: hidden;
}

/* Navbar Update */
.navbar {
    background: rgba(255, 255, 255, 0.90);
    /* Keep white for contrast, or maybe match bg? Let's stick to white or transparent */
    backdrop-filter: blur(10px);
    padding: 1.2rem 1rem;
    transition: all 0.3s;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    /* Should ideally be the logo font */
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--brand-dark) !important;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--brand-dark) !important;
    margin: 0 10px;
}

/* Video Hero Section */
.hero-wrapper {
    position: relative;
    height: 80vh;
    /* Full impactful height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -80px;
    /* Counteract navbar spacer if transparent, but we kept spacer logic. Let's adjust spacer in view. */
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    /* Slight dim for text */
    filter: brightness(0.9);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-premium {
    background: var(--brand-dark);
    color: white;
    border-radius: var(--btn-radius);
    padding: 1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: transform 0.3s, background 0.3s;
}

.btn-premium:hover {
    background: #333;
    transform: translateY(-3px);
    color: white;
}

.btn-light-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: var(--btn-radius);
    padding: 1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-light-outline:hover {
    background: white;
    color: black;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 4rem 0 2rem;
}

/* Product Card Premium */
.product-card-premium {
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    height: 100%;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-media {
    height: 350px;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media img,
.card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .card-media img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    /* Gradient text protection */
    color: white;
    transform: translateY(100px);
    /* Hide partially */
    transition: transform 0.3s;
    opacity: 0;
}

.product-card-premium:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card-price {
    color: #666;
    font-weight: 600;
}

.badge-special {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 5;
    text-transform: uppercase;
}

/* Hero Carousel CSS (Restored) */
.hero-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
}

/* Custom Offcanvas Menu (Crumbl Style) */
.offcanvas-custom {
    width: 320px !important;
    border: none;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.offcanvas-header-custom {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signin-link {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: #000;
}

.btn-close-pink {
    background-color: #FFC0CB;
    /* Pink */
    opacity: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    border: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-close-pink:hover {
    transform: rotate(90deg);
    background-color: #ffb5c2;
}

.nav-link-large {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    /* Or none, screenshot is Capitalized First letter */
    letter-spacing: -1px;
    transition: color 0.2s;
}

.nav-link-large:hover {
    color: #555;
}

.nav-link-large.active {
    color: #000;
}

.navbar-center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 900;
    font-weight: 900;
    letter-spacing: -1px;
}

.bg-pink-header {
    background-color: #FFC0CB !important;
}