/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|   Project Creation Wizard
|_______________________________________________________________*/

.file-upload-section, .document-section { border: 1px dashed #ccc; padding: 1rem; text-align: center; cursor: pointer; }


.scrollable-content, .custom-sidebar-height {
    max-height: calc(100vh - 150px); 
    overflow-y: auto; 
}
.card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.sidebar-nav-item {
    margin-bottom: 5px;
    padding: 0.5rem 1rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.sidebar-nav-item.active-primary-nav {
    border-left-color: #E26535 !important;
    background-color: rgba(225, 101, 53, 0.08) !important;
    color: #E26535 !important;
    font-weight: bold;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.sidebar-nav-item:not(.active-primary-nav):hover {
    background-color: #e9ecef;
    color: #212529;
}


/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|   Project Profile
|_______________________________________________________________*/

#fixed-project-header {
    height: 60px; 
    border-bottom: 1px solid #eee;
    z-index: 1050; 
}

#fixed-header-wrapper {
    position: fixed; 
    padding: 15px;
    top: 0;
    left: 250px;
    right: 0;
    z-index: 1050;
    display: none; 
}

#fixed-project-header-content {
    max-width: 1200px; 
    margin: 0 auto; 
    width: 100%;
    padding: 0 1rem; 
    height: 100%;
}

.project-logo-circle-small {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #eee;
}

.social-icon-fixed {
    color: #333; 
    font-size: 1.2rem;
    padding: 5px;
}


/* Styles for the new layout based on wireframe */
.project-header {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.project-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
.project-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.project-logo-circle.editable::after {
    content: 'Cambiar Logo';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: bold;
}

.project-logo-circle.editable:hover::after {
    opacity: 1;
}
.social-icon {
    color: white;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.block-title {
    font-weight: 600;
    font-size: 16px;
}

/* -------------------------------------- */
/* Specific Social Media Brand Colors */
/* -------------------------------------- */

.social-icon-website { background-color: var(--bs-primary, #86CEEB); }
.social-icon-facebook { background-color: #1877f2; }
.social-icon-instagram { background-color: #c13584; }
.social-links a:hover { opacity: 0.8; }

.project-asset-thumb {
    height: 120px;
    object-fit: cover;
    width: 100%;
}
.video-embed-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}


/* Video Carousel Wrapper */
.video-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* Container holding all video slides in a row */
.video-container-list {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease-in-out; 
}

/* Each video slide takes up the full width */
.video-slide {
    flex-shrink: 0;
    width: 100%;
}

.video-slide iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* Navigation Arrows (Full Height, Rounded Edges, 100% Opacity) */
.video-nav-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    background: rgba(0, 0, 0, 0.5); 
    border: none;
    color: white;
    z-index: 99; /* FIX: Set a high z-index to ensure visibility */
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7); /* Darker on hover */
}

.carousel-control-prev {
    left: 0;
    border-top-left-radius: 8px; /* Match container border-radius */
    border-bottom-left-radius: 8px;
}

.carousel-control-next {
    right: 0;
    border-top-right-radius: 8px; /* Match container border-radius */
    border-bottom-right-radius: 8px;
}



