body {
  margin: 0;
  background: #000;
  color: white;
  font-family: 'Catorze';
}
@font-face {
    font-family: 'Catorze';
    src: url("../fonts/catorze27style1_semibold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* HERO VIDEO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
	font-family: 'Catorze';
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
	font-family: 'Catorze';
}

.hero h1 {
  font-family: 'Catorze';
  font-size: 90px;
  letter-spacing: 3px;
}

.hero p {
  font-size: 25px;
  opacity: 0.8;
	font-family: 'Catorze';
}

/* FADE SECTIONS */
.fade-section {
  padding: 100px 0px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* ALBUM GRID */
.albums {
  display: flex;
  flex-wrap: wrap;
}

.album {
  width: 33.33%;
  position: relative;
  overflow: hidden;
}

.album img {
  width: 100%;
  transition: transform 0.5s;
}

.album:hover img {
  transform: scale(1.1);
}

.album-overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  background: rgba(0,0,0,0.7);
  width: 100%;
}

/* AUDIO */
.audio {
  text-align: center;
  padding: 80px 20px;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 12px;
  border: none;
}

button {
  padding: 12px;
  background: white;
  color: black;
  cursor: pointer;
}
/* NAV BAR */
.nav {
  position: fixed;
  top: 0;
  width: 98%;
  padding: 15px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 1000;
  background: rgba(0,0,0,0.25);
}

/* LOGO */
.logo {
  font-size: 18px;
  letter-spacing: 3px;
  color: white;
}

/* MENU WRAPPER (DESKTOP) */
.menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* CENTER MENU */
.nav-center {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-center a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.nav-center a:hover {
  opacity: 1;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ICONS */
.icon {
  text-decoration: none;
  font-size: 18px;
  color: white;
}

/* CTA */
.cta-btn {
  border: 1px solid #d4af37;
  padding: 3px 3px 3px 3px;
  text-decoration: none;
  color: #d4af37;
  font-size: 16px;
  letter-spacing: 2px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  margin: 4px 50px 0px 0px;
}

/* ========================= */
/* MOBILE FIX */
/* ========================= */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  /* HIDE MENU BY DEFAULT */
  .menu {
    position: absolute;
    top: 50px;
    left: 0;
	right: 0;
    width: 100%;

    background: rgba(0,0,0,0.95);

    flex-direction:column;
    align-items: center;
    gap: 30px;

    padding: 0px 0px 20px 0px;

    display: none;
  }

  /* SHOW WHEN ACTIVE */
  .menu.active {
    display: flex;
  }

  .nav-center {
    flex-direction: column;
    align-items:center;
	margin: 50px 0px 0px -35px;
  }

  .nav-right {
    flex-direction: column;
  }
}
  .nav-center a {
    font-size: 18px;   /* 👈 increase this to whatever you want */
    padding: 10px 0;   /* 👈 gives better tap spacing */
	  font-weight: 700;
  }

  .cta-btn {
    font-size: 18px;
	  text-align: center;
  }

  .icon {
    font-size: 20px;
  }
@media (max-width: 768px) {

  /* STACK ALBUMS VERTICALLY */
  .albums {
    flex-direction: column;
  }

  .album {
    width: 100%;
  }

  /* REMOVE OVERLAY COMPLETELY */
  .album-overlay {
    display: none;
  }

  /* MAKE IMAGES CLEAN + CLICKABLE */
  .album img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* OPTIONAL: remove hover zoom on mobile */
  .album:hover img {
    transform: none;
  }

}
/* VIDEOS */
.videos {
  padding: 80px 20px;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.video-grid iframe {
  width: 100%;
  height: 250px;
}

/* MOVIES */
.movies {
  padding: 80px 20px;
  text-align: center;
  font-size: 25px;
}

.movie {
  margin-bottom: 30px;
	
}

/* LINKS */
.links {
  padding: 80px 20px;
  text-align: center;
  font-size: 25px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-list a {
  color: #d4af37;
  text-decoration: none;
  font-size: 25px;
}

.booking {
  margin-top: 20px;
  font-size: 25px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-grid iframe {
    height: 200px;
  }
}
/* MOVIE POSTERS */
.poster-row {
  display:inline;
  gap: 3px;
  margin-top: 40px;
  justify-content: center;
}

.poster-row img {
	width: 33%;
}

/* MOBILE */
@media (max-width: 768px) {
  .poster-row {
    flex-direction: column;
  }

  .poster-row img {
	  width: 100%;
  }
}
.imdb-card{
    width:300px;
    background:#111;
    color:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
}

.imdb-card img{
    width:100%;
    border-radius:8px;
}

.imdb-card a{
    color:gold;
    text-decoration:none;
    font-weight:bold;
	font-size: 30px;
}
/* SECTION CONTAINER */
.media-section{
    display:flex;

    justify-content:center;
    align-items:center;

    gap:40px;

    width:90%;

    padding:60px 20px;

    flex-wrap:wrap;
}

/* IMDb CARD */
.imdb-card{
    width:320px;

    background:#111;

    color:white;

    padding:20px;

    border-radius:12px;

    text-align:center;
}



/* VIDEO */
.video-box iframe{
    width:800px;
    height:500px;

    max-width:100%;

    border-radius:12px;
}