/* ============================================
   NOW IN - GCC's Premier Lifestyle & Events Guide
   Main Stylesheet
   ============================================ */

:root {
    --gradient-start: #8B2F97;
    --gradient-mid: #B94DA8;
    --gradient-end: #E84BAF;
    --magenta: #E84BAF;
    --purple: #8B2F97;
    --dark: #0A0A0F;
    --dark-surface: #121218;
    --dark-elevated: #1A1A24;
    --dark-hover: #252532;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.5);
    --accent-gold: #FFD700;
    --accent-cyan: #00D4FF;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --border-subtle: rgba(255,255,255,0.05);
    --border-light: rgba(255,255,255,0.1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(232,75,175,0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Background Animation
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vh;
    top: -25vh;
    left: -25vw;
    background: radial-gradient(ellipse at 20% 20%, rgba(139,47,151,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(232,75,175,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(185,77,168,0.05) 0%, transparent 70%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.city-selector {
    background: var(--dark-elevated);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-selector:hover {
    border-color: var(--magenta);
    box-shadow: var(--shadow-glow);
}

.city-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 10px 40px rgba(232,75,175,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(232,75,175,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--magenta);
    background: rgba(232,75,175,0.1);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,75,175,0.1);
    border: 1px solid rgba(232,75,175,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--magenta);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(232,75,175,0.25);
    border-color: rgba(232,75,175,0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232,75,175,0.3);
}

.hero-badge .live-dot {
    width: 8px;
    height: 8px;
    background: var(--error);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s backwards;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-card-stack {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    width: 300px;
    height: 380px;
    background: var(--dark-elevated);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-slow);
}

.hero-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
    top: 40px;
    left: 150px;
    z-index: 2;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-card:nth-child(3) {
    top: 80px;
    left: 300px;
    z-index: 1;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hero-card-content {
    padding: 1.5rem;
}

.hero-card-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.hero-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   Hero Compact (Content-First Layout)
   ============================================ */
.hero.hero-compact {
    min-height: auto;
    padding: 10rem 2rem 4rem;
}

.hero-container.hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.hero-centered .hero-content {
    max-width: 100%;
}

.hero-centered .hero-buttons {
    justify-content: center;
}

.hero-centered p {
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* ============================================
   Featured Content Section
   ============================================ */
.featured-content {
    padding: 4rem 2rem;
    background: var(--dark-surface);
}

.featured-content .section-header {
    padding: 0 0 2rem;
}

.featured-content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 1.5rem;
}

.featured-hero-card,
.featured-side-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
    text-decoration: none;
    color: inherit;
}

.featured-hero-card {
    grid-row: span 2;
}

.featured-hero-card:hover,
.featured-side-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.featured-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.featured-hero-card:hover .featured-card-bg,
.featured-side-card:hover .featured-card-bg {
    transform: scale(1.1);
}

.featured-hero-card::before,
.featured-side-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.featured-hero-card .featured-card-content {
    padding: 2.5rem;
}

.featured-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.featured-tag.sponsored {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.featured-tag.partner {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.featured-tag.editors {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.featured-hero-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-side-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.featured-hero-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.featured-sponsor {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Latest Stories Section
   ============================================ */
.latest-stories {
    padding: 4rem 2rem;
}

.latest-stories .section-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.latest-stories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.story-card {
    background: var(--dark-elevated);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-slow);
    text-decoration: none;
    color: inherit;
    display: block;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,75,175,0.3);
}

.story-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.1);
}

.story-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.story-card-body {
    padding: 1.25rem;
}

.story-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
}

/* ============================================
   Quick Categories (Horizontal Pills)
   ============================================ */
.quick-categories {
    padding: 2rem;
    background: var(--dark-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.quick-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-category-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--dark-elevated);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.quick-category-pill:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.quick-category-icon {
    font-size: 1.2rem;
}

/* ============================================
   Stats Strip
   ============================================ */
.stats-strip {
    background: var(--dark-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
}

.view-all {
    color: var(--magenta);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.view-all:hover {
    gap: 1rem;
}

/* ============================================
   Categories Section
   ============================================ */
.categories {
    padding: 6rem 2rem;
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--dark-elevated);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-slow);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--magenta);
    box-shadow: 0 20px 60px rgba(232,75,175,0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139,47,151,0.2), rgba(232,75,175,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Featured Events
   ============================================ */
.featured {
    padding: 6rem 2rem;
    background: var(--dark-surface);
}

.featured-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.event-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
}

.event-card:hover {
    transform: scale(1.02);
}

.event-card.large {
    grid-row: span 2;
}

.event-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.event-card:hover .event-card-bg {
    transform: scale(1.1);
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.event-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-card.large h3 {
    font-size: 1.8rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Weekend Section
   ============================================ */
.weekend {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.weekend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(232,75,175,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.weekend-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.weekend-header {
    text-align: center;
    margin-bottom: 3rem;
}

.weekend-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.weekend-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.weekend-card {
    background: var(--dark-elevated);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-slow);
}

.weekend-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,75,175,0.3);
}

.weekend-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.weekend-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.weekend-card:hover .weekend-card-image img {
    transform: scale(1.1);
}

.weekend-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.weekend-card-body {
    padding: 1.5rem;
}

.weekend-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.weekend-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.weekend-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.weekend-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.weekend-card-city {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--magenta);
}

/* ============================================
   Food & Lifestyle
   ============================================ */
.food-lifestyle {
    padding: 6rem 2rem;
    background: var(--dark-surface);
}

.food-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.food-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-card:hover img {
    transform: scale(1.1);
}

.food-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 1;
}

.food-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.food-card-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.food-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-bg {
    position: absolute;
    inset: -50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.1;
    border-radius: 40px;
    transform: rotate(-2deg) scale(1.1);
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: var(--dark-elevated);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-normal);
}

.newsletter-form input:focus {
    border-color: var(--magenta);
    box-shadow: var(--shadow-glow);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   Cities Section
   ============================================ */
.cities {
    padding: 6rem 2rem;
    background: var(--dark-surface);
}

.cities-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.cities-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.city-card {
    position: relative;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
}

.city-card:hover {
    transform: scale(1.03);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.city-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.city-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.city-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.city-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--dark);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-subtle);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--magenta);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 1.5rem;
}

.mobile-menu-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* ============================================
   Page Headers (for inner pages)
   ============================================ */
.page-header {
    padding: 10rem 2rem 4rem;
    background: var(--dark-surface);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(232,75,175,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--magenta);
}

/* ============================================
   Article/Content Cards
   ============================================ */
.article-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
}

.article-card {
    background: var(--dark-elevated);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-slow);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,75,175,0.3);
}

