/* ==========================================================================
   Theme 2: Golden Luxury (Super Elegant Black & Gold with Scroll-telling)
   ========================================================================== */
body.landing-theme-golden {
    --primary-color: #000000;
    --secondary-color: #0a0a0a;
    --accent-color: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --gold-shimmer: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #d4af37;
    --text-muted: #b8860b;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    --gradient-secondary: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    --gradient-accent: linear-gradient(180deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --gradient-gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    --shadow-sm: 0 2px 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 4px 30px rgba(212, 175, 55, 0.4);
    --shadow-lg: 0 10px 60px rgba(212, 175, 55, 0.5);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.6);
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(10, 10, 10, 0.8);
    --border-color: rgba(212, 175, 55, 0.4);
}

/* Base Styles */
body.landing-theme-golden {
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Background Pattern - STATIC (no animation) */
body.landing-theme-golden::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    /* animation disabled for static appearance */
}

@keyframes goldenPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Header - Elegant Black with Gold Border */
body.landing-theme-golden .main-header {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    position: relative;
}

body.landing-theme-golden .main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 20%, #f4d03f 50%, #d4af37 80%, transparent 100%);
    /* animation disabled for static appearance */
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Navigation Links - Gold Accent */
body.landing-theme-golden .nav-link {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.3s ease;
}

body.landing-theme-golden .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    transition: all 0.3s ease;
}

body.landing-theme-golden .nav-link:hover,
body.landing-theme-golden .nav-link.active {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

body.landing-theme-golden .nav-link:hover::before,
body.landing-theme-golden .nav-link.active::before {
    width: 80%;
    transform: translateX(-50%) scaleX(1);
}

body.landing-theme-golden .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
}

/* Login Button - Gold Elegant */
body.landing-theme-golden .login-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    border: none;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

body.landing-theme-golden .login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

body.landing-theme-golden .login-btn:hover::before {
    left: 100%;
}

