/* ICONAPIX Custom Styles */

/* Global Variables */
:root {
    --font-primary: 'Raleway', sans-serif;
    --color-dark-bg: #212529;
    --color-light-bg: #f5f5f5;
    --color-white: #fff;
    --color-dark-text: #333;
    --color-light-text: #495057;
    --color-accent: #0d6efd;
    --transition-standard: all 0.3s ease;
    --border-radius-standard: 1rem;
    --border-radius-large: 20px;
    --box-shadow-standard: 0 4px 24px rgba(0,0,0,0.15);
    --box-shadow-hover: 0 8px 32px rgba(0,0,0,0.25);
}

body {
    background-color: var(--color-dark-bg);
    color: var(--color-white);
    font-family: var(--font-primary);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    font-family: var(--font-primary);
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.navbar-brand span {
    font-weight: bold;
    color: inherit;
    font-family: var(--font-primary);
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 400;
}







/* Light theme overrides */
[data-bs-theme="light"] body {
    background-color: var(--color-light-bg);
    color: var(--color-dark-text);
}

[data-bs-theme="light"] .navbar {
    background-color: #e9ecef;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

[data-bs-theme="light"] .navbar-brand {
    color: var(--color-light-text);
}

[data-bs-theme="light"] .navbar-nav .nav-link {
    color: var(--color-light-text);
}

[data-bs-theme="light"] .navbar-nav .nav-link:hover {
    color: var(--color-accent);
}

[data-bs-theme="light"] .navbar-toggler {
    border-color: rgba(0,0,0,0.2);
}

[data-bs-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme="light"] #theme-toggle {
    background-color: #e9ecef;
    border-color: rgba(0,0,0,0.2);
    color: var(--color-light-text);
}

[data-bs-theme="light"] #theme-toggle:hover {
    background-color: #dee2e6;
    color: var(--color-light-text);
}

[data-bs-theme="light"] #theme-icon {
    color: var(--color-light-text);
}

[data-bs-theme="light"] .card {
    background-color: #f8f9fa;
    border-color: rgba(0,0,0,0.1);
}

[data-bs-theme="light"] .footer {
    background-color: #f8f9fa;
    color: var(--color-light-text);
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Light theme overrides for album and portfolio pages */
[data-bs-theme="light"] #album,
[data-bs-theme="light"] #portfolio {
    background: linear-gradient(135deg, rgba(245,245,245,0.9) 0%, rgba(233,236,239,0.8) 100%) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] #album::before,
[data-bs-theme="light"] #portfolio::before {
    background: linear-gradient(45deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02), rgba(0,0,0,0.05)) !important;
}

/* Light theme overrides for album and portfolio cards */
[data-bs-theme="light"] .album-image-card,
[data-bs-theme="light"] .portfolio-album-card {
    background: linear-gradient(145deg, rgba(248,249,250,0.95), rgba(233,236,239,0.95)) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] .album-image-card .album-img-wrapper,
[data-bs-theme="light"] .portfolio-album-card .album-img-wrapper {
    background: rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] .album-image-card .album-overlay,
[data-bs-theme="light"] .portfolio-album-card .album-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)) !important;
    color: #fff !important;
}

[data-bs-theme="light"] .album-image-card:hover,
[data-bs-theme="light"] .portfolio-album-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 25px rgba(0,0,0,0.1), 0 0 40px rgba(0,0,0,0.2) !important;
}

/* Light theme overrides for modal */
[data-bs-theme="light"] #imageViewerModal .modal-content {
    background: rgba(248,249,250,0.95) !important;
    border: 1px solid rgba(0,0,0,0.15) !important;
}

[data-bs-theme="light"] #imageViewerModal .modal-header {
    background: rgba(233,236,239,0.9) !important;
    color: #495057 !important;
}

[data-bs-theme="light"] #imageViewerModal .modal-footer {
    background: rgba(233,236,239,0.9) !important;
    color: #495057 !important;
}