.article-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.1);
}

.article-card-body {
    padding: 1.5rem;
}

.article-card-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.article-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Single Article Page
   ============================================ */
.article-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-single-header {
    margin-bottom: 3rem;
}

.article-single-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-single-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.article-single-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 3rem;
}

.article-single-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-single-content h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.article-single-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.article-single-content p {
    margin-bottom: 1.5rem;
}

.article-single-content img {
    width: 100%;
    border-radius: 16px;
    margin: 2rem 0;
}

.article-single-content a {
    color: var(--magenta);
    text-decoration: underline;
}

.article-single-content ul,
.article-single-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-single-content li {
    margin-bottom: 0.5rem;
}

/* ============================================
   Loading States
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--dark-elevated) 25%, var(--dark-hover) 50%, var(--dark-elevated) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 2rem;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.pagination a:hover,
.pagination span.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-color: transparent;
}

/* ============================================
   Filters & Search
   ============================================ */
.filters-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 25px;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-color: transparent;
}

.search-box {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1.2rem 0.8rem 3rem;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 25px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-normal);
}

.search-box input:focus {
    border-color: var(--magenta);
}

.search-box svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .event-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Featured Content responsive */
    .featured-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-hero-card {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }

    .featured-side-card {
        min-height: 220px;
    }

    .latest-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .weekend-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .event-card.large {
        grid-column: span 1;
    }

    .weekend-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .article-single-header h1 {
        font-size: 2rem;
    }

    .article-single-image {
        height: 300px;
    }

    /* Featured Content mobile */
    .featured-content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .featured-hero-card {
        grid-column: span 1;
        min-height: 300px;
    }

    .featured-hero-card h3 {
        font-size: 1.5rem;
    }

    .featured-side-card {
        min-height: 200px;
    }

    .latest-stories-grid {
        grid-template-columns: 1fr;
    }

    .quick-categories-container {
        gap: 0.75rem;
    }

    .quick-category-pill {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .filters-bar {
        flex-direction: column;
    }

    .search-box {
        max-width: 100%;
        width: 100%;
    }
}
