:root {
    --primary-red: #d90429;
    --secondary-pink: #fff0f3;
    --dark-text: #2d2d2d;
    --light-text: #ffffff;
    --background-light: #fafafa;
    --accent-gold: #ffb703;
    --font-primary: 'Poppins', sans-serif;
    --font-headings: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    background-color: var(--background-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: var(--font-headings);
    color: var(--primary-red);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

/* Header */
.main-header {
    background-color: var(--light-text);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.main-header h1 {
    font-size: 3rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Hero Section */
#hero {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

#hero img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
    padding: 60px 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step {
    background: var(--light-text);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}


.process-step img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.process-step h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-family: var(--font-headings);
    margin-bottom: 10px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Investment Section */
#investment {
    background-color: var(--primary-red);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
    color: var(--light-text);
}

#investment .section-title.light {
    color: var(--light-text);
}

.bdv-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.investment-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--dark-text);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffc94a;
    transform: scale(1.05);
}

.investment-subtext {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark-text);
    color: #a0a0a0;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