/* Move photo counter to modal title area */
[data-bs-theme="light"] .modal-title {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

/* Photo counter styling for both themes */
.photo-counter {
    font-size: 0.8rem !important;
    color: #aaa !important;
    font-weight: normal !important;
    opacity: 0.8 !important;
}

[data-bs-theme="light"] .photo-counter {
    color: #6c757d !important;
}

[data-bs-theme="light"] .modal-image {
    box-shadow: 0 0 40px rgba(0,0,0,0.2) !important;
}

/* Light theme overrides for thumbnail strip */
[data-bs-theme="light"] .thumbnail-strip {
    background: linear-gradient(180deg, rgba(248,249,250,0.95) 0%, rgba(233,236,239,0.95) 100%) !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
}

[data-bs-theme="light"] .thumbnail-strip::before {
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%) !important;
}

[data-bs-theme="light"] .thumbnail-container {
    background: rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
}

/* Light theme overrides for thumbnails */
[data-bs-theme="light"] .thumbnail-item {
    border: 2px solid rgba(0,0,0,0.2) !important;
    background: linear-gradient(145deg, rgba(248,249,250,0.9), rgba(233,236,239,0.9)) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1), inset 0 1px 0 rgba(248,249,250,0.8) !important;
}

[data-bs-theme="light"] .thumbnail-item:hover {
    border-color: rgba(0,0,0,0.4) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 20px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

[data-bs-theme="light"] .thumbnail-item.active {
    border-color: #000 !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2), 0 0 25px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

[data-bs-theme="light"] .thumbnail-item::before {
    background: linear-gradient(45deg, transparent 30%, rgba(0,0,0,0.1) 50%, transparent 70%) !important;
}

/* Light theme scrollbar */
[data-bs-theme="light"] .thumbnail-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1) !important;
}

[data-bs-theme="light"] .thumbnail-container::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3) !important;
}

[data-bs-theme="light"] .thumbnail-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.4) !important;
}

[data-bs-theme="light"] .thumbnail-container {
    scrollbar-color: rgba(0,0,0,0.3) rgba(0,0,0,0.1) !important;
}

/* Light theme modal backdrop */
[data-bs-theme="light"] .modal-backdrop {
    background-color: rgba(0,0,0,0.7) !important;
}

[data-bs-theme="light"] .modal-backdrop.show {
    opacity: 0.8 !important;
}



 



 

/* Image Viewer Modal Styles - Updated */
#imageViewerModal .modal-content {
    background: rgba(0,0,0,0.95) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    height: 90vh !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}

#imageViewerModal .modal-dialog {
    max-width: 85vw !important;
    height: 90vh !important;
    margin: 5vh auto !important;
    overflow: hidden !important;
}

#imageViewerModal .modal-header {
    background: rgba(0,0,0,0.9) !important;
    height: 50px !important;
    flex-shrink: 0 !important;
    padding: 10px 20px !important;
    border-radius: 20px 20px 0 0 !important;
}

#imageViewerModal .modal-body {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    position: relative !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

#imageViewerModal .modal-footer {
    background: rgba(0,0,0,0.9) !important;
    flex-shrink: 0 !important;
    padding: 15px !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius: 0 0 20px 20px !important;
}

.modal-image-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    pointer-events: none !important;
}

.image-protection-layer {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.modal-image {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    border-radius: 20px !important;
    box-shadow: 0 0 40px rgba(255,255,255,0.3) !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out !important;
}

.modal-image.fade-out {
    opacity: 0 !important;
}

.modal-image.fade-in {
    opacity: 1 !important;
}

.modal-image-container * {
    pointer-events: none !important;
}

.modal-image-container button {
    pointer-events: auto !important;
}

/* Elegant Thumbnail Tray Styles */
.thumbnail-strip {
    width: 100% !important;
    padding: 15px 20px !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.95) 100%) !important;
    position: relative !important;
}

.thumbnail-strip::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 20px !important;
    right: 20px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%) !important;
}

.thumbnail-container {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    padding: 10px 0 !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 90px !important;
    background: rgba(0,0,0,0.3) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5) !important;
}

