// public/css/style.css

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Arial, sans-serif;
}

#wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Navigation Styles */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: #111;
    z-index: 100;
}

.navigation {
    margin-top: 50px;
}

.navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation li {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.navigation li:hover,
.navigation li.active {
    background: tomato;
}

.navigation li i {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.navigation li span {
    font-size: 12px;
}

/* Section Styles */
.section {
    width: 100%;
    height: 100vh;
    position: relative;
}

#section1 {
    background-size: cover;
    background-position: center;
}

/* Container Styles */
.container-fluid {
    margin-left: 100px;
    padding: 20px;
    width: calc(100% - 100px);
}

.title h2 {
    color: tomato;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Service Styles */
.service {
    text-align: center;
    margin-bottom: 30px;
}

.service img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.service h5 {
    color: tomato;
    font-size: 18px;
    margin-bottom: 10px;
}

.service ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service li {
    margin-bottom: 8px;
}

/* Project Styles */
.project {
    margin-bottom: 30px;
}

.project img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.project h6 {
    color: #fff;
    margin-bottom: 10px;
}

/* Welcome Section */
#welcome {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

#welcome h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Twitter Section */
#twitter {
    background: #333;
    padding: 40px 0;
    text-align: center;
    color: #fff;
}

#twitter h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

#twitter h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

.animate__flash {
    animation-name: flash;
}

.animate__backInLeft {
    animation-name: backInLeft;
}

.animate__backInRight {
    animation-name: backInRight;
}

.animate__bounceInLeft {
    animation-name: bounceInLeft;
}

.animate__fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

/* Responsive Design */
@media (max-width: 768px) {
    #sidebar {
        width: 60px;
    }
    
    .container-fluid {
        margin-left: 60px;
        width: calc(100% - 60px);
    }
    
    .navigation li span {
        display: none;
    }
    
    .title h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #sidebar {
        width: 100%;
        height: 60px;
    }
    
    .container-fluid {
        margin-left: 0;
        margin-top: 60px;
        width: 100%;
    }
    
    .navigation {
        margin-top: 0;
    }
    
    .navigation ul {
        display: flex;
        justify-content: space-around;
    }
    
    .navigation li {
        padding: 10px 0;
    }
}

/* Icon Styles */
.icon-default {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.icon-border {
    border: 1px solid #4a4e52;
}

.hover-bg-primary {
    transition: all .3s ease-in-out;
}

.hover-bg-primary:hover {
    background-color: #ff891e;
    border-color: #ff891e;
    color: #fff;
}

.rounded-circle {
    border-radius: 50%;
}

/* Footer Social Icons */
.list-inline {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.d-flex {
    display: flex;
}

.me-3 {
    margin-right: 1rem;
}

/* Contact Info */
.contact-info {
    color: #fff;
    margin-bottom: 40px;
}

.contact-info a {
    color: tomato;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}