/* ============================================================
   TEST WEBSITE - Custom Stylesheet
   ============================================================
   Theme:
   - Primary: Deep Brown (#63372B)
   - Accent:  Warm Gold (#d4af37)
   ============================================================ */

/* Global Typography */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdfdfb;
    color: #333;
}
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* Buttons */
.btn-gold {
    background-color: #d4af37;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}
.btn-brown {
    background-color: #63372B;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-brown:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 55, 43, 0.6);
}

/* Hero Section with 3D Depth */
.hero-section {
    position: relative;
    min-height: 70vh;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.hero-overlay {
    background: rgba(99, 55, 43, 0.6); /* Deep brown overlay */
    width: 100%;
    height: 100%;
    padding: 2rem;
}
.hero-title {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

/* Product Cards - Hover Lift + Glow */
.product-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Spherical Elements (logos, avatars, categories) */
.sphere {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sphere:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Staggered Reveal Animation */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}
.animate-stagger {
    opacity: 0;
    animation: slideInLeft 0.8s forwards;
}

/* Utility Colors */
.bg-brown { background-color: #63372B !important; }
.text-brown { color: #63372B !important; }
.text-gold { color: #d4af37 !important; }

/* Footer */
footer {
    font-size: 0.9rem;
}