/* Dark scrollbar styling */
.thumbnail-container::-webkit-scrollbar {
    height: 6px !important;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3) !important;
    border-radius: 3px !important;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2) !important;
    border-radius: 3px !important;
}

.thumbnail-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3) !important;
}

/* Firefox scrollbar */
.thumbnail-container {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255,255,255,0.2) rgba(0,0,0,0.3) !important;
}



/* Light theme modal backdrop */
.modal-backdrop {
    background-color: rgba(0,0,0,0.9) !important;
}

.modal-backdrop.show {
    opacity: 0.95 !important;
} 

/* Prevent scrollbars */
.modal,
.modal-open .modal {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

#imageViewerModal {
    overflow: hidden !important;
}

#imageViewerModal .modal-dialog {
    overflow: hidden !important;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #imageViewerModal .modal-dialog {
        max-width: 90vw;
        height: 90vh;
        margin: 5vh auto;
    }
    
    #imageViewerModal .modal-content {
        height: 90vh;
        max-height: 90vh;
    }
    
    .modal-image-container {
        padding: 10px;
    }
}

@media (max-height: 600px) {
    #imageViewerModal .modal-dialog {
        height: 95vh;
        margin: 2.5vh auto;
    }
    
    #imageViewerModal .modal-content {
        height: 95vh;
        max-height: 95vh;
    }
    
    #imageViewerModal .modal-header {
        height: 40px;
        padding: 8px 15px;
    }
    
    .thumbnail-strip {
        padding: 5px 0;
    }
    
    .thumbnail-container {
        min-height: 50px;
    }
    
    .thumbnail-item {
        width: 40px;
        height: 40px;
    }
} 

/* Album page styling with frame and background */
#album {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,40,40,0.6) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
}

#album::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1)) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
}

/* Enhanced album image cards with depth */
.album-image-card {
    position: relative;
    border-radius: var(--border-radius-standard);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
    transition: var(--transition-standard);
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(20,20,20,0.9));
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.1);
}

.album-image-card .album-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.album-image-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 0.75rem 0.75rem 0 0;
}

.album-image-card .album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    z-index: 2;
    border-radius: 0.75rem 0.75rem 0 0;
}

.album-image-card .album-overlay i {
    margin-right: 8px;
}

.album-image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 8px 25px rgba(0,0,0,0.3), 0 0 40px rgba(255,255,255,0.3);
    z-index: 3;
    text-decoration: none;
    color: inherit;
}

.album-image-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.album-image-card:hover .album-overlay {
    opacity: 1;
}

/* Enhanced thumbnail borders */
.thumbnail-item {
    flex-shrink: 0 !important;
    width: 65px !important;
    height: 65px !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    transition: all 0.3s ease !important;
    opacity: 0.8 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
    position: relative !important;
}

.thumbnail-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%) !important;
    border-radius: 15px !important;
    z-index: 1 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.thumbnail-item:hover {
    opacity: 1 !important;
    transform: scale(1.08) !important;
    border-color: rgba(255,255,255,0.5) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

.thumbnail-item:hover::before {
    opacity: 1 !important;
}

.thumbnail-item.active {
    opacity: 1 !important;
    border-color: #fff !important;
    transform: scale(1.12) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 25px rgba(255,255,255,0.3), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

.thumbnail-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    pointer-events: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    border-radius: 13px !important;
    position: relative !important;
    z-index: 2 !important;
} 

/* Portfolio page styling with frame and background */
#portfolio {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,40,40,0.6) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
}

#portfolio::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1)) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
}

/* Enhanced portfolio album cards with depth */
.portfolio-album-card {
    position: relative;
    border-radius: var(--border-radius-standard);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
    transition: var(--transition-standard);
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(20,20,20,0.9));
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.1);
}

.portfolio-album-card .album-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.portfolio-album-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 0.75rem 0.75rem 0 0;
}

.portfolio-album-card .album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    z-index: 2;
    border-radius: 0.75rem 0.75rem 0 0;
}

.portfolio-album-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 8px 25px rgba(0,0,0,0.3), 0 0 40px rgba(255,255,255,0.3);
    z-index: 3;
    text-decoration: none;
    color: inherit;
}

