/* Import Google Fonts - Optimized */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #f4a460;
    --secondary-color: #fad932;
    --white-color: #fff;
    --hover-color: #e69555;
    --bg-dark: #1a1a1a;
    --bg-darker: #2c2c2c;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --gradient-primary: linear-gradient(135deg, #f4a460 0%, #fad932 100%);
    
    /* Dark mode variables */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --navbar-bg: #ffffff;
    --navbar-text: #333333;
    --footer-bg: #f8f9fa;
    --footer-text: #333333;
}

/* Dark mode styles */
body.dark-mode {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --bg-card: #2a2a2a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --border-color: #3a3a3a;
    --navbar-bg: #2a2a2a;
    --navbar-text: #e0e0e0;
    --footer-bg: #2a2a2a;
    --footer-text: #e0e0e0;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

/* Footer dark mode */
body.dark-mode .footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

body.dark-mode .footer h5 {
    color: var(--text-primary);
}

body.dark-mode .footer a {
    color: var(--text-secondary);
}

body.dark-mode .footer a:hover {
    color: var(--primary-color);
}

body.dark-mode .footer p {
    color: var(--text-secondary);
}

body.dark-mode .footer .copyright {
    color: var(--text-secondary);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer .social-links a:hover {
    transform: translateY(-5px);
}

/* Specific style for Facebook icon */
.footer .social-links a.facebook-link {
    background-color: white;
    color: #3b5998; /* Facebook blue color for the icon */
}

.footer .social-links a.facebook-link i.fa-facebook-f {
    color: #3b5998;
}

.footer .social-links a.facebook-link:hover {
    background-color: white;
    transform: translateY(-5px);
}

.footer .social-links a.facebook-link:hover i.fa-facebook-f {
    color: #3b5998;
}

.footer .copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer .col-md-4 {
        margin-bottom: 30px;
    }
}
