/* =========================
   CUSTOM FONT
========================= */
@font-face {
    font-family: 'Grunge';
    src: url('fonts/GRUNGE.TTF') format('truetype');
}
@font-face {
    font-family: 'Rosehot';
    src: url('fonts/Rosehot.ttf') format('opentype');
}
/* =========================
   GLOBAL STYLE
========================= */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Charme', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    letter-spacing: 3px;
}

.navbar-toggler {
    color: white;
    font-size: 28px;
    border: none;
}
.collapse {
    z-index: 999;
}

.navbar-toggler-icon {
    filter: invert(1);
}
/* =========================
   HERO SECTION (VIDEO)
========================= */
.hero {
    height: 60vh !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
}

.hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 1 !important;
}

.hero-content {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;

    color: white !important;
}

.bg-video {
  position: fixed;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* stays behind everything */
}


.hero-video {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.grid-video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.grid-video:hover {
    filter: blur(8px);
    transform: scale(1.05);
    opacity: 0.8;
}

grid-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .grid-img {
        height: 200px;
    }
}

.grid-img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    transition: 0.4s ease;
}

.grid-img:hover {
    filter: blur(10px);
    transform: scale(1.05);
}
/* Hero text styling */
.hero h1 {
    font-weight: 300;
    letter-spacing: 6px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    font-family: 'Rosehot', sans-serif;
   
}


.hero p {
    font-family: 'Grunge', sans-serif;
}

/* =========================
   CARDS
========================= */
.card {
    border: none;
    transition: 0.3s;
}

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

/* Card images */
.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* =========================
   IMAGE GRID (hover effect)
========================= */
.image-card {
    position: relative;
    display: block;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Blur on hover */
.image-card:hover img {
    filter: blur(4px);
    transform: scale(1.05);
}

/* Overlay text */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: 0.4s ease;
}

.image-card:hover .overlay-text {
    opacity: 1;
}

.img-box {
    position: relative;
    overflow: hidden;
}

/* image */
.img-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* text overlay */
.img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}

.row {
  row-gap: 60px;     /* vertical space */
}

/* BUTTON */
button {
    background: linear-gradient(135deg, #686165, hsl(282, 10%, 81%));
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

button:hover {
    box-shadow: 0 0 15px rgba(99, 92, 96, 0.6);
    transform: scale(1.05);
}

.hero-content button {
    background: linear-gradient(45deg, #686165, hsl(282, 10%, 81%) );
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.hero-content button:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
  .runway-container {
    grid-template-columns: 1fr;
  }
}

.runway-container {
  display: flex;
  flex-direction: column;
}

/* Each section */
.runway-item {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video */
.runway-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for readability */
.runway-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* Text ON TOP of video */
.runway-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  text-align: center;
  color: white;
  z-index: 2;
}

.runway-text h2 {
  font-size: 3rem;
  letter-spacing: 4px;
  margin: 0;
}

.runway-text p {
  font-size: 1rem;
  color: #ccc;
}
/* =========================
   FOOTER
========================= */
footer {
    border-top: 1px solid #222;
}

/* Cart Page Styling */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-box {
    background-color: #111;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.6s ease;

}

/* Cart items */
.list-group-item {
    background-color: transparent !important;
    border: 1px solid #333 !important;
    color: white !important;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

/* Hover effect */
.list-group-item:hover {
    background-color: #1a1a1a !important;
}

/* Remove button */
.list-group-item button {
    border-radius: 8px;
    font-size: 12px;
}

/* Buttons */
.btn-outline-light {
    border-radius: 12px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: black;
}

/* =========================
   ARCHIVE / INTERVIEWS STYLE
========================= */

.archive {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

/* Year headings */
.year {
    text-align: center;
    font-size: 20px;
    letter-spacing: 4px;
    margin: 80px 0 60px;
}

/* Grid for 2-column layout */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 120px;
}

/* Each entry */
.entry {
    max-width: 500px;
}

/* Text styles */
.source {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.author {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.date {
    font-size: 11px;
    letter-spacing: 2px;
}

/* Make everything uppercase like your screenshot */
.archive p {
    text-transform: uppercase;
}

/* Mobile fix */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
