    /* Gallery Card Design */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    background: #111;
}

.gallery-card img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    display: block;
}

/* Hover Overlay */
.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-info {
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.gallery-info i {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}

/* Hover States */
.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-hover {
    opacity: 1;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

/* Gradient Overlay for Text Readability */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Typography */
.hero-title {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 10px;
    line-height: 1;
}

.hero-gold-divider {
    width: 100px;
    height: 4px;
    background: #D4AF37;
    margin: 20px 0 30px 0;
}

.hero-subtitle {
    font-size: 24px;
    color: #f0f0f0;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "|";
    color: #444;
}

.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* Scroll Down Animation */
.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero-section { height: 50vh; }
    .hero-title { font-size: 45px; }
    .hero-subtitle { font-size: 18px; }
    .hero-bg-overlay { background: rgba(0,0,0,0.7); } /* Darker on mobile */
}