.portfolio-album-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.portfolio-album-card:hover .album-overlay {
    opacity: 1;
} 

/* Home page styling with frame and background */
#home {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,40,40,0.6) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
}

#home::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1)) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
}

/* Hero section styling */
.home-hero {
    padding: 40px 0 !important;
}

.hero-content {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.hero-text {
    flex: 1 !important;
    color: #fff !important;
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(45deg, #fff, #e0e0e0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-family: 'Raleway', sans-serif !important;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    color: #ccc !important;
    margin-bottom: 1.5rem !important;
    font-weight: 300 !important;
    font-family: 'Raleway', sans-serif !important;
}

.hero-description {
    margin-bottom: 2rem !important;
}

.hero-description p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #ddd !important;
    margin-bottom: 0 !important;
}

.hero-actions {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.hero-visual {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.featured-image {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.hero-img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    display: block !important;
    border-radius: 20px !important;
    transition: transform 0.3s ease !important;
}

.featured-image:hover .hero-img {
    transform: scale(1.05) !important;
}

/* Features section styling */
.features-section {
    padding: 60px 0 40px !important;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(20,20,20,0.9)) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2) !important;
    color: #fff !important;
    height: 100% !important;
}

.feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 8px 25px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.1) !important;
}

.feature-icon {
    font-size: 3rem !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.9 !important;
}

.feature-card h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    font-family: 'Raleway', sans-serif !important;
}

.feature-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #ccc !important;
    margin-bottom: 0 !important;
}

/* Light theme overrides for home page */
[data-bs-theme="light"] #home {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.8) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    position: relative !important;
}

[data-bs-theme="light"] #home::before {
    background: linear-gradient(45deg, rgba(255,255,255,0.8), rgba(245,245,245,0.6), rgba(255,255,255,0.8)) !important;
}

[data-bs-theme="light"] .hero-title {
    background: linear-gradient(45deg, #333, #555) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

[data-bs-theme="light"] .hero-subtitle {
    color: #666 !important;
}

[data-bs-theme="light"] .hero-description p {
    color: #555 !important;
}

[data-bs-theme="light"] .featured-image {
    background: #e9ecef !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

[data-bs-theme="light"] .hero-img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)) !important;
}

[data-bs-theme="light"] .feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.9) 100%) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

[data-bs-theme="light"] .feature-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9) !important;
    transform: translateY(-2px) !important;
}

[data-bs-theme="light"] .feature-icon {
    color: #333 !important;
}

[data-bs-theme="light"] .feature-card h3 {
    color: #333 !important;
}

[data-bs-theme="light"] .feature-card p {
    color: #666 !important;
}

/* Responsive design for home page */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    
    .hero-actions {
        justify-content: center !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
} 

/* About page styling with frame and background */
#about {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,40,40,0.6) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
}

#about::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1)) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
}

/* About hero section styling */
.about-hero {
    padding: 40px 0 !important;
}

.about-content {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.about-text {
    flex: 1 !important;
    color: #fff !important;
}

.about-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(45deg, #fff, #e0e0e0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-family: 'Raleway', sans-serif !important;
}

.about-subtitle {
    font-size: 1.5rem !important;
    color: #ccc !important;
    margin-bottom: 1.5rem !important;
    font-weight: 300 !important;
    font-family: 'Raleway', sans-serif !important;
}

.about-description {
    margin-bottom: 2rem !important;
}

.about-description p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #ddd !important;
    margin-bottom: 0 !important;
}

.about-visual {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.about-image {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.about-img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    display: block !important;
    border-radius: 20px !important;
    transition: transform 0.3s ease !important;
}

.about-image:hover .about-img {
    transform: scale(1.05) !important;
}

/* About sections styling */
.about-sections {
    padding: 60px 0 40px !important;
}

.about-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(20,20,20,0.9)) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2) !important;
    color: #fff !important;
    height: 100% !important;
}

.about-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 8px 25px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.1) !important;
}

.about-card-icon {
    font-size: 3rem !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.9 !important;
}

