/* facelancer_project\static\css\base.css */

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer */
footer {
    margin-top: auto;
    background: #062126;
    color: #FFFFFF;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer p {
    margin: 0;
    opacity: 0.8;
}

.brand-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #03161A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #0094FF, #25D9F8);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0080e0, #1fc8e6);
}