/* Custom styles for Foundation-based template */

:root {
    --primary: #f2a900;
    --secondary: #0d1117;
    --accent: #00bfff;
    --light: #f5f5f7;
    --dark: #0a0a0a;
    --medium: #1e1e1e;
}

/* Color Classes */
.bg-dark {
    background-color: var(--secondary) !important;
}

.bg-medium {
    background-color: var(--medium) !important;
}

.bg-orange {
    background-color: var(--primary) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-orange {
    color: var(--primary) !important;
}

/* Typography */
.heading-1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.heading-2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.heading-3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d1117 0%, #1a1f25 100%);
    position: relative;
    overflow: hidden;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1f25 0%, #0d1117 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* How It Works */
.how-it-works-section {
    padding: 5rem 0;
}

.step-number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f2a900 0%, #ff8c00 100%);
}

.cta-section h2 {
    color: var(--dark);
}

.cta-section p {
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-section .button {
    background-color: var(--dark);
    color: var(--light);
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .button:hover {
    background-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
}

.social-links a {
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary) !important;
}

/* Buttons */
.button {
    border-radius: 30px;
    font-weight: 700;
}

.button.hollow {
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* Cards */
.card {
    background-color: var(--secondary);
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .heading-1 {
        font-size: 2.5rem;
    }
    
    .heading-2 {
        font-size: 2rem;
    }
    
    .hero-section {
        text-align: center;
        padding: 150px 0 100px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.margin-bottom-1 {
    margin-bottom: 1rem;
}

.margin-bottom-2 {
    margin-bottom: 2rem;
}

.margin-top-1 {
    margin-top: 1rem;
}

.margin-top-2 {
    margin-top: 2rem;
}