/* =============================================
   StarVault - Celebrity Management
   Premium Dark & Gold Theme
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --bg: #0f0f0f;
    --bg-card: #171717;
    --bg-secondary: #1e1e1e;
    --fg: #f0f0f0;
    --fg-muted: #888888;
    --gold: #c9a84c;
    --gold-dark: #a8872e;
    --gold-light: #e0c872;
    --border: #2a2a2a;
    --radius: 0.5rem;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Loading Screen --- */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  
  .loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loading-logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
  }
  
  .loading-bar-container {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
  }
  
  .loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    width: 0%;
    border-radius: 2px;
    animation: loadBar 2s ease-in-out forwards;
  }
  
  @keyframes loadBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
  }
  
  .loading-text {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

/* ---------- Utility ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gold {
    color: var(--gold);
}

.section-label {
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--fg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--fg);
}

.btn-outline:hover {
    background-color: var(--bg-secondary);
}

.btn-full {
    width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg-muted);
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.nav-admin-link {
    font-size: 0.875rem;
    color: var(--fg-muted);
    transition: color 0.2s;
}

.nav-admin-link:hover {
    color: var(--fg);
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: var(--fg-muted);
    transition: color 0.2s;
}

.mobile-link:hover {
    color: var(--fg);
}

.mobile-link-muted {
    color: var(--fg-muted);
    font-size: 0.875rem;
}

.mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.72);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 5rem 1rem 2rem;
}

.hero-label {
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--fg-muted);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-stats {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--fg-muted);
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.6875rem;
    color: var(--fg-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator svg {
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ---------- Featured Celebrities ---------- */
.featured-section {
    padding: 4rem 0;
    background: var(--bg);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-header-link {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
    min-height: 48px;
}

.section-header-link:hover {
    gap: 0.75rem;
}

.celeb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.celeb-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    display: block;
}

.celeb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.celeb-card:hover img {
    transform: scale(1.05);
}

.celeb-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
    opacity: 0.85;
}

.celeb-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}

.celeb-card-category {
    font-size: 0.6875rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.celeb-card-name {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-weight: 700;
}

.celeb-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: var(--gold);
    transition: opacity 0.3s ease;
}

.celeb-card-arrow svg {
    color: var(--bg);
}

.celeb-card:hover .celeb-card-arrow {
    opacity: 1;
}

/* ---------- Upcoming Events ---------- */
.events-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.events-section .section-header {
    text-align: center;
    align-items: center;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    cursor: pointer;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.event-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-index {
    font-size: 0.75rem;
    color: var(--fg-muted);
    font-family: monospace;
    width: 24px;
}

.event-date-block .event-date {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.event-date-block .event-year {
    font-size: 0.6875rem;
    color: var(--fg-muted);
    margin-top: 0.25rem;
}

.event-info {
    padding-left: 2.5rem;
}

.event-category {
    font-size: 0.6875rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.event-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.2s;
}

.event-item:hover .event-title {
    color: var(--gold);
}

.event-location {
    font-size: 0.8125rem;
    color: var(--fg-muted);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.event-location svg {
    flex-shrink: 0;
}

/* ---------- Latest News ---------- */
.news-section {
    padding: 4rem 0;
    background: var(--bg);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-card {
    display: block;
    cursor: pointer;
}

.news-card-image {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 1rem;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 999px;
}

.news-card-date {
    font-size: 0.75rem;
    color: var(--fg-muted);
    margin-bottom: 0.5rem;
}

.news-card-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-card);
    text-align: center;
}

.cta-section .cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-section .section-title {
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--fg-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-grid {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--fg-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-muted);
    transition: all 0.2s;
}

.social-icon:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--fg-muted);
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
    padding: 7rem 0 2.5rem;
    text-align: center;
    background: var(--bg);
}

.page-hero-sm {
    padding: 5.5rem 0 1.5rem;
    text-align: left;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.75rem;
}

