/* ===========================================
   VINSDELUX CSS - SIMPLIFIED PORTFOLIO VERSION
   Wine Adoption Platform Showcase

   Lightweight CSS for portfolio demonstration.
   Heavy animations and complex styles removed.
   =========================================== */

/**
 * VinsDelux Design System (Simplified)
 *
 * Color Palette:
 * - Burgundy (#722F37) - Primary brand color
 * - Gold (#D4AF37) - Accent color
 * - Cream (#FAF7F2) - Background
 */

/* ==========================================
   CORE IMPORTS (Keep minimal essentials)
   ========================================== */
@import url("core/variables.ad115c66803a.css");
@import url("layout/base.0cd1d517aadf.css");
@import url("components/buttons.4b6f450e26ce.css");

/* ==========================================
   SIMPLE JOURNEY CARDS
   Lightweight cards with no 3D or animations
   ========================================== */
.journey-card {
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.journey-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-4px);
}

.journey-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.journey-card img {
    transition: transform 0.3s ease;
}

.journey-card:hover img {
    transform: scale(1.05);
}

/* Journey Section Spacing */
.journey-section {
    background: #f8f9fa;
}

/* Hero Section */
.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    border-top: 1px solid #dee2e6;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .journey-card {
        margin-bottom: 1.5rem;
    }
}

/* ==========================================
   ARCHIVED STYLES
   Complex page styles removed for simplicity.
   Original CSS preserved in git history.

   Removed imports:
   - components/cards.css (using inline styles)
   - components/forms.css (no forms)
   - components/map.css (no maps)
   - pages/plot-selection.css (no plot selector)
   - pages/journey.css (simplified inline)
   - pages/adoption-plans.css (no adoption plans)
   ========================================== */