body.landing-theme-golden .login-btn:hover {
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Section - Dramatic Black with Gold & Centered Image */
body.landing-theme-golden .hero-section {
    background: #000000;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

body.landing-theme-golden .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    animation: fadeInOverlay 2s ease 0.5s forwards;
}

@keyframes fadeInOverlay {
    to {
        opacity: 1;
    }
}

body.landing-theme-golden .hero-overlay {
    background: none;
}

/* Hero Content - Centered Layout */
body.landing-theme-golden .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Centered Image Container - STATIC (no animation) */
body.landing-theme-golden .hero-image-wrapper {
    width: 700px;
    height: 700px;
    margin: 0 auto 50px;
    position: relative;
    opacity: 1;
    transform: none;
    display: block !important;
    z-index: 10;
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Removed circular glow effects - keeping only the image */
body.landing-theme-golden .hero-image-wrapper::before {
    display: none;
}

body.landing-theme-golden .hero-image-wrapper::after {
    display: none;
}

body.landing-theme-golden .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

body.landing-theme-golden .hero-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Hero Title - Gold Gradient Text with Glow - STATIC (no animation) */
body.landing-theme-golden .hero-title {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 30%, #ffd700 60%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    position: relative;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 4.5rem;
    margin-top: 20px;
    opacity: 1;
    transform: none;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
}

body.landing-theme-golden .hero-subtitle {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.8rem;
    margin-bottom: 0;
    opacity: 1;
    transform: none;
}

/* Hero Stats - Gold Numbers */
body.landing-theme-golden .stat-number {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

body.landing-theme-golden .stat-label {
    color: rgba(212, 175, 55, 0.7);
}

body.landing-theme-golden .hero-stats {
    opacity: 1;
    transform: none;
}

@keyframes fadeInUpGold {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-telling Animations DISABLED - Static sections */
body.landing-theme-golden .news-section,
body.landing-theme-golden .articles-section,
body.landing-theme-golden .gallery-section,
body.landing-theme-golden .about-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

body.landing-theme-golden .news-section.scroll-revealed,
body.landing-theme-golden .articles-section.scroll-revealed,
body.landing-theme-golden .gallery-section.scroll-revealed,
body.landing-theme-golden .about-section.scroll-revealed {
    opacity: 1;
    transform: none;
}

/* Articles Section - Static (no scroll animation) */
body.landing-theme-golden .articles-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

body.landing-theme-golden .articles-section.scroll-revealed {
    opacity: 1;
    transform: none;
}

/* Staggered Animation for Cards - DISABLED for static display */
body.landing-theme-golden .news-card,
body.landing-theme-golden .gallery-item {
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease;
}

body.landing-theme-golden .news-section.scroll-revealed .news-card,
body.landing-theme-golden .gallery-section.scroll-revealed .gallery-item {
    animation: none !important;
}

/* Stagger delay for news cards */
body.landing-theme-golden .news-card:nth-child(1) {
    animation-delay: 0.1s;
}

body.landing-theme-golden .news-card:nth-child(2) {
    animation-delay: 0.2s;
}

body.landing-theme-golden .news-card:nth-child(3) {
    animation-delay: 0.3s;
}

body.landing-theme-golden .news-card:nth-child(4) {
    animation-delay: 0.4s;
}

body.landing-theme-golden .news-card:nth-child(5) {
    animation-delay: 0.5s;
}

body.landing-theme-golden .news-card:nth-child(6) {
    animation-delay: 0.6s;
}

body.landing-theme-golden .news-card:nth-child(n+7) {
    animation-delay: 0.7s;
}

/* Article Cards - DISABLED scroll animations for static display */
body.landing-theme-golden .article-card {
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease;
}

body.landing-theme-golden .articles-section.scroll-revealed .article-card {
    animation: none !important;
}

/* Alternating slide direction DISABLED - static display */
body.landing-theme-golden .article-card:nth-child(odd) {
    transform: none !important;
}

body.landing-theme-golden .article-card:nth-child(even) {
    transform: none !important;
}

body.landing-theme-golden .articles-section.scroll-revealed .article-card:nth-child(odd) {
    animation: none !important;
}

body.landing-theme-golden .articles-section.scroll-revealed .article-card:nth-child(even) {
    animation: none !important;
}

/* Stagger delay for articles - elegant timing */
body.landing-theme-golden .article-card:nth-child(1) {
    animation-delay: 0.15s;
}

body.landing-theme-golden .article-card:nth-child(2) {
    animation-delay: 0.3s;
}

body.landing-theme-golden .article-card:nth-child(3) {
    animation-delay: 0.45s;
}

body.landing-theme-golden .article-card:nth-child(4) {
    animation-delay: 0.6s;
}

body.landing-theme-golden .article-card:nth-child(5) {
    animation-delay: 0.75s;
}

body.landing-theme-golden .article-card:nth-child(n+6) {
    animation-delay: 0.9s;
}

/* Article Cards Styling for Golden Theme */
body.landing-theme-golden .article-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.landing-theme-golden .article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

body.landing-theme-golden .article-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2), inset 0 0 15px rgba(212, 175, 55, 0.03);
    transform: translateY(-8px);
}

body.landing-theme-golden .article-card:hover::before {
    left: 100%;
}

body.landing-theme-golden .article-card .article-title {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

body.landing-theme-golden .article-card:hover .article-title {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

body.landing-theme-golden .article-card .article-excerpt {
    color: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 6.8em;
    /* Approximately 4 lines */
}

body.landing-theme-golden .article-card .article-category {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    font-weight: 700;
}

body.landing-theme-golden .article-card .article-link {
    color: #d4af37;
    transition: all 0.3s ease;
}

body.landing-theme-golden .article-card .article-link:hover {
    color: #f4d03f;
    transform: translateX(-5px);
}

/* Sections - Pure Black Backgrounds */
body.landing-theme-golden .news-section,
body.landing-theme-golden .articles-section,
body.landing-theme-golden .gallery-section,
body.landing-theme-golden .about-section {
    background: #000000;
    position: relative;
}

/* About Wrapper - Side by Side Layout */
body.landing-theme-golden .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

body.landing-theme-golden .about-text-wrapper {
    text-align: right;
}

body.landing-theme-golden .about-text {
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
}

/* About Image Wrapper */
body.landing-theme-golden .about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

body.landing-theme-golden .about-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

body.landing-theme-golden .about-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

/* Services Section - Golden Theme */
body.landing-theme-golden .services-section {
    background: #000000;
    padding: 100px 0;
}

body.landing-theme-golden .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 60px;
}

body.landing-theme-golden .service-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: right;
}

body.landing-theme-golden .service-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(10, 10, 10, 0.9);
}

body.landing-theme-golden .service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: row-reverse;
}

