/*
Theme Name: Rabbitoff - Forex Prop Firm Reviews
Description: A modern, professional WordPress theme for Forex prop firm reviews and discount codes. Features a clean design optimized for trading websites.
Author: Rabbitoff
Version: 1.0
License: GPL v2 or later
Text Domain: rabbitoff
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Design System Colors */
:root {
    /* Primary Colors */
    --primary: 220 70% 50%;
    --primary-foreground: 0 0% 100%;
    --primary-hover: 220 70% 45%;
    
    /* Secondary Colors */
    --secondary: 220 20% 10%;
    --secondary-foreground: 0 0% 100%;
    
    /* Accent Colors */
    --accent: 142 69% 45%;
    --accent-foreground: 0 0% 100%;
    --accent-hover: 142 69% 40%;
    
    /* Background Colors */
    --background: 222 15% 8%;
    --card: 222 15% 12%;
    --card-foreground: 0 0% 95%;
    
    /* Text Colors */
    --foreground: 0 0% 95%;
    --muted: 0 0% 70%;
    --muted-foreground: 0 0% 60%;
    
    /* Border Colors */
    --border: 220 20% 20%;
    --border-light: 220 20% 25%;
    
    /* Status Colors */
    --success: 142 69% 45%;
    --warning: 45 93% 58%;
    --destructive: 0 62% 50%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(220 70% 60%));
    --gradient-accent: linear-gradient(135deg, hsl(var(--accent)), hsl(142 69% 55%));
    --gradient-background: linear-gradient(180deg, hsl(var(--background)), hsl(222 15% 10%));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(var(--background) / 0.05);
    --shadow-md: 0 4px 6px -1px hsl(var(--background) / 0.1);
    --shadow-lg: 0 10px 15px -3px hsl(var(--background) / 0.1);
    --shadow-glow: 0 0 20px hsl(var(--primary) / 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    background-image: var(--gradient-background);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: hsl(var(--muted-foreground));
}

a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: hsl(var(--primary-hover));
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-dark {
    background: hsl(var(--card));
}

/* Header */
.site-header {
    background: rgba(13, 18, 28, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    text-decoration: none;
}

.site-logo:hover {
    color: hsl(var(--primary));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: hsl(var(--primary));
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: var(--gradient-background);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: hsl(var(--muted-foreground));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px hsl(var(--primary) / 0.4);
    color: hsl(var(--primary-foreground));
}

.btn-secondary {
    background: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
    background: hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn-accent {
    background: var(--gradient-accent);
    color: hsl(var(--accent-foreground));
}

.btn-accent:hover {
    transform: translateY(-2px);
    color: hsl(var(--accent-foreground));
}

/* Cards */
.card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--primary));
    box-shadow: var(--shadow-lg);
}

.card h3 {
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Featured Firms */
.featured-firms {
    background: hsl(var(--card));
}

.firm-card {
    text-align: center;
}

.firm-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 1rem;
    background: hsl(var(--background));
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Trust Section */
.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-feature {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: hsl(var(--primary-foreground));
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials {
    background: hsl(var(--background));
}

.testimonial-card {
    text-align: center;
    position: relative;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
}

.testimonial-author {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.testimonial-role {
    color: hsl(var(--muted));
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    text-align: center;
}

.cta-section h2,
.cta-section p {
    color: hsl(var(--primary-foreground));
}

/* Footer */
.site-footer {
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: hsl(var(--muted-foreground));
    transition: var(--transition);
}

.footer-section a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border));
    padding-top: 2rem;
    text-align: center;
    color: hsl(var(--muted-foreground));
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }