@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    font-family: 'Poppins', sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: inherit;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Preserve logo text exactly as is */
.logo h1,
.logo p {
    font-family: 'Poppins', sans-serif;
}

/* Keep default fonts for text inputs and textareas */
input[type="text"],
input[type="email"], 
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 250px;
    background: #000000;
    padding: 30px 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #333;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.logo-icon {
    margin-bottom: 15px;
}

.logo-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #ffffff;
}

.logo p {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 5px;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: #6799c2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: none;
    border: none;
}

.nav-link:hover,
.nav-link.active {
    background: none;
    color: #6799c2;
    transform: translateX(5px);
}

/* Main Content */
.main-content {
    margin-left: 250px;
    flex: 1;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Gallery Section */
.gallery {
    padding: 40px;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.gallery-header h3 {
    font-family: 'Poppins', sans-serif;
    color: #6799c2;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-count {
    background: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #6799c2;
    border: none;
}

/* Masonry Grid */
.masonry-grid {
    columns: 4;
    column-gap: 8px;
    margin: 0;
}

.image-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 8px;
    break-inside: avoid;
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #222;
}

/* Varied image sizes for masonry layout */
.image-item.size-small {
    width: 100%;
}

.image-item.size-medium {
    width: 100%;
}

.image-item.size-large {
    width: 100%;
    margin-bottom: 8px;
}

.image-item.size-wide {
    width: 100%;
    margin-bottom: 8px;
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Different heights for varied layout */
.image-item.size-small img {
    height: 200px;
    object-fit: cover;
}

.image-item.size-medium img {
    height: 280px;
    object-fit: cover;
}

.image-item.size-large img {
    height: 400px;
    object-fit: cover;
}

.image-item.size-wide img {
    height: 320px;
    object-fit: cover;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.image-item:hover img {
    transform: scale(1.05) translateZ(0);
    filter: grayscale(0%);
}

/* Mobile: Disable grayscale effect for smoother experience */
@media (max-width: 768px) {
    .image-item img {
        filter: grayscale(0%) !important;
    }
    
    .image-item:hover img {
        filter: grayscale(0%) !important;
    }
}

.image-info {
    padding: 15px;
    background: #1a1a1a;
}

.image-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.image-category {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-dimensions {
    color: #666;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 60px;
    color: #666;
    font-size: 1.2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #ccc;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.modal-info {
    margin-top: 20px;
}

.modal-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: normal;
    font-family: 'Poppins', sans-serif;
}

.modal-info p {
    color: #ccc;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin: 0;
}

/* Brand styling for modal */
.brand-main {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
}

.brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 1px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .masonry-grid {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        width: 280px;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .masonry-grid {
        columns: 2;
        column-gap: 6px;
        padding: 1rem;
    }
    
    .image-item {
        margin-bottom: 6px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .content-section {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        columns: 1;
        column-gap: 4px;
        padding: 0.5rem;
    }
    
    .image-item {
        margin-bottom: 4px;
    }
    
    .hero {
        height: 40vh;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sidebar {
        width: 100%;
    }
}

/* Content Sections */
.content-section {
    display: none;
    padding: 2rem;
}

.content-section.active {
    display: block;
}

.section-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1rem;
}

/*.section-subtitle {
    color: #888;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
}*/

/*.section-subtitle2 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}*/

/* Featured Image Section */
.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.featured-info h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.image-details {
    background: #000000;
    padding: 1.5rem;
    border-radius: 8px;
}

.detail-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    color: #6799c2;
    font-weight: 500;
}

.detail-value {
    color: #6799c2;
    font-weight: 600;
}

.no-featured {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 3rem;
}

/* About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
}

.about-image {
    float: left;
    width: 600px;
    margin: 0 2rem 1rem 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    text-align: justify;
    line-height: 1.6;
}

.placeholder-image {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: #888;
}

.about-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.signature {
    color: #ff6b35;
    font-weight: 600;
    text-align: right;
    margin-top: 2rem;
    font-style: italic;
}

/* Contact Section */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    space-y: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item i {
    color: #ff6b35;
    width: 20px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #e55a2b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


/* Featured Story Styling */
.featured-story {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffffff;
}

.featured-story h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-story p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* New Featured Story Section - Full Width Below */
.featured-story-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffffff;
}

.featured-story-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-story-section p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    font-size: 1rem;
}

/* Section titles with Poppins font */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Featured content layout improvements */
.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.featured-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}



/* Featured Image Improvements */
.featured-title {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Increase featured image size by 25% */
.featured-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: none;
}

/* Action buttons */
.image-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.action-btn {
    background: transparent;
    border: none;
    color: #6799c2;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.action-btn span {
    font-size: 1rem;
}

/* Featured story section - full width */
.featured-story-section {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.featured-story-section h4 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-story-section p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Adjust EXIF section for smaller space */
.featured-info {
    padding-left: 1rem;
}

.featured-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.image-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
}

.detail-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: #888;
    font-weight: 500;
    font-size: 0.85rem;
}

.detail-value {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Fullscreen modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
}

.fullscreen-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .featured-info {
        padding-left: 0;
    }
    
    .image-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .action-btn {
        flex: 1;
        min-width: 140px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
}


/* Additional Mobile Layout Improvements */
@media (max-width: 768px) {
    /* Featured Image Section Mobile */
    .featured-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }
    
    .featured-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .image-details {
        padding: 1rem;
    }
    
    .detail-group {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .detail-label, .detail-value {
        font-size: 0.9rem;
    }
    
    .action-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .featured-story-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .featured-story-section h4 {
        font-size: 1.1rem;
    }
    
    .featured-story-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }
    
    .about-image {
        text-align: center;
    }
    
    .about-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Gallery Mobile Improvements */
    .gallery-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .masonry-grid {
        gap: 0.5rem;
    }
    
    .masonry-item {
        margin-bottom: 0.5rem;
    }
    
    .masonry-item img {
        border-radius: 6px;
    }
    
    /* Modal Mobile */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: none;
    }
    
    .modal-image {
        max-height: 60vh;
        object-fit: contain;
    }
    
    .close {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .featured-content,
    .about-content {
        padding: 1rem !important;
    }
    
    .image-details {
        padding: 0.75rem;
    }
    
    .action-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        top: 15px;
        left: 15px;
        padding: 10px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
}


/* Category Filter Badges */
.category-filters {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

.category-badge {
    background: none;
    color: #6799c2;
    border: none;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-badge:hover {
    background: none;
    color: #6799c2;
    transform: translateY(-1px);
}

.category-badge.active {
    background: none;
    color: #6799c2;
    font-weight: 600;
}

/* Update gallery header layout for badges */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    gap: 1rem;
}

.gallery-header h3 {
    flex-shrink: 0;
}

.image-count {
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .category-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .gallery-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
        align-items: center;
    }
    
    .category-filters {
        justify-content: center;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    .category-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .category-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
}


/* Hero Tagline Image */
.hero-tagline-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-tagline-image {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-tagline-image {
        max-height: 120px;
    }
}