body.landing-theme-golden .service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    flex-shrink: 0;
}

body.landing-theme-golden .service-icon-emoji {
    font-size: 2.5rem;
}

body.landing-theme-golden .service-title {
    color: #d4af37;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

body.landing-theme-golden .service-description {
    color: rgba(255, 255, 255, 0.7);
}

/* News Grid - Ensure 3 columns per row */
body.landing-theme-golden .news-section .news-grid,
body.landing-theme-golden #news-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
}

body.landing-theme-golden .news-grid .news-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: auto !important;
}

/* Ensure featured cards don't span multiple columns */
body.landing-theme-golden .news-grid .news-card.featured {
    grid-column: auto !important;
    grid-column-span: 1 !important;
}

/* Articles Grid - Ensure 3 columns per row */
body.landing-theme-golden .articles-section .articles-grid,
body.landing-theme-golden #articles-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
}

body.landing-theme-golden .articles-grid .article-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: auto !important;
}

/* Responsive: 2 columns on tablets, 1 column on mobile */
@media (max-width: 1024px) {

    body.landing-theme-golden .news-section .news-grid,
    body.landing-theme-golden #news-grid,
    body.landing-theme-golden .articles-section .articles-grid,
    body.landing-theme-golden #articles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Responsive Image Size for Tablet */
    body.landing-theme-golden .hero-image-wrapper {
        width: 600px;
        height: 600px;
    }

    /* About Wrapper Responsive for Tablet */
    body.landing-theme-golden .about-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    body.landing-theme-golden .news-section .news-grid,
    body.landing-theme-golden #news-grid,
    body.landing-theme-golden .articles-section .articles-grid,
    body.landing-theme-golden #articles-grid {
        grid-template-columns: 1fr !important;
    }

    /* Responsive Image Size for Mobile */
    body.landing-theme-golden .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }

    /* About Wrapper Responsive for Mobile - Stack Vertically */
    body.landing-theme-golden .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body.landing-theme-golden .about-text-wrapper {
        text-align: center;
    }

    body.landing-theme-golden .about-text {
        text-align: center;
    }

    body.landing-theme-golden .about-image {
        max-width: 300px;
    }

    /* Services Grid Responsive for Mobile */
    body.landing-theme-golden .services-grid {
        grid-template-columns: 1fr !important;
    }

    body.landing-theme-golden .service-header {
        gap: 10px;
    }

    body.landing-theme-golden .service-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    body.landing-theme-golden .service-icon-emoji {
        font-size: 1.8rem;
    }

    body.landing-theme-golden .service-title {
        font-size: 1.1rem;
    }
}

/* Section Titles - Gold with Elegant Underline */
body.landing-theme-golden .section-title {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

body.landing-theme-golden .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f4d03f, #d4af37, transparent);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

body.landing-theme-golden .section-subtitle {
    color: rgba(212, 175, 55, 0.7);
}

/* News Cards - Elegant Black Cards with Gold Borders */
body.landing-theme-golden .news-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.landing-theme-golden .news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

body.landing-theme-golden .news-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2), inset 0 0 15px rgba(212, 175, 55, 0.03);
    transform: translateY(-8px);
}

body.landing-theme-golden .news-card:hover::before {
    left: 100%;
}

