/* ========== GLOBAL RESET & COMIC NEUE TYPOGRAPHY ========== */
* {
    font-family: "Comic Neue", cursive;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-earth: #2c4a3e;     /* Deep natural organic foliage green */
    --accent-sun: #f6b211;        /* Warm sun yellow matching your logo graphic */
    --bg-cream: #fdfbf7;          /* Soft matte cream organic backdrop */
    --text-dark: #2d2d2d;
    --text-muted: #5c605d;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-earth);
}

/* ========== NAVIGATION & SPARKLE LOGO MECHANICS ========== */
.navbar {
    box-shadow: 0 4px 20px rgba(44, 74, 62, 0.04);
    background-color: #ffffff !important;
    padding: 15px 0;
}

/* Custom override for the brand container layout */
.navbar-brand {
    padding: 0;
    margin-right: 25px;
    display: inline-block;
    max-width: fit-content !important;
}

.adum-logo-container {
    background-color: #fff;
    width: 65px; 
    height: 65px;
    border-radius: 100%;    
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(44, 74, 62, 0.1);
    
    /* One-time pop/rotation entrance on load */
    opacity: 0;
    animation: logoEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.1s;
}

/* Gold Shimmer Overlay Effect */
.adum-logo-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255, 235, 120, 0.4) 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 235, 120, 0.4) 70%, 
        rgba(255,255,255,0) 100%
    );
    transform: rotate(25deg);
    animation: glitterSweep 4.5s infinite ease-in-out;
}

.adum-logo-container img {
    padding: 12%;
    width: 100% !important;
    height: auto !important;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* User Hover Controls (Pauses timeline & scales inner image slightly) */
.adum-logo-container:hover {
    animation-play-state: paused;
}
.adum-logo-container:hover::after {
    animation-play-state: paused;
}
.adum-logo-container:hover img {
    transform: scale(1.15);
}

/* ========== E-COMMERCE CATALOG CARDS ========== */
.product-card {
    background: #ffffff;
    border: 1px solid #efe8dc;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 74, 62, 0.08);
}

.product-img-wrapper {
    background-color: #faf8f4;
    padding: 35px;
    text-align: center;
    border-bottom: 1px solid #f9f5ee;
}

.badge-organic {
    background-color: #e3ede8;
    color: var(--primary-earth);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
}

.btn-adum-primary {
    background-color: var(--primary-earth);
    color: #ffffff;
    font-weight: 700;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.btn-adum-primary:hover {
    background-color: #1e332b;
    color: #ffffff;
}

/* ========== FOOTER STYLES ========== */
footer {
    background-color: var(--primary-earth);
    color: #f5f5f5;
    margin-top: 80px;
}
footer h5 {
    color: var(--accent-sun) !important;
}
footer a {
    color: #d1dcd6;
    text-decoration: none;
    transition: color 0.2s ease;
}
footer a:hover {
    color: #ffffff;
}

/* ========== ANIMATION KEYFRAMES ========== */
@keyframes logoEntrance {
    0% { opacity: 0; transform: scale(0.4) rotate(-12deg); }
    70% { opacity: 1; transform: scale(1.08) rotate(3deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes glitterSweep {
    0% { left: -150%; }
    25% { left: 150%; } 
    100% { left: 150%; }
}