/* STYLES FOR AWARDS PAGE (awards-style.css)
  ======================================================
  - Contains all custom styles from your file.
  - Contains styles for the hero header and breadcrumbs.
*/

/* Hero Header (from inline style and dynamic CSS) */
.sabbi-page-header {
    background-image: url(https://www.gitanjaliawards.com/assets/upload_files/pagesliderimages/orig/banner_6.jpg);
    background-color: #333; /* Fallback */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.sabbi-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.sabbi-page-header .page-title {
    color: #ffffff;
    font-family: Montserrat, sans-serif;
    line-height: 40px;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
}

/* Breadcrumbs (from dynamic CSS) */
.auth-breadcrumb-wrap {
    background-color: #EDF2F6;
    font-family: "Open Sans", sans-serif;
}
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.breadcrumb {
    padding-top: 8px;
    padding-right: 15px;
    padding-bottom: 8px;
    padding-left: 15px;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.sabbi-breadcrumb {
    color: #000000;
}
.sabbi-breadcrumb li {
    display: inline-block;
}
.sabbi-breadcrumb li a {
    color: #000000;
    text-decoration: none;
}
.sabbi-breadcrumb li a:hover {
    color: #DB3243;
}
.sabbi-breadcrumb > li > span.separator {
    color: #000;
    margin: 0 8px;
}

/* Page Content Styles */
:root {
    --primary-color: #DB3243;
    --primary-dark: #b82736;
    --secondary: #2d3436;
    --accent: #f8d7da;
    --text-dark: #2d3436;
    --text-light: #666666;
    --background: #ffffff;
    --border: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: var(--text-dark);
    /* This pushes all content down to prevent overlap
      with a sticky/fixed header.
    */
    padding-top: 80px; 
}

/* NEW: Main content wrapper */
.awards-main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .awards-main-content {
        margin: 1rem;
        padding: 0;
    }
}


/* Enhanced Details Section Styles */
.details-section-0003 {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.details-section-0003::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.details-title-0003 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: Montserrat, sans-serif;
}

.details-title-0003 i {
    font-size: 2.2rem;
}

.details-container-0003 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.details-item-0003 {
    position: relative;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.details-item-0003:hover {
    transform: translateY(-5px);
}

.details-item-0003 h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Montserrat, sans-serif;
}

.details-content-0003 {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.details-content-0003 p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.details-content-0003 p::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Enhanced Filter Panel Styles */
.filter-panel-0003 {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.search-container-0003 {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-input-0003 {
    width: 100%;
    padding: 12px 20px;
    padding-right: 40px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input-0003:focus {
    outline: none;
    border-color: var(--primary-color);
}

.clear-button-0003 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.3s ease;
}

.clear-button-0003:hover {
    color: var(--primary-color);
}

.filter-group-0003 {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select-0003 {
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select-0003:focus {
    outline: none;
    border-color: var(--primary-color);
}

.clear-filters-0003 {
    padding: 10px 20px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-filters-0003:hover {
    background: var(--primary-color);
    color: white;
}

/* Enhanced List View Styles */
.awards-container-0003 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.awards-list-0003 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Enhanced Award Item Styles */
.award-item-0003 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    border: 2px solid transparent;
}

.award-item-0003:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(219, 50, 67, 0.2);
    border-color: var(--primary-color);
}

.award-item-0003::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-item-0003:hover::before {
    opacity: 1;
}

.award-image-0003 {
    width: 200px;
    height: 285px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
    flex-shrink: 0;
    border: 2px solid #eee;
}

.award-item-0003:hover .award-image-0003 {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.award-content-0003 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-field-0003 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.award-field-0003:last-child {
    border-bottom: none;
}

.field-label-0003 {
    color: #666;
    font-size: 0.9rem;
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-label-0003 i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.field-value-0003 {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.award-name-0003 {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: Montserrat, sans-serif;
}

.award-type-0003 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.award-item-0003:hover .award-type-0003 {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Pagination Styles */
.pagination-0003 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-info-0003 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 10px;
    font-weight: bold;
}

.page-button-0003 {
    padding: 10px 15px;
    background: #f5f5f5;
    color: #666;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-button-0003:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-button-0003:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
    border-color: #eee;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .details-container-0003 {
        grid-template-columns: 1fr;
    }
    .filter-panel-0003 {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group-0003 {
        flex-direction: column;
        align-items: stretch;
    }
    .award-item-0003 {
        flex-direction: column;
        text-align: left;
        padding: 15px;
    }
    .award-image-0003 {
        width: 100%;
        height: 250px; /* Taller image on mobile */
        margin-bottom: 15px;
    }
    .award-content-0003 {
        width: 100%;
        padding: 0;
    }
    .award-field-0003 {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    .field-label-0003 {
        min-width: 80px;
        flex-shrink: 0;
    }
    .field-value-0003 {
        flex: 1;
        word-break: break-word;
    }
    .award-type-0003 {
        margin-top: 0;
    }
    .pagination-0003 {
        flex-wrap: wrap;
        gap: 8px;
    }
    .page-info-0003 {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
}