/* Custom Styles for FeaturePoints*/

/* General Styles */
body {
    font-family: 'Lato', 'Catamaran', sans-serif;
}

/* Navbar Styles */
#mainNav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#mainNav .navbar-brand {
    font-weight: 700;
    color: #4e54c8;
}

#mainNav .nav-link {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

#mainNav .nav-link:hover {
    color: #4e54c8;
}

/* Button Styles */
.btn-xl {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: white;
    color: #4e54c8;
}

/* Pulse Animation for Buttons */
.pulse-button {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Feature Cards */
.feature-card {
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #4e54c8;
}

/* Colored Horizontal Rule */
.colored-hr {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    margin: 20px auto 40px;
    border: none;
}

/* Offerwall Cards */
.offerwall-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.offerwall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.offer-list {
    list-style: none;
    padding-left: 0;
}

.offer-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list li i {
    margin-right: 10px;
}

/* Image Hover Effect */
.img-hover-effect {
    transition: all 0.3s ease;
}

.img-hover-effect:hover {
    transform: scale(1.05);
}

/* Social Links */
.social-link {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    border-radius: 50%;
    background-color: white;
    color: #4e54c8;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
    background-color: #4e54c8;
}

/* Heart Animation */
.fa-heart {
    color: #ff5e5e;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Footer Styles */
.footer-section {
    background-color: #f8f9fa;
    padding: 30px 0;
    color: #666;
}

.footer-links a {
    color: #666;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4e54c8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-device {
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        margin: 0 5px;
    }
}