.about-card h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    font-family: 'Raleway', sans-serif !important;
}

.about-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #ccc !important;
    margin-bottom: 0 !important;
}

/* Light theme overrides for about page */
[data-bs-theme="light"] #about {
    background: linear-gradient(135deg, rgba(248,249,250,0.9) 0%, rgba(255,255,255,0.8) 100%) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] #about::before {
    background: linear-gradient(45deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02), rgba(0,0,0,0.05)) !important;
}

[data-bs-theme="light"] .about-title {
    background: linear-gradient(45deg, #212529, #495057) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

[data-bs-theme="light"] .about-subtitle {
    color: #6c757d !important;
}

[data-bs-theme="light"] .about-description p {
    color: #495057 !important;
}

[data-bs-theme="light"] .about-image {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 40px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
}

[data-bs-theme="light"] .about-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95)) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    color: #212529 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] .about-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 25px rgba(0,0,0,0.1), 0 0 30px rgba(0,0,0,0.1) !important;
}

[data-bs-theme="light"] .about-card-icon {
    color: #212529 !important;
}

[data-bs-theme="light"] .about-card h3 {
    color: #212529 !important;
}

[data-bs-theme="light"] .about-card p {
    color: #6c757d !important;
}

/* Responsive design for about page */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .about-title {
        font-size: 2.5rem !important;
    }
    
    .about-subtitle {
        font-size: 1.25rem !important;
    }
    
    .about-card {
        padding: 1.5rem !important;
    }
} 

.btn {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400 !important;
}

.modal-title {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 600 !important;
} 

/* Modal title container and counter styling */
.modal-title-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.modal-title {
    text-align: center !important;
    margin: 0 !important;
    position: relative !important;
}

.photo-counter {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #fff !important;
}

[data-bs-theme="light"] .photo-counter {
    color: #000 !important;
}

/* Modal header layout */
.modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 1.5rem !important;
}

.modal-title-left {
    flex: 0 0 auto !important;
    text-align: left !important;
    margin-right: 1rem !important;
}

.modal-counter-center {
    flex: 1 !important;
    text-align: center !important;
}

.modal-close-right {
    flex: 0 0 auto !important;
    text-align: right !important;
    margin-left: 1rem !important;
}

/* Close button styling */
#imageViewerModal .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
    background-color: transparent !important;
    border: none !important;
    opacity: 1 !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    background-size: 1.5rem !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Dark theme close button */
[data-bs-theme="dark"] #imageViewerModal .btn-close {
    background-color: transparent !important;
    border: none !important;
    opacity: 1 !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    background-size: 1.5rem !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative !important;
}

[data-bs-theme="dark"] #imageViewerModal .btn-close::before,
[data-bs-theme="dark"] #imageViewerModal .btn-close::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 1rem !important;
    height: 2px !important;
    background-color: white !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

[data-bs-theme="dark"] #imageViewerModal .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}



/* Enhanced Footer Styling */
.footer {
    background-color: #2c3e50;
    color: var(--color-white);
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    margin-bottom: 1.5rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-standard);
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-info {
    text-align: center !important;
    margin-top: 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.25rem !important;
}

.contact-item {
    margin-bottom: 0.25rem !important;
    color: #ccc !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 300px !important;
}

.contact-item i {
    margin-right: 0.5rem !important;
    flex-shrink: 0 !important;
}

.contact-item a {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    font-size: 14px !important;
}

.contact-item a:hover {
    color: #0d6efd !important;
}

/* Anti-scraping protection */
.protected-email,
.protected-phone {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    cursor: pointer !important;
}

.protected-email::before {
    content: attr(data-text);
    display: inline;
}

.protected-phone::before {
    content: attr(data-text);
    display: inline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 1rem !important;
    margin-top: 1rem !important;
    width: 100% !important;
}

.footer-bottom small {
    color: #aaa !important;
    font-size: 0.875rem !important;
}

.footer-bottom .row {
    align-items: center !important;
}

.footer-bottom .col-md-6:first-child {
    text-align: center !important;
}

