/* General Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6rem 0;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Welcome Section */
.welcome {
    background-color: var(--light-color);
}

/* Listing Section */
.listing {
    background-color: white;
}

.offer-card {
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.score-circle .display-4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.disclaimer-text {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .offer-card .row > div {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .offer-card .row > div:last-child {
        margin-bottom: 0;
    }

    .offer-card .btn {
        width: 100%;
    }
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.social-icons a {
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-icons {
        margin-top: 1rem;
    }
} 