/* filepath: d:\Users\dell\Desktop\ALL PROJECTS\wonderland\public\css\home.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: #333;
}

:root {
    --primary-color: #fe424f;
    --primary-dark: #e63946;
    --text-dark: #333;
    --text-muted: #666;
    --bg-light: #f8f9fa;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    color: var(--primary-color);
}

.navbar-brand span {
    color: var(--text-dark);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 66, 79, 0.3);
    color: white;
}

.btn-outline-custom {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f6 0%, #ffe8e8 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.hero-image img {
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    color: var(--text-dark);
}

.work-card {
    padding: 2rem;
    transition: all 0.3s;
}

.work-card:hover {
    transform: translateY(-10px);
}

.work-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fe424f 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(254, 66, 79, 0.3);
}

.work-card h4 {
    color: var(--text-dark);
    font-weight: 700;
}


/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
}

.cta-section .btn-primary-custom {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

/* Footer */
.footer {
    background: #ebebeb;
    color: #333;
    padding: 40px 0;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 700;
}

.footer i.fa-compass {
    color: var(--primary-color);
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}