@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --brand-red: #D9363E; /* Main Red from logo */
    --brand-dark: #1A1D24; /* Deep, rich dark */
    --brand-darker: #13151A; /* Slightly darker for section variation */
    --brand-cream: #F0EAD6; /* Off-white for text and accents */
    --brand-lightgray: #A0AEC0; /* For secondary text, slightly muted */
    --brand-gray: #718096; /* For footer text or less important info */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--brand-dark);
    color: var(--brand-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tailwind Color Integration (using CSS variables for easier theme management) */
.text-brand-red { color: var(--brand-red); }
.bg-brand-red { background-color: var(--brand-red); }
.border-brand-red { border-color: var(--brand-red); }

.text-brand-dark { color: var(--brand-dark); }
.bg-brand-dark { background-color: var(--brand-dark); }

.text-brand-darker { color: var(--brand-darker); }
.bg-brand-darker { background-color: var(--brand-darker); }

.text-brand-cream { color: var(--brand-cream); }
.bg-brand-cream { background-color: var(--brand-cream); }

.text-brand-lightgray { color: var(--brand-lightgray); }
.text-brand-gray { color: var(--brand-gray); }


/* Hero Section */
.hero-bg-pattern {
    /* You can use a subtle SVG pattern or a very low opacity image here */
    /* Example: background-image: url('assets/subtle_pattern.svg'); opacity: 0.05; */
    background-size: cover; /* Or 'repeat' if it's a pattern */
    background-position: center;
    opacity: 0.1; /* Make it very subtle if it's an image */
    background-color: #000; /* Fallback if no image/pattern */
}

.shadow-red-glow {
    box-shadow: 0 0 15px var(--brand-red), 0 0 30px var(--brand-red);
}

/* Section Title Underline */
.title-underline {
    width: 70px;
    height: 3px;
    background-color: var(--brand-red);
    border-radius: 2px;
    /* margin is handled by mx-auto in HTML */
}

/* Feature Cards and Step Cards (Timeline Items) */
.feature-card, .step-timeline-item .bg-brand-dark { /* Target the content card within step-timeline-item */
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 25px rgba(217, 54, 62, 0.3); /* Added subtle red glow on hover */
}

/* Hover effect for the content card within the step timeline item */
.step-timeline-item .bg-brand-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25), 0 0 20px rgba(217, 54, 62, 0.2);
}
.step-timeline-item { /* For the overall item if you want a slight movement */
    transition: transform 0.2s ease-out;
}
/*
.step-timeline-item:hover {
    transform: translateX(3px); // Example: slight shift for the whole step item
}
*/


/* Basic Fade-In for elements (applied via HTML class) */
.animate-fadeIn {
    opacity: 1; /* Ensure it's visible */
    animation: fadeInAnimation 0.5s ease-out forwards;
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* How to Join - Vertical Timeline Style */
.step-timeline-number-container {
    /* This div helps center the number circle on the dashed timeline */
    /* Its background should match the section background (bg-brand-darker in HTML) */
}

.join-app-button {
    min-width: 110px;
    font-size: 0.8rem; /* Tailwind 'text-xs' */
}
@media (min-width: 640px) { /* sm breakpoint */
    .join-app-button {
        font-size: 0.875rem; /* Tailwind 'text-sm' */
    }
}

/*
  The 'left' positioning of the absolute timeline line in HTML is key for alignment:
   HTML: class="absolute left-5 md:left-6 ..."
   left-5 (1.25rem) for w-10 (2.5rem) circles
   md:left-6 (1.5rem) for md:w-12 (3rem) circles
   This centers the dashed line with the number circles.
*/