/* Custom Styles for DesignStudio */

/* Import Google Font: Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-dark: #000000;
    --secondary-dark: #1a1a1a;
    --light-gray: #999999;
    --border-gray: #e0e0e0;
}

/* Global Styles */
body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #000 !important;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
}

.hero-image-wrapper {
    position: relative;
}

/* Grayscale Images */
.grayscale {
    /*filter: grayscale(100%);*/
    transition: filter 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
}

/* Icon Boxes */
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
}

.icon-box-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
}

/* Cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Avatar Circle */
.avatar-circle {
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Social Icons */
.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.social-icon-large {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Text Colors */
.text-light-gray {
    color: var(--light-gray);
}

.hover-white:hover {
    color: #fff !important;
}

.hover-dark:hover {
    color: #000 !important;
}

/* Page Header */
.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Project Cards */
.project-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    /*aspect-ratio: 4/3;*/
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 1.5rem 0;
}

/* Filter Buttons */
.filter-btn {
    white-space: nowrap;
}

.sticky-filter {
    position: sticky;
    top: 70px;
    z-index: 100;
}

/* Contact Form */
.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark {
    background: #000;
    border-color: #000;
}

.btn-dark:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 2px solid #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000 !important;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Badge */
.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Accordion */
.accordion-button {
    background: #fff;
    color: #000;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #000;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #ddd;
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .page-header {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .sticky-filter {
        top: 56px;
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
}

/* Utilities */
.min-vh-100 {
    min-height: 100vh;
}

/* Success/Error Messages */
.alert-success {
    background-color: #000;
    color: #fff;
    border: none;
}

.alert-danger {
    background-color: #dc3545;
    color: #fff;
    border: none;
}






/*404 Page Styles*/
    .error-404-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .error-404-section::before {
        content: '404';
        position: absolute;
        font-size: 30rem;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.03);
        z-index: 0;
        line-height: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .error-content {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .error-number {
        font-size: 10rem;
        font-weight: 900;
        line-height: 1;
        color: #000;
        margin-bottom: 1rem;
        animation: glitch 1s infinite;
    }

    @keyframes glitch {
        0%, 100% {
            text-shadow: 0 0 0 rgba(0, 0, 0, 0);
        }
        50% {
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
        }
    }

    .floating-icon {
        position: absolute;
        font-size: 2rem;
        color: rgba(0, 0, 0, 0.1);
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-20px);
        }
    }

    .icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
    .icon-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
    .icon-3 { bottom: 15%; left: 15%; animation-delay: 1s; }
    .icon-4 { bottom: 20%; right: 10%; animation-delay: 1.5s; }
    .icon-5 { top: 50%; left: 5%; animation-delay: 2s; }
    .icon-6 { top: 60%; right: 5%; animation-delay: 2.5s; }

    .search-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .quick-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }

    .quick-link-card {
        background: #fff;
        border: 2px solid #f0f0f0;
        border-radius: 12px;
        padding: 1.5rem;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
        min-width: 140px;
        text-align: center;
    }

    .quick-link-card:hover {
        border-color: #000;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        color: #000;
    }

    .quick-link-card i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    @media (max-width: 768px) {
        .error-number {
            font-size: 6rem;
        }
        
        .error-404-section::before {
            font-size: 15rem;
        }
        
        .floating-icon {
            font-size: 1.5rem;
        }
    }
/*EOF 404 Page Styles*/



/*View Link Projects*/
span a {
  text-decoration: none; /* removes underline */
  color: white; /* makes text white */
}

span a:hover {
  text-decoration: none; /* keeps it removed on hover */
  color: #f1f1f1; /* optional: slightly lighter white on hover */
}
/*EOF Link View Projects*/

