:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #f5f5f5;
    --text-dim: #cccccc;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8529;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa8529 100%);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--bg-darker);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c158 0%, #b38b22 100%);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: none;
}

.cta-button.outline:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dark-gold-bg {
    background: radial-gradient(circle at center, rgba(30, 25, 10, 1) 0%, var(--bg-dark) 100%);
}

.impact-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.playfair {
    font-family: var(--font-serif);
    color: var(--gold-light);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Investment Section */
.investment-section {
    padding: 100px 0;
    position: relative;
    background: url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.investment-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.85);
}

.investment-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.investment-box {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.investment-box h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 30px;
}

.investment-details {
    list-style: none;
    margin-bottom: 40px;
}

.investment-details li {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.highlight-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-serif);
    line-height: 1;
}

.detail-label {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 60px 0 20px;
    border-top: 2px solid var(--gold-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .impact-text {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .investment-box {
        padding: 30px 20px;
    }
    .highlight-value {
        font-size: 2.2rem;
    }
    .footer-content {
        flex-direction: column;
    }
}
