/* =========================================================
   GLOBAL STYLES
========================================================= */
:root {
    --primary-color: #f05537;   /* Eventbrite orange vibe */
    --dark-color: #1e1e1e;
    --light-bg: #f8f9fa;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Roboto, sans-serif;
    background-color: var(--light-bg);
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar .btn {
    border-radius: 30px;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #d9472d;
    border-color: #d9472d;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #1e1e1e;
}

@media (max-width: 576px) {
    .btn { font-size: 0.95rem; padding: 8px 16px; }
}

/* =========================================================
   SEARCH FORM
========================================================= */
.form-control,
.form-select {
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

@media (max-width: 576px) {
    .form-control { font-size: 0.95rem; padding: 8px 12px; }
}

/* =========================================================
   EVENT CARDS
========================================================= */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: height 0.3s ease;
}

@media (max-width: 992px) {
    .card-img-top { height: 280px; }
}

@media (max-width: 576px) {
    .card-img-top { height: 320px; }
}

.card-body h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-body p, .card-body small {
    font-size: 1rem;
}

.view-btn {
    margin-top: auto;
    border-radius: 30px;
}

/* =========================================================
   EVENTS SECTION
========================================================= */
.events-section {
    padding: 70px 0;
    background: var(--light-bg);
}

.events-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
    font-size: 0.95rem;
}

/* =========================================================
   UTILITIES
========================================================= */
img, video {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center !important;
}





/* ================= MOBILE EVENT GRID ================= */
.event-image-wrapper {
    position: relative;
}

.event-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #fff;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    font-weight: 700;
}

.event-date-badge .day {
    font-size: 18px;
    line-height: 1;
    color: #ff5a1f; /* orange like egotickets */
}

.event-date-badge .month {
    font-size: 11px;
    text-transform: uppercase;
    color: #111;
    margin-top: 2px;
}

/* Tighter cards on mobile */
@media (max-width: 576px) {
    .event-card img {
        height: 220px;
    }

    .event-card h5 {
        font-size: 14px;
    }

    .event-card small {
        font-size: 12px;
    }

    .event-card .card-body {
        padding: 10px;
    }
}


/* ================= PRICE BADGE ================= */
.event-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Free events highlight */
.event-price-badge:contains("FREE") {
    background: #16a34a;
}

/* Mobile tweak */
@media (max-width: 576px) {
    .event-price-badge {
        font-size: 12px;
        padding: 5px 9px;
    }
}


.showcase-section {
  background: #000;
  padding: 80px 0;
  overflow-x: hidden;
}

.showcase-container {
  display: flex;
  gap: 24px;
  padding: 0 40px;
}

.showcase-card {
  background: #0b0b0b;
  border-radius: 18px;
  min-height: 500px;
  color: #fff;
  position: relative;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.08);
}

/* TEXT CARD */
.text-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #eaeaea;
}

.author {
  font-size: 14px;
  opacity: 0.7;
}

/* PROFILE */
.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile strong {
  display: block;
  font-size: 14px;
}

.profile small {
  font-size: 12px;
  opacity: 0.6;
}

/* IMAGE CARD */
.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .showcase-container {
    flex-direction: column;
  }

  .showcase-card {
    min-height: 350px;
  }
}


/* ================= POSH STYLE SHOWCASE ================= */
.posh-section {
    background: #000;
    padding: 90px 0;
    overflow: hidden;
}

.posh-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 40px;
}

.posh-track::-webkit-scrollbar {
    display: none;
}

.posh-card {
    min-width: 360px;
    height: 520px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.08);
}

/* IMAGE CARD */
.posh-card.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT CARD */
.posh-card.text {
    background: linear-gradient(
        180deg,
        rgba(20,20,20,0.95) 0%,
        rgba(5,5,5,0.98) 100%
    );
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.posh-card.text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f1f1f1;
}

/* Author */
.posh-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.posh-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.posh-author strong {
    font-size: 0.9rem;
}

.posh-author span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .posh-card {
        min-width: 85%;
        height: 480px;
    }

    .posh-track {
        padding: 0 20px;
    }
}