.footer-bottom .col-md-6:last-child {
    text-align: center !important;
}

/* Light theme footer */
[data-bs-theme="light"] .footer {
    background-color: #ecf0f1 !important;
    color: #2c3e50 !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
}

[data-bs-theme="light"] .footer-title {
    color: #495057 !important;
}

[data-bs-theme="light"] .footer-description {
    color: #6c757d !important;
}

[data-bs-theme="light"] .social-link {
    background: rgba(0,0,0,0.1) !important;
    color: #495057 !important;
    border: 1px solid rgba(0,0,0,0.2) !important;
}

[data-bs-theme="light"] .social-link:hover {
    background: rgba(0,0,0,0.2) !important;
    color: #495057 !important;
}

[data-bs-theme="light"] .contact-item {
    color: #6c757d !important;
}

[data-bs-theme="light"] .contact-item a {
    color: #495057 !important;
}

[data-bs-theme="light"] .contact-item a:hover {
    color: #0d6efd !important;
}

[data-bs-theme="light"] .footer-bottom small {
    color: #6c757d !important;
}

[data-bs-theme="light"] .footer-bottom .col-md-6:first-child {
    text-align: center !important;
}

[data-bs-theme="light"] .footer-bottom .col-md-6:last-child {
    text-align: center !important;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem 0 !important;
    }
    
    .social-links {
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    .contact-info {
        text-align: center !important;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    
    .footer-bottom .row {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
}

/* 404 Error Page Styling */
body.error-page {
    background-image: url('/assets/images/broken_camera_404.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative !important;
}

body.error-page::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%) !important;
    z-index: 0 !important;
}

body.error-page .navbar,
body.error-page main,
body.error-page .footer {
    position: relative !important;
    z-index: 1 !important;
}

#error-404 {
    margin: 20px 0 !important;
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60vh !important;
}

.error-content {
    max-width: 800px !important;
    width: 100% !important;
    text-align: center !important;
    color: #fff !important;
    padding: 60px 40px !important;
    background: rgba(0,0,0,0.4) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
}

.error-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
    font-family: 'Raleway', sans-serif !important;
}

.error-subtitle {
    font-size: 1.5rem !important;
    color: #e0e0e0 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 300 !important;
    font-family: 'Raleway', sans-serif !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.error-description {
    font-size: 1.1rem !important;
    color: #f0f0f0 !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.error-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

/* Light theme overrides for 404 page */
[data-bs-theme="light"] body.error-page::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%) !important;
}

/* Responsive design for 404 page */
@media (max-width: 768px) {
    #error-404 {
        min-height: 50vh !important;
        padding: 20px !important;
    }
    
    .error-content {
        max-width: 100% !important;
        padding: 40px 20px !important;
    }
    
    .error-title {
        font-size: 2.5rem !important;
    }
    
    .error-subtitle {
        font-size: 1.25rem !important;
    }
    
    .error-actions {
        flex-direction: column !important;
        align-items: center !important;
    }
} 

/* Gallery page styling with frame and background */
#gallery {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,40,40,0.6) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
}

#gallery::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1)) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
}

/* Shoots page styling with frame and background */
#shoots {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,40,40,0.6) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
}

#shoots::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1)) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
}

/* Light theme overrides for gallery and shoots pages */
[data-bs-theme="light"] #gallery {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.8) 100%) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] #gallery::before {
    background: linear-gradient(45deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02), rgba(0,0,0,0.05)) !important;
}

[data-bs-theme="light"] #shoots {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.8) 100%) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] #shoots::before {
    background: linear-gradient(45deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02), rgba(0,0,0,0.05)) !important;
}

/* Private Gallery page styling with frame and background */
#private {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,40,40,0.6) 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
}

#private::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1)) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
}

/* Light theme overrides for private page */
[data-bs-theme="light"] #private {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.8) 100%) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.05) !important;
}

[data-bs-theme="light"] #private::before {
    background: linear-gradient(45deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02), rgba(0,0,0,0.05)) !important;
}

/* Page Layout - Sticky Footer */
.page-wrapper {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Enhanced Footer Styling */ 