/* LIGHT BLACK GOLD THEME - style.css */

:root {
    --bg-black: #0a0a0a;
    --dark-surface: #121212;
    --gold-primary: #cba059;
    --gold-soft: #dbbf83;
    --gold-dark: #86633a;
    --text-white: #f3f4f6;
    --text-gray: #9ca3af;
    --border-gray: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gold { color: var(--gold-primary); }
.gold-text {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold-primary), var(--gold-dark));
}
.bg-dark { background-color: var(--dark-surface); }
.rounded { border-radius: 8px; }
.rounded-full { border-radius: 50px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.w-full { width: 100%; }
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.px-40 { padding-left: 40px; padding-right: 40px; }
.font-bold { font-weight: 800; }
.italic { font-style: italic; }
.grayscale { filter: grayscale(100%); transition: 0.3s; }
.grayscale:hover { filter: grayscale(0%); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    padding: 12px 24px;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 18px; }
.btn-gold { background-color: var(--gold-primary); color: #000; }
.btn-gold:hover { background-color: var(--gold-soft); box-shadow: 0 0 20px rgba(203, 160, 89, 0.4); }
.btn-outline { border: 2px solid var(--border-gray); color: #fff; background: transparent; }
.btn-outline:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.btn-outline-gold { border: 2px solid var(--gold-primary); color: var(--gold-primary); background: transparent; }
.btn-outline-gold.active { background-color: var(--gold-primary); color: #000; }
.btn-black { background-color: #000; color: var(--gold-primary); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }

.hover-scale:hover { transform: scale(1.05); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s;
}
.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 12px 0;
    backdrop-blur: 10px;
    border-bottom: 1px solid var(--border-gray);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.logo-box {
    width: 40px;
    height: 40px;
    background-color: var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.logo-box.mini { width: 32px; height: 32px; font-size: 14px; }
.logo-text h1 { font-family: 'Playfair Display', serif; font-size: 20px; line-height: 1; margin-bottom: 2px; }
.logo-text span { font-size: 9px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-gray); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-mini {
    position: relative;
    display: flex;
    align-items: center;
}
.search-mini i { position: absolute; left: 12px; color: var(--text-gray); font-size: 14px; }
.search-mini input {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border-gray);
    color: #fff;
    padding: 8px 12px 8px 36px;
    border-radius: 50px;
    font-size: 13px;
    width: 150px;
    transition: 0.3s;
    outline: none;
}
.search-mini input:focus { width: 220px; border-color: var(--gold-primary); }

.mobile-toggle { display: none; cursor: pointer; font-size: 24px; color: var(--gold-primary); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--bg-black);
    z-index: 999;
    padding: 100px 40px;
    transition: 0.5s;
    border-left: 1px solid var(--border-gray);
}
.mobile-menu.active { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 30px; }
.mobile-menu a { text-decoration: none; color: #fff; font-size: 24px; font-weight: 800; }

/* Hero */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg img { width: 100%; height: 100%; object-cover; opacity: 0.4; }
.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-black) 20%, transparent 60%, var(--bg-black) 90%),
                linear-gradient(to top, var(--bg-black) 5%, transparent 40%);
}
.hero-content { max-width: 650px; }
.badge { background-color: rgba(203, 160, 89, 0.2); color: var(--gold-primary); padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; border: 1px solid rgba(203, 160, 89, 0.3); }
.hero-title { font-family: 'Playfair Display', serif; font-size: 72px; margin: 15px 0; line-height: 1.1; }
.hero-title span { color: var(--gold-primary); }
.hero-meta { display: flex; list-style: none; gap: 20px; color: var(--text-gray); font-size: 13px; margin-bottom: 25px; }
.hero-meta li::after { content: "•"; margin-left: 20px; opacity: 0.3; }
.hero-meta li:last-child::after { display: none; }
.hero-desc { color: var(--text-gray); font-size: 18px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 20px; }

/* Stats */
.stats-section { border-top: 1px solid var(--border-gray); border-bottom: 1px solid var(--border-gray); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { display: flex; align-items: center; gap: 20px; }
.stat-icon { font-size: 28px; color: var(--gold-primary); }
.stat-info h3 { font-size: 24px; font-weight: 800; }
.stat-info p { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); }

/* content sections */
.content-section { padding: 100px 0; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; font-weight: 800; font-family: 'Playfair Display', serif; }
.more-link { text-decoration: none; color: var(--gold-primary); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.pill-gold { background-color: var(--gold-primary); color: #000; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 4px; margin-left: 15px; }
.title-with-pill { display: flex; align-items: center; }

/* Timeline Updates */
.updates-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.update-item { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--text-gray); cursor: pointer; transition: 0.3s; }
.update-item:hover { color: var(--gold-primary); }
.dot { width: 6px; height: 6px; background-color: var(--gold-primary); border-radius: 50%; flex-shrink: 0; }
.update-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* News List */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 12px; border: 1px solid var(--border-gray); display: flex; gap: 20px; cursor: pointer; transition: 0.3s; }
.news-item:hover { border-color: rgba(203, 160, 89, 0.4); background: rgba(203, 160, 89, 0.05); }
.news-date { text-align: center; color: var(--gold-primary); padding-right: 20px; border-right: 1px solid var(--border-gray); min-width: 80px; }
.news-date .day { font-size: 24px; font-weight: 800; display: block; line-height: 1; }
.news-date .month { font-size: 10px; text-transform: uppercase; font-weight: 600; }
.news-body h4 { font-size: 16px; margin-bottom: 8px; }
.news-body p { font-size: 12px; color: var(--text-gray); }

/* Movie Grid */
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; }
.movie-grid-row { display: flex; gap: 25px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.movie-grid-row::-webkit-scrollbar { height: 4px; }
.movie-grid-row .movie-card { min-width: 200px; scroll-snap-align: start; }

.movie-card { background: rgba(255,255,255,0.03); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-gray); position: relative; transition: 0.3s; cursor: pointer; }
.movie-card:hover { transform: translateY(-10px); border-color: var(--gold-primary); }
.movie-poster { position: relative; aspect-ratio: 2/3; }
.movie-poster img { width: 100%; height: 100%; object-fit: cover; }
.movie-poster .rating-badge { position: absolute; top: 12px; right: 12px; background: var(--gold-gradient); color: #000; padding: 2px 6px; border-radius: 4px; font-size: 11px; font-weight: 800; }
.movie-poster .tag-badge { position: absolute; top: 12px; left: 12px; background: #e11d48; color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: 800; }
.movie-poster .play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.movie-card:hover .play-overlay { opacity: 1; }
.movie-poster .play-icon { width: 50px; height: 50px; background: var(--gold-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-size: 20px; }

.movie-info { padding: 15px; }
.movie-info h4 { font-size: 15px; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.movie-info .meta { font-size: 11px; color: var(--text-gray); display: flex; justify-content: space-between; }

/* VIP News layout */
.grid-layout-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.vip-card { border-radius: 20px; color: #000; padding: 50px; display: flex; align-items: center; justify-content: center; text-align: center; }
.vip-content h3 { font-size: 32px; font-weight: 900; margin-bottom: 15px; }
.vip-content p { font-size: 15px; opacity: 0.8; margin-bottom: 30px; font-weight: 600; }
.vip-actions { display: flex; gap: 15px; justify-content: center; }

/* Product Page Styles */
.product-header { margin-bottom: 60px; }
.display-title { font-size: 48px; font-family: 'Playfair Display', serif; line-height: 1.2; }
.advanced-search { position: relative; margin-top: 30px; display: flex; gap: 15px; }
.advanced-search input { flex: 1; background: var(--dark-surface); border: 1px solid var(--border-gray); padding: 20px 30px; border-radius: 15px; color: #fff; font-size: 16px; outline: none; }
.advanced-search input:focus { border-color: var(--gold-primary); box-shadow: 0 0 30px rgba(203,160,89,0.1); }

.filter-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; }
.filter-group { margin-bottom: 40px; }
.filter-group h4 { font-size: 12px; color: var(--gold-primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: rgba(255,255,255,0.03); border: 1px solid var(--border-gray); color: var(--text-gray); padding: 6px 14px; border-radius: 8px; font-size: 12px; cursor: pointer; transition: 0.3s; }
.tag:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.tag.active { background-color: rgba(203,160,89,0.1); border-color: var(--gold-primary); color: var(--gold-primary); }

.listing-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border-gray); }
.count-text { font-size: 14px; color: var(--text-gray); }
.sort-group { font-size: 13px; color: var(--text-gray); display: flex; align-items: center; gap: 15px; }
.sort-group button { background: none; border: none; color: var(--text-gray); cursor: pointer; font-weight: 600; }
.sort-group button.active { color: var(--gold-primary); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 80px; }
.btn-outline-gray { border: 1px solid var(--border-gray); background: transparent; color: var(--text-gray); min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.btn-outline-gray.disabled { opacity: 0.3; cursor: default; }

/* About Page Styles */
.timeline-v { border-left: 2px solid var(--gold-primary); padding-left: 40px; position: relative; }
.v-item { position: relative; margin-bottom: 60px; }
.v-item::before { content: ""; position: absolute; left: -49px; top: 0; width: 16px; height: 16px; background: var(--gold-primary); border-radius: 50%; box-shadow: 0 0 10px var(--gold-primary); }
.v-year { font-size: 24px; font-weight: 900; color: var(--gold-primary); display: block; margin-bottom: 10px; }
.v-content h4 { font-size: 20px; margin-bottom: 10px; }
.v-content p { color: var(--text-gray); font-size: 15px; max-width: 600px; }

.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.culture-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border-gray); padding: 40px; border-radius: 24px; text-align: center; }
.culture-card i { font-size: 40px; color: var(--gold-primary); margin-bottom: 20px; }
.culture-card h4 { font-size: 20px; margin-bottom: 15px; }
.culture-card p { font-size: 14px; color: var(--text-gray); line-height: 1.8; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.team-member { text-align: center; }
.member-photo { aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; margin-bottom: 20px; border: 2px solid var(--border-gray); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member h5 { font-size: 18px; margin-bottom: 5px; }
.team-member p { font-size: 12px; color: var(--gold-primary); font-weight: 700; text-transform: uppercase; }

/* Contact Page Styles */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 30px; }
.info-list li { display: flex; gap: 20px; align-items: flex-start; }
.info-list i { font-size: 24px; color: var(--gold-primary); }
.social-box { margin-top: 60px; }
.social-row { display: flex; gap: 15px; margin-top: 15px; }
.social-circle { width: 45px; height: 45px; border: 1px solid var(--border-gray); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s; text-decoration: none; }
.social-circle:hover { background-color: var(--gold-primary); color: #000; border-color: var(--gold-primary); }

.contact-form-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border-gray); padding: 50px; border-radius: 30px; backdrop-blur: 10px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); margin-bottom: 8px; font-weight: 800; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border-gray); color: #fff; padding: 15px; border-radius: 10px; font-family: inherit; font-size: 14px; outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-primary); }

.map-container { height: 400px; border-radius: 30px; overflow: hidden; position: relative; }
.map-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.map-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; }
.map-pin-box { background: rgba(10,10,10,0.9); padding: 30px; border-radius: 20px; border: 1px solid var(--gold-primary); text-align: center; box-shadow: 0 0 50px rgba(203,160,89,0.2); }
.map-pin-box i { font-size: 32px; color: var(--gold-primary); margin-bottom: 10px; display: block; }

/* Floating Controls */
.floating-controls { position: fixed; bottom: 40px; right: 40px; display: flex; flex-direction: column; gap: 15px; z-index: 900; }
.float-btn { width: 56px; height: 56px; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; font-size: 20px; transition: 0.3s; position: relative; text-decoration: none; }
.float-app { background: var(--bg-black); border: 1px solid var(--border-gray); }
.float-service { background: var(--bg-black); border: 1px solid var(--border-gray); color: var(--gold-primary); }
.float-top { background: var(--bg-black); border: 1px solid var(--border-gray); color: var(--text-gray); }
.float-btn:hover { transform: scale(1.1); border-color: var(--gold-primary); color: var(--gold-primary); }

.float-tooltip { position: absolute; right: 70px; background: rgba(255,255,255,0.1); backdrop-blur: 10px; color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 8px; opacity: 0; pointer-events: none; transition: 0.3s; white-space: nowrap; border: 1px solid var(--border-gray); }
.float-btn:hover .float-tooltip { opacity: 1; right: 80px; }

/* Footer */
.footer { background-color: var(--bg-black); border-top: 1px solid var(--border-gray); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { max-width: 300px; }
.footer-links h5, .footer-sub h5 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 25px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: var(--text-gray); font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: var(--gold-primary); }

.sub-row { display: flex; gap: 10px; margin-top: 15px; }
.sub-row input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border-gray); padding: 10px 15px; border-radius: 8px; color: #fff; font-size: 13px; outline: none; }
.sub-row input:focus { border-color: var(--gold-primary); }

.footer-bottom { border-top: 1px solid var(--border-gray); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.copyright { font-family: monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #444; }
.footer-tags { display: flex; gap: 30px; font-size: 11px; font-weight: 700; color: #333; }

/* Sections Display logic */
.page-section { display: none; }
.page-section.active { display: block; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.page-section.active { animation: fadeIn 0.8s ease-out forwards; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title { font-size: 56px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-layout-2-1, .product-header, .filter-layout, .contact-layout { grid-template-columns: 1fr; }
    .filter-sidebar { order: 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions, .search-mini { display: none; }
    .mobile-toggle { display: block; }
    .hero { height: auto; padding: 150px 0 100px; }
    .hero-title { font-size: 42px; }
    .hero-btns { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; }
    .display-title { font-size: 32px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .culture-grid { grid-template-columns: 1fr; }
}
