BLACKSITE
:
216.73.216.251
:
172.93.223.125 / geeteetravels.com
:
Linux ubuntu 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
:
/
home
/
geeteetravels
/
public_html
/
css
/
Upload File:
files >> /home/geeteetravels/public_html/css/gallery-redesign.css
/* Gallery Redesign - Professional & Premium */ :root { --gold: #D4AF37; --navy: #232e66; --navy-light: #2d3a7d; --text-dark: #1e293b; --text-muted: #64748b; --bg-light: #f8fafc; --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); } .gallery-hero { background: linear-gradient(rgba(35, 46, 102, 0.9), rgba(35, 46, 102, 0.85)), url('../images/gallery-bg.jpg'); background-size: cover; background-position: center; padding: 80px 0 100px; text-align: center; color: #fff; } .gallery-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; } .breadcrumb-custom { list-style: none; padding: 0; display: flex; justify-content: center; gap: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.7); } /* Filter Section */ .gallery-filter-container { padding: 40px 0; text-align: center; background: #fff; position: sticky; top: 75px; /* Adjust based on sticky header height */ z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } #myBtnContainer { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; } .filter-btn { border: 1px solid #e2e8f0; outline: none; padding: 10px 20px; background-color: #f8fafc; cursor: pointer; border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--text-muted); transition: var(--transition); } .filter-btn:hover { background-color: #fff; border-color: var(--gold); color: var(--gold); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); } .filter-btn.active { background-color: var(--navy); color: white; border-color: var(--navy); box-shadow: 0 10px 20px rgba(35, 46, 102, 0.2); } /* Gallery Grid */ .gallery-main-container { padding: 60px 0; background: var(--bg-light); } .gallery-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 25px; width: 100%; } .gallery-column { display: none; /* Controlled by JS filtering */ animation: fadeIn 0.5s ease forwards; } .gallery-column.show { display: block; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .gallery-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: var(--transition); height: 100%; } .gallery-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); } .gallery-img-wrapper { position: relative; overflow: hidden; aspect-ratio: 16 / 11; } .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; } .gallery-card:hover .gallery-img-wrapper img { transform: scale(1.1); } .gallery-card-content { padding: 20px; text-align: center; } .gallery-card-content h4 { margin: 0; font-size: 14px; font-weight: 500; color: var(--text-dark); line-height: 1.5; } /* Video Frame Styling */ .gallery-video-wrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; overflow: hidden; } .gallery-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; } /* Modal Improvements */ .w3-modal { z-index: 100001 !important; background-color: rgba(0,0,0,0.95) !important; } .w3-modal-content { background: none !important; max-width: 1000px !important; margin-top: 50px !important; } .mySlides img { border-radius: 10px; box-shadow: 0 0 50px rgba(0,0,0,0.5); } /* Mobile Adjustments */ @media (max-width: 768px) { .gallery-hero h1 { font-size: 2.22rem; } .gallery-filter-container { top: 75px; padding: 20px 10px; } .gallery-row { grid-template-columns: 1fr; gap: 20px; } .gallery-main-container { padding: 30px 15px; } .filter-btn { padding: 8px 15px; font-size: 13px; } }