body.landing-theme-golden .news-card.featured {
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

body.landing-theme-golden .news-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* News Image - Gold Overlay on Hover */
body.landing-theme-golden .news-image {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

body.landing-theme-golden .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.landing-theme-golden .news-card.featured .news-image {
    height: 250px;
}

body.landing-theme-golden .news-card:hover .news-image {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
}

body.landing-theme-golden .news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

body.landing-theme-golden .news-card:hover .news-image::after {
    opacity: 1;
}

/* News Title and Text */
body.landing-theme-golden .news-title {
    color: #ffffff;
    font-weight: 600;
}

body.landing-theme-golden .news-card:hover .news-title {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

body.landing-theme-golden .news-excerpt {
    color: rgba(255, 255, 255, 0.7);
}

body.landing-theme-golden .news-date {
    color: rgba(212, 175, 55, 0.6);
}

/* Logo Video - Gold Border Glow */
body.landing-theme-golden .logo-container {
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15), inset 0 0 10px rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

body.landing-theme-golden .logo-container:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

/* Scroll-telling Classes */
body.landing-theme-golden .scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.landing-theme-golden .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

body.landing-theme-golden .scroll-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

body.landing-theme-golden .scroll-fade.revealed {
    opacity: 1;
}

body.landing-theme-golden .scroll-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.landing-theme-golden .scroll-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

body.landing-theme-golden .scroll-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.landing-theme-golden .scroll-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

body.landing-theme-golden .scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.landing-theme-golden .scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Gallery Items */
body.landing-theme-golden .gallery-slide .gallery-image {
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

body.landing-theme-golden .gallery-slide.active .gallery-image {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

body.landing-theme-golden .gallery-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

body.landing-theme-golden .gallery-btn svg {
    stroke: #000000;
}

body.landing-theme-golden .gallery-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* About Section */
body.landing-theme-golden .about-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

body.landing-theme-golden .feature-item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

body.landing-theme-golden .feature-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

body.landing-theme-golden .feature-icon {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

/* ==========================================================================
   GOLDEN THEME - ADDITIONAL MOBILE RESPONSIVE STYLES
   ========================================================================== */

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    /* Hero Image Smaller */
    body.landing-theme-golden .hero-image-wrapper {
        width: 220px;
        height: 220px;
        margin-bottom: 20px;
    }

    /* Hero Title Smaller */
    body.landing-theme-golden .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-top: 10px;
    }

    /* Hero Subtitle Smaller */
    body.landing-theme-golden .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    /* Hero Content Padding */
    body.landing-theme-golden .hero-content {
        padding: 30px 15px;
        gap: 20px;
    }

    /* Section Title Smaller */
    body.landing-theme-golden .section-title {
        font-size: 1.3rem;
        padding-bottom: 15px;
    }

    body.landing-theme-golden .section-title::after {
        width: 60px;
        height: 2px;
    }

    /* About Section Adjustments */
    body.landing-theme-golden .about-image {
        max-width: 200px;
    }

    /* Services Grid */
    body.landing-theme-golden .services-section {
        padding: 40px 0;
    }

    body.landing-theme-golden .services-grid {
        gap: 20px !important;
        margin-top: 30px;
    }

    body.landing-theme-golden .service-card {
        padding: 20px;
    }

    /* News Card Adjustments */
    body.landing-theme-golden .news-card {
        border-radius: 12px;
    }

    /* Article Card Adjustments */
    body.landing-theme-golden .article-card {
        border-radius: 12px;
        padding: 15px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    body.landing-theme-golden .hero-image-wrapper {
        width: 180px;
        height: 180px;
    }

    body.landing-theme-golden .hero-title {
        font-size: 1.3rem;
    }

    body.landing-theme-golden .hero-subtitle {
        font-size: 0.8rem;
    }

    body.landing-theme-golden .section-title {
        font-size: 1.1rem;
    }

    body.landing-theme-golden .about-image {
        max-width: 150px;
    }
}

/* Staff Section - Golden Theme */
body.landing-theme-golden .staff-section {
    background: linear-gradient(180deg, #050505 0%, #0a0808 50%, #0d0b08 100%);
}

body.landing-theme-golden .staff-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

body.landing-theme-golden .staff-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

body.landing-theme-golden .staff-image {
    background: linear-gradient(135deg, #1a1510 0%, #2a2015 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

body.landing-theme-golden .staff-image-placeholder {
    color: rgba(212, 175, 55, 0.4);
}

body.landing-theme-golden .staff-name {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.landing-theme-golden .staff-position {
    color: rgba(212, 175, 55, 0.8);
}

body.landing-theme-golden .staff-bio {
    color: rgba(255, 255, 255, 0.7);
}