/* Thrifty Hosting CMS - Custom Styles */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --success-color: #34a853;
    --warning-color: #fbbc04;
    --danger-color: #ea4335;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats .badge {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.offer-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.offer-image {
    height: 200px;
    object-fit: cover;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
