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

/* Root Variables */
:root {
    --primary-bg: #0d1421;
    --secondary-bg: #1a2332;
    --accent-bg: #2a3441;
    --primary-color: #00ff41;
    --secondary-color: #ff6b35;
    --text-light: #ffffff;
    --text-dark: #000000;
    --border-color: #00ff41;
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --twitter-blue: #1da1f2;
    
    /* Green & White Theme Colors */
    --fund-green: #1B5E20;
    --fund-light-green: #2E7D32;
    --fund-accent-green: #4CAF50;
    --fund-bright-green: #00C853;
    --fund-white: #FFFFFF;
    --fund-light-gray: #F5F5F5;
    --fund-dark-green: #0F3B0F;
}

/* Base Styles */
body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: url('../images/Fund Backdrop.jpeg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

/* Ensure HTML also has proper background handling */
html {
    background: url('../images/Fund Backdrop.jpeg') no-repeat center center;
    background-size: cover;
    min-height: 100%;
}

@keyframes float {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

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

/* Header */
.header {
    background: rgba(27, 94, 32, 0.95);
    border-bottom: 4px solid var(--fund-accent-green);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.6);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 var(--text-dark);
    animation: pulse 2s infinite;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    border: 2px solid var(--fund-accent-green);
    background: var(--fund-light-green);
    color: var(--fund-white);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 150px 0;
    text-align: center;
    background: transparent;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.main-coin {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-coin-image {
    width: 300px;
    height: auto;
    max-width: 100%;
    animation: float-coin 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@keyframes float-coin {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Buttons */
.btn {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid;
    border-radius: 8px;
    background: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    color: var(--fund-white);
    background: var(--fund-accent-green);
    border-color: var(--fund-green);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.6);
    background: var(--fund-bright-green);
}

.btn-secondary {
    color: var(--fund-white);
    background: var(--fund-green);
    border-color: var(--fund-dark-green);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
}

.btn-secondary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.6);
    background: var(--fund-light-green);
}

.btn-twitter {
    color: var(--text-light);
    background: var(--twitter-blue);
    border-color: var(--twitter-blue);
    box-shadow: 4px 4px 0 var(--text-dark);
    padding: 12px 20px;
}

.btn-twitter:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--text-dark);
}

.twitter-icon {
    font-size: 18px;
    font-weight: bold;
}

/* Sections */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--fund-accent-green);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--fund-accent-green);
    margin: 20px auto;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.about .container {
    position: relative;
    z-index: 2;
}


.content-box {
    background: rgba(15, 59, 15, 0.95);
    border: 2px solid var(--fund-accent-green);
    border-radius: 16px;
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.about-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--fund-white);
}

/* Portfolio Styles */
.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--fund-accent-green);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.holdings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.holding-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--fund-accent-green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.holding-item:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.holding-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--fund-bright-green);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.holding-token {
    font-size: 16px;
    font-weight: 600;
    color: var(--fund-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--fund-dark-green);
    border: 2px solid var(--fund-accent-green);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: var(--fund-bright-green);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--fund-accent-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--fund-white);
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--fund-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: rgba(27, 94, 32, 0.95);
    border-top: 4px solid var(--fund-accent-green);
    padding: 30px 0;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--fund-white);
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0;
        min-height: 70vh;
    }
    
    .hero-coin-image {
        width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn {
        width: 200px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .content-box {
        padding: 20px;
        margin: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
        min-height: 60vh;
    }
    
    .hero-coin-image {
        width: 200px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-text {
        font-size: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
