/* Remove fixed width constraints for full responsiveness */
#root {
    min-width: auto;
    width: 100%;
}

/* Modern responsive styles */
.workspace_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.workspace_item {
    margin-bottom: 30px;
    width: 100%;
    transition: transform 0.3s ease;
}

.workspace_item:hover {
    transform: translateY(-5px);
}

.workspace_item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.workspace_item img:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.workspace_description {
    color: #333;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
    line-height: 1.4;
}

/* Enhanced carousel styles */
.slick-dots li button {
    background-color: #bf9b30 !important;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.slick-dots li.slick-active button {
    background-color: #826a21 !important;
    transform: scale(1.2);
}

.slick-dots-bottom ul {
    margin-top: 30px !important;
}

/* Responsive typography */
@media (max-width: 768px) {
    .workspace_description {
        font-size: 1rem;
    }
    
    .workspace_item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .workspace_wrapper {
        padding: 0 15px;
    }
    
    .workspace_description {
        font-size: 0.9rem;
    }
    
    .workspace_item img {
        height: 180px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #bf9b30;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #826a21;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(191, 155, 48, 0.3);
    border-radius: 50%;
    border-top-color: #bf9b30;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Font imports */
@font-face {
    font-family: 'MyFont';
    src: local('MyFont'), url(./fonts/MyFont.woff) format('woff');
}

/* Google Fonts import for better typography */
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&family=Water+Brush&display=swap');

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }