/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===================
My style CSS
=================== */

* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, 'Noto Sans',
    'Liberation Sans', sans-serif;
  background: radial-gradient(closest-side, #72b6d4, #e0e7eb, #ffffff);
}

h1 {
  font-family: 'ivypresto-display', 'Times New Roman', Times, 'Georgia',
    'Garamond', serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #000000;
  line-height: 1.5em;
}

h2,
h3,
h4 {
  font-family: 'ivypresto-display', 'Times New Roman', Times, 'Georgia',
    'Garamond', serif;
  font-size: 1.7em;
  font-weight: 400;
  color: #000000;
  line-height: 1.2em;
}

p {
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 300;
  color: #000000;
}

ul,
li {
  line-height: 1.5em;
}

/* HEADER */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(77, 76, 76, 0.056);
  padding: 10px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.logo .logo-image {
  height: auto;
  max-width: 100px;
  max-height: 70px;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu-item {
  display: block;
  padding: 10px;
  border: 1px solid black;
  text-decoration: none;
  color: black;
  transition: color 0.3s, background-color 0.3s;
}

.menu-item:hover {
  background-color: white;
  color: #f59722;
  border-color: #f59722;
}

.hamburger-checkbox {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  height: 30px;
  width: 30px;
}

.hamburger:before,
.hamburger:after {
  background-color: black;
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  transition: all 0.3s;
}

.hamburger:before {
  top: 8px;
}

.hamburger:after {
  top: 20px;
}

.hamburger-checkbox:checked + .hamburger:before {
  transform: translateY(6px) rotate(135deg);
}

.hamburger-checkbox:checked + .hamburger:after {
  transform: translateY(-6px) rotate(-135deg);
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 60px;
    left: 0;
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: rgba(77, 76, 76, 0.056);
    padding: 4px;
    backdrop-filter: blur(10px);
    z-index: 999;
  }

  .hamburger {
    display: block;
  }

  .hamburger-checkbox:checked + .hamburger + .menu {
    display: flex;
  }
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  main {
    width: 100%;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ============
  MAIN PAGE CSS
  ============*/

/* HERO CSS */

.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.hero-content {
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero-content h1 .highlight {
  color: #054f98;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 1em;
}

/* MEDIA QUERIES*/

@media (max-width: 1024px) {
  .hero {
    height: 80vh;
    padding-left: 5%;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20% 5% 0 5%;
    height: 400px;
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 22% 5% 0 5%;
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.5em;
  }

  .hero-content p {
    font-size: 0.9em;
  }
}

/* TEAM INTO CSS */

.team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 15px;
  max-width: 1200px;
}

.team-section .content-wrapper,
.team-section {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding-bottom: 15px;
}

.video-wrapper {
  padding: 15px;
  flex: 1 1 50%;
}

.team-section h1 {
  margin: 0.5em 0 1em;
  font-size: 2.5em;
}

.team-section .roles {
  display: flex;
  justify-content: space-between;
  margin: 1em 0;
}

.team-section .roles .role h2 {
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

.team-section .roles .role p {
  display: flex;
  align-items: center;
}

.team-section .roles .role p .studio-icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.team-section .button {
  display: inline-block;
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  text-transform: uppercase;
  border: 2px solid black;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.team-section .button:hover {
  color: white;
  background-color: #f59722;
  font-weight: bold;
}

.team-section .video-wrapper iframe {
  width: 100%;
  border-radius: 10px;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .team-section .content-wrapper,
  .team-section .video-wrapper {
    flex-basis: 100%;
    max-width: none;
  }

  .team-section .roles {
    flex-direction: column;
  }

  .team-section .roles .role p .studio-icon {
    width: 18px;
    height: 18px;
  }
  .team-section h1 {
    font-size: 1.5em;
  }
}

/* SCHEDULE CSS */

.schedule-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 1200px;
}

.schedule-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.schedule-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.schedule-section__movie-image img {
  max-width: 100%;
  border-radius: 10px;
  height: auto;
}

.schedule-section__details {
  padding-left: 20px;
  color: #ffffff;
}

.schedule-section__details > h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.schedule-section__details > p {
  font-size: 1rem;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .schedule-section {
    flex-direction: column-reverse;
    padding: 20px;
  }

  .schedule-section__details {
    padding: 0 0 20px;
  }
}

/* CAST AND CREW CSS */

.cast-crew-section {
  text-align: center;
  padding: 2em 0;
  max-width: 1200px;
}

.cast-crew-section > h2 {
  font-size: 2.5rem;
  margin-bottom: 1em;
}

.cast-crew-section > p {
  font-size: 1.1rem;
  margin-bottom: 3em;
}

.cast-crew-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}

.cast-crew-member {
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.5s;
}

.cast-crew-member:hover {
  transform: scale(1.05);
}

.cast-crew-member > .member-photo {
  margin-bottom: 1em;
}

.member-photo > img {
  max-width: 100%;
  height: auto;
  border-radius: 80%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.cast-crew-member > h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cast-crew-member > .member-role,
.cast-crew-member > .member-info {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* MEDIA QUERIES */

@media (max-width: 900px) {
  .cast-crew-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .cast-crew-member {
    margin: 10px;
  }

  .member-photo > img {
    max-width: 80%;
  }
}

@media (max-width: 786px) {
  .cast-crew-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .cast-crew-member {
    margin: 10px;
  }

  .member-photo > img {
    max-width: 75%;
  }

  .cast-crew-member > h3,
  .cast-crew-member > .member-role,
  .cast-crew-member > .member-info {
    font-size: 0.85rem;
  }
  .schedule-section__details h2 {
    font-size: 1.5em;
  }

  .cast-crew-section h2 {
    font-size: 1.5em;
  }
}

/* GENESIS INFO CSS */

.genesis-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url('images/genesisintro.jpg') center no-repeat;
  background-size: cover;
  background-blend-mode: darken;
  z-index: 1;
  margin-top: 20px;
}

.genesis-overlay > .genesis-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  position: relative;
  z-index: 2;
}
.genesis-overlay p {
  color: white;
}

.genesis-overlay > .genesis-content > hr {
  border: none;
  height: 4px;
  background: linear-gradient(to right, #f59722 50%, white 50%);
  margin-bottom: 30px;
}

.genesis-overlay > .genesis-content > h1 {
  color: #f59722;
  margin-bottom: 15px;
}

.genesis-overlay > .genesis-content > div {
  border-left: 3px solid #f59722;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
  .genesis-overlay > .genesis-content {
    padding: 50px 10px;
  }
}

@media (max-width: 768px) {
  .genesis-overlay > .genesis-content {
    padding: 20px 10px;
  }

  .genesis-overlay > .genesis-content > h1,
  .genesis-overlay > .genesis-content > section {
    font-size: 1.5rem;
  }
}

/* =============
  VENUE PAGE CSS
   =============*/

/* VENUE HERO CSS */

.venue-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  height: 25vh;
}

.venue-hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.venue-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.venue-hero-content h1 {
  padding-top: 30px;
}

.venue-hero-content p {
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  .venue-hero-content h1 {
    font-size: 2em;
  }
  .venue-hero {
    height: 20vh;
  }
}

/* CINEMA BOOKING CSS */

.cinema-booking-container {
  padding: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.age-restriction {
  background: #219105;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 14px;
}

.cinema-booking-header p {
  margin-bottom: 20px;
}

.date-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.date {
  padding: 10px 15px;
  margin: 0 5px;
  background: transparent;
  border: 1px solid #000000;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.date.active,
.date:hover {
  background: white;
  color: #f59722;
  border-color: #f59722;
}

.showtimes h2 {
  margin-bottom: 15px;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.time-slot {
  background: transparent;
  border: 1px solid black;
  padding: 15px;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.time-slot:hover {
  background: white;
  color: #f59722;
  border-color: #f59722;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .date-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .date {
    flex: 0 30%;
    margin-bottom: 10px;
    width: auto;
  }

  .time-slots {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .time-slot {
    flex: 0 48%;
    margin-bottom: 10px;
  }
  .cinema-booking-container h1,
  h2 {
    font-size: 1.5em;
  }
}

/* FLIM PROMO CARD CSS */
.promo-wrapper {
  display: flex;
  justify-content: center;
}

.promo-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  padding: 15px;
}

.poster {
  flex: 0 0 300px;
  background: url('images/poster.jpg') center no-repeat;
  background-size: contain;
  height: 350px;
}

.promo-content {
  flex: 1;
}

.promo-details {
  margin-bottom: 10px;
}

.info {
  color: #000000;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .poster {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .promo-section {
    flex-direction: column;
  }

  .poster {
    flex-basis: auto;
    width: 80%;
    margin-bottom: 15px;
  }

  .promo-content {
    width: 100%;
  }
  .promo-wrapper h1 {
    font-size: 1.5em;
  }
}

/* TICKET INFORMATION */

.ticket-info {
  margin: 0;
}

.ticket-pricing {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
}
.day {
  padding: 10px;
}

.day h3 {
  margin-bottom: 5px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 5px;
}

.buy-ticket {
  background-color: white;
  color: black;
  border: 1px solid black;
  padding: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: left;
}

.buy-ticket:hover {
  font-weight: bold;
  color: white;
  background-color: #f59722;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .ticket-info {
    padding: 10px;
  }
  .buy-ticket {
    padding: 5px;
    font-size: 1.2em;
  }
  .ticket-info h1 {
    font-size: 1.5em;
  }
  .ticket-info h2,
  h3 {
    font-size: 1em;
  }
  .ticket-pricing {
    padding: 5px;
  }
}

/* CONTACT INFORMATION CSS */

.contact-cinema {
  margin: 0 auto;
  max-width: 800px;
}

.address p {
  margin: 0;
  padding: 0.5em 0;
}
.address a {
  color: #000000;
  text-decoration: none;
}
.map {
  position: relative;
  overflow: hidden;
  padding-bottom: 50%;
  margin: 20px;
  background: #000;
  border-radius: 10px;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .contact-cinema {
    width: auto;
    padding: 0 20px;
  }
  .contact-cinema h1 {
    font-size: 1.5em;
  }
  .map {
    margin-top: 10px;
  }
}

/* =============
  REVIEW PAGE CSS
  =============*/

.review-container {
  width: 80%;
  margin: 0 auto;
  margin-top: 80px;
  max-width: 1200px;
}
.review-breadcrumb {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #555;
}
.review-headline {
  font-size: 2.5rem;
  margin: 2rem 0;
}
.review-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.review-share-icons {
  font-size: 0;
}
.review-share-icons a {
  margin-right: 10px;
  color: black;
  text-decoration: none;
}
.review-share-icons img {
  width: 24px;
  height: 24px;
}
.review-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  margin: 2rem 0;
}
.review-main-image img {
  max-width: 100%;
  height: auto;
}
.review-content {
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}
.review-author-box {
  border-top: 1px solid #ccc;
  padding-top: 1rem;
}
.review-author-name {
  font-size: 1.5em;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .review-container {
    width: 95%;
  }
  .review-headline {
    font-size: 1.5rem;
  }
  .review-main-image {
    height: 150px;
    margin: 1rem 0;
  }
  .review-main-image img {
    height: auto;
  }
  .review-share-icons img {
    width: 20px;
    height: 20px;
  }
  .review-author-box h2,
  p {
    font-size: 0.8rem;
  }
}

/* PEOPLE REVIEW CSS */

.people-reviews-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.people-reviews-header {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.people-reviews-subheader {
  color: #666;
  margin-bottom: 2em;
}
.people-review {
  display: inline-block;
  width: 30%;
  margin: 0 1.5%;
  vertical-align: top;
}
.people-review-stars {
  color: #f5b50a;
  margin: 10px 0;
}
.people-review-content {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}
.people-review h3 {
  font-weight: bold;
}
.people-reviewer-role {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
.people-reviewer-image img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .people-review {
    width: 90%;
    margin: 0 auto 30px;
  }
  .people-reviews-header {
    font-size: 1.5em;
  }
}

/* MOMENTS CSS */

.moments-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.moments-header {
  font-size: 2rem;
  margin-bottom: 0.5em;
  text-align: center;
}
.moments-description {
  color: #666;
  margin-bottom: 2em;
  text-align: center;
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.moment {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.moment img {
  width: 100%;
  height: auto;
  display: block;
}
.moment-large {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.moment-small {
  grid-column: span 1;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .moments-grid {
    grid-template-columns: 1fr;
  }
  .moment-large,
  .moment-small {
    grid-column: auto;
  }
  .moment img {
    height: auto;
  }
  .moments-header {
    font-size: 1.5em;
  }
}

/* ============
  FOTOTER CSS
  ============*/

.site-footer {
  background: #010102;
  padding: 20px 0;
}

.footer-logo {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}

.responsive-logo {
  width: 100%;
  height: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  margin-bottom: 20px;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 15px;
  padding: 0 10px;
  color: white;
}

.footer-nav {
  margin-bottom: 15px;
}

.footer-nav a {
  display: inline-block;
  margin-right: 10px;
  padding: 5px 0;
  text-decoration: none;
  color: #fff;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.subscribe-form input,
.subscribe-form button {
  padding: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  border-top: 1px solid #ccc;
  margin-top: 20px;
}

.legal-links a {
  margin-right: 10px;
  padding: 5px 0;
  text-decoration: none;
  color: #fff;
}
.copyright p {
  color: #fff;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .footer-content,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav,
  .legal-links {
    margin-bottom: 20px;
  }

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

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
    margin: 5px 0;
  }
}
