/**
 * Main Stylesheet for Pandit Ji Website
 * 
 * This file contains all the custom styles for the website
 * 
 * @version 1.0
 * @date 2025-05-29
 */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #FF9933; /* केसरिया */
    --secondary-color: #138808; /* हरा */
    --accent-color: #800080; /* बैंगनी */
    --background-color: #FFF5E6; /* हल्का क्रीम */
    --text-color: #333333; /* गहरा स्लेट */
    --highlight-color: #FF5722; /* डीप ऑरेंज */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --black: #000000;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

/* ===== GENERAL STYLES ===== */
body {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Yatra One', 'Noto Sans Devanagari', cursive;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--highlight-color);
    text-decoration: none;
}

.btn {
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #0c6b06;
    border-color: #0c6b06;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background-color: #6a006a;
    border-color: #6a006a;
    color: var(--white);
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* ===== HEADER STYLES ===== */
.top-bar {
    font-size: 0.9rem;
}

.top-bar .social-icons a {
    margin-left: 10px;
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 70px;
}

.navbar {
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

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

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card .card-img {
    height: 200px;
    overflow: hidden;
}

.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card .card-text {
    margin-bottom: 1.2rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== CALENDAR SECTION ===== */
.calendar-section {
    padding: 80px 0;
}

.calendar-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.calendar-card .card-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.calendar-card .card-body {
    padding: 1.5rem;
}

.calendar-date {
    font-size: 1.2rem;
    font-weight: 600;
}

.calendar-event {
    font-size: 1.1rem;
    color: var(--accent-color);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px;
    text-align: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 20px;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.testimonial-content::before {
    top: -10px;
    left: 0;
}

.testimonial-content::after {
    bottom: -30px;
    right: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-designation {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
}

textarea.form-control {
    height: 150px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.25);
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: 80px 0;
}

.booking-form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-info {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    padding: 2rem;
}

.booking-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.booking-info p {
    margin-bottom: 1.5rem;
}

.booking-info-item {
    display: flex;
    margin-bottom: 1rem;
}

.booking-info-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding-top: 4rem;
    padding-bottom: 1rem;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.bottom-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--highlight-color);
    color: var(--white);
}

/* ===== BLOG STYLES ===== */
.blog-section {
    padding: 80px 0;
}

/* Blog Filter Styles */
.blog-filter-section {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.category-filter {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--medium-gray);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-filter:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.category-filter.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
}

.category-filter i {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Blog Pagination Styles */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border-color: var(--medium-gray);
    padding: 10px 15px;
    margin: 0 3px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    color: var(--medium-gray);
    background-color: var(--light-gray);
    border-color: var(--medium-gray);
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card .card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .card-img img {
    transform: scale(1.1);
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.blog-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 5px;
}

/* ===== AUTHENTICATION STYLES ===== */
.auth-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.auth-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.auth-card .card-title {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

/* ===== PROFILE STYLES ===== */
.profile-section {
    padding: 80px 0;
}

.profile-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-details h3 {
    margin-bottom: 0.5rem;
}

.profile-tabs .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 1rem 1.5rem;
}

.profile-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
}

.booking-history-item {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.booking-status.pending {
    background-color: var(--warning);
    color: var(--dark-gray);
}

.booking-status.confirmed {
    background-color: var(--success);
    color: var(--white);
}

.booking-status.cancelled {
    background-color: var(--danger);
    color: var(--white);
}

/* ===== ADMIN STYLES ===== */
.admin-sidebar {
    background-color: var(--dark-gray);
    color: var(--white);
    height: 100%;
    min-height: calc(100vh - 56px);
    padding: 2rem 0;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-left: 3px solid transparent;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-color);
}

.admin-sidebar .nav-link i {
    margin-right: 10px;
}

.admin-content {
    padding: 2rem;
}

.admin-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.admin-card .card-title {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 1rem;
}

.dashboard-stats {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px;
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #6c757d;
}

.stat-card.primary i, .stat-card.primary .stat-value {
    color: var(--primary-color);
}

.stat-card.secondary i, .stat-card.secondary .stat-value {
    color: var(--secondary-color);
}

.stat-card.accent i, .stat-card.accent .stat-value {
    color: var(--accent-color);
}

.stat-card.warning i, .stat-card.warning .stat-value {
    color: var(--warning);
}

/* ===== UTILITIES ===== */
.section-padding {
    padding: 80px 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.overlay-content {
    position: relative;
    z-index: 1;
}

.text-justify {
    text-align: justify;
}

.rounded-lg {
    border-radius: 8px;
}

.shadow-lg {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transition {
    transition: all 0.3s ease;
}

/* Gallery Filter Styles */
.gallery-filter-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-color) 100%);
    border-bottom: 3px solid var(--primary-color);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 20px 0;
}

.category-filter {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--medium-gray);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
    white-space: nowrap;
    min-width: 120px;
    cursor: pointer;
}

.category-filter:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
    text-decoration: none;
}

.category-filter.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.category-filter.active:hover {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.category-filter i {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Gallery Items */
.gallery-main-section {
    background: var(--sacred-ash);
    min-height: 500px;
}

.gallery-item {
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--saffron);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

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

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

.gallery-popup {
    color: white;
    font-size: 24px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.gallery-content {
    padding: 20px;
    text-align: center;
}

.gallery-content h5 {
    color: var(--rudraksha);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.gallery-content p {
    color: var(--text-medium);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-filter {
        gap: 8px;
        padding: 15px 0;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content {
        padding: 15px;
    }
    
    .gallery-content h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-filter {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .filter-btn {
        width: 200px;
        max-width: 90%;
    }
}