.page-hero-desc {
    color: var(--fg-muted);
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--fg-muted);
    transition: color 0.2s;
    min-height: 48px;
}

.back-link:hover {
    color: var(--gold);
}

/* ---------- Celebrity Profile ---------- */
.profile-section {
    padding: 2rem 0 4rem;
    background: var(--bg);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.profile-image {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-category {
    display: inline-block;
    font-size: 0.6875rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 1.5rem;
}

.profile-bio {
    color: var(--fg-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.profile-socials h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.social-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.social-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--fg-muted);
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ---------- Filter Bar ---------- */
.filter-section {
    padding: 0 0 1rem;
    background: var(--bg);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--fg-muted);
    transition: all 0.2s;
    min-height: 44px;
}

.filter-btn:hover {
    color: var(--fg);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--bg);
}

/* ---------- Celebrity Listing Full ---------- */
.celeb-listing {
    padding: 2rem 0 4rem;
    background: var(--bg);
}

.celeb-grid-full {
    grid-template-columns: repeat(2, 1fr);
}

/* ---------- Form Styles ---------- */
.form-section {
    padding: 0 0 4rem;
    background: var(--bg);
}

.form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group-full {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--fg);
    font-size: 1rem;
    font-family: var(--font-sans);
    min-height: 48px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--fg-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10L8 11z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: var(--gold);
}

.form-actions {
    margin-top: 1rem;
    text-align: center;
}

.form-note {
    font-size: 0.75rem;
    color: var(--fg-muted);
    margin-top: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ---------- Alerts ---------- */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert strong {
    display: block;
    margin-bottom: 0.25rem;
}

.alert-success {
    background: rgba(62, 207, 142, 0.08);
    border: 1px solid rgba(62, 207, 142, 0.3);
    color: #3ecf8e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ---------- Contact Layout ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.info-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
}

.info-card p {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

/* ---------- News Listing ---------- */
.news-listing {
    padding: 0 0 4rem;
    background: var(--bg);
}

.news-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.news-featured-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.news-featured:hover .news-featured-title {
    color: var(--gold);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.75rem;
    transition: gap 0.2s;
}

.news-featured:hover .read-more {
    gap: 0.75rem;
}

/* ---------- Single Article ---------- */
.article-section {
    padding: 0 0 4rem;
    background: var(--bg);
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.article-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 999px;
}

.article-date {
    font-size: 0.8125rem;
    color: var(--fg-muted);
}

.article-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 2rem;
}

.article-image {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 2rem;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--fg-muted);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Tablet (640px+) */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        height: 80px;
        padding: 0 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
    }

    .hero-stats {
        margin-top: 4rem;
    }

    .featured-section,
    .events-section,
    .news-section,
    .cta-section {
        padding: 6rem 0;
    }

    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 3.5rem;
    }

    .celeb-grid {
        gap: 1.5rem;
    }

    .celeb-card-info {
        padding: 1.5rem;
    }

    .event-item {
        flex-direction: row;
        align-items: center;
        padding: 1.5rem;
        gap: 2rem;
        border-radius: var(--radius);
        margin: 0 -1.5rem;
    }

    .event-top {
        min-width: 160px;
    }

    .event-date-block .event-date {
        font-size: 1.875rem;
    }

    .event-info {
        flex: 1;
        padding-left: 0;
    }

    .event-title {
        font-size: 1.375rem;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 4rem 0;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Inner pages (640px+) */
    .page-hero {
        padding: 9rem 0 3rem;
    }

    .page-hero-sm {
        padding: 7rem 0 1.5rem;
    }

    .profile-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .profile-actions {
        flex-direction: row;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-wrapper {
        padding: 2.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
    }

    .news-featured {
        grid-template-columns: 1fr 1fr;
    }

    .news-featured-info {
        padding: 2rem;
    }

    .celeb-listing {
        padding: 2rem 0 6rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .nav-actions {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .celeb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}