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

body {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  background-color: #1e1e1e;
  color: #fff;
}

h1,
h2,
p,
nav,
a,
button {
  font-family: 'Bebas Neue', sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 3px;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #000;
    flex-direction: column;
    width: 250px;
    height: 100vh;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
  }
  #menu-toggle:checked ~ .menu {
    right: 0;
  }
  .hamburger {
    display: flex;
  }

  .product-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .product-info {
    text-align: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 50px;
}

.hero-img {
  width: 100%;
  border-radius: 10px;
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 10%;
  max-width: 400px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: #ffc900;
  padding: 10px 20px;
  border-radius: 5px;
  color: #000;
  font-size: 1.2rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-text {
    position: static;
    text-align: center;
    margin-top: 1rem;
  }
}

/* Sections */
.section {
  width: 90%;
  max-width: 1200px;
  margin: 3rem auto;
}

.section h2 {
  color: #ffc900;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.movie-card a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.movie-card {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.movie-card:hover {
  transform: translateY(-5px);
}

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

.movie-card .info {
  padding: 1rem;
  text-align: center;
}

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

.movie-card .info p {
  font-size: 0.9rem;
  color: #555;
}

/* Center and tighten product cards layout */
.flex-container,
.movie-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.contact-section {
  max-width: 600px;
  margin: 80px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-family: 'Bebas Neue', sans-serif;
}

.contact-title {
  font-size: 2rem;
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.contact-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #ffc900;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background-color: #e0b800;
}

.contact-info {
  margin-top: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  font-size: 14px;
  text-align: center;
}

.cart-item {
  display: flex;
  align-items: center;
  background: #fff;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cart-item img {
  width: 100px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 1rem;
}

#cart-total {
  margin-top: 2rem;
  text-align: right;
  font-size: 1.5rem;
}

#checkout {
  display: block;
  margin: 2rem auto;
  background-color: #398864;
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 7px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}
#checkout:hover {
  background-color: #1f4d37;
}

.about-hero {
  position: relative;
  background: url('../images/popcorn.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 3rem;
  border-radius: 10px;
  text-align: center;
}

.about-overlay h1 {
  font-size: 3rem;
  color: #ffc900;
  margin-bottom: 1rem;
}

.about-overlay p {
  font-size: 1.2rem;
  color: #fff;
}

.about-content {
  background: #1e1e1e;
  color: #fff;
  padding: 3rem 2rem;
}

.about-container {
  max-width: 800px;
  margin: auto;
}

.about-container h2 {
  font-size: 2rem;
  color: #ffc900;
  margin: 1.5rem 0 1rem;
}

.about-container p,
.about-container li {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.about-container ul {
  padding-left: 1.5rem;
}

/* Thank You Page Styling */
.thankyou-container {
  text-align: center;
  margin-top: 150px;
  font-family: 'Bebas Neue', sans-serif;
}

.thankyou-container h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffc900;
}

.thankyou-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.thankyou-container .cta-button {
  background: #ffc900;
  padding: 0.8rem 2rem;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.thankyou-container .cta-button:hover {
  background: #d4a700;
}

/* Footer */
.footer {
  background: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
  margin: 0.5rem 0;
}

.footer-left a {
  color: grey;
  margin-right: 20px;
  text-decoration: none;
}

.footer-left a:hover {
  color: white;
}

.footer-right a {
  color: grey;
  margin: 0 10px;
  font-size: 1.5rem;
}

.footer-right a:hover {
  color: white;
}

.error {
  color: red;
  margin-top: 1rem;
}

.card-actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.product-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 1rem;
}

.product-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
}

.product-info {
  flex: 1;
  color: #fff;
}

.badge {
  display: inline-block;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.product-price {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.product-price del {
  color: #999;
  margin-right: 0.5rem;
}

.product-price ins {
  color: #ffc900;
  text-decoration: none;
}

.product-description {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  color: #ccc;
}

.product-description h2 {
  color: #ffc900;
  margin-bottom: 1rem;
}

#products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
  justify-items: center;
}

.product-card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  width: 100%;
  max-width: 240px;
  text-align: center;
  color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.2rem;
}

.badge {
  display: inline-block;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.4rem;
  border-radius: 4px;
}

.price {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.price del {
  color: #999;
  margin-right: 0.4rem;
}

.price ins {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.cta-button {
  padding: 10px 20px;
  background-color: #eaeaea;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background-color: #ccc;
}

.price {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.price del {
  color: #888;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.price ins {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.badge {
  display: inline-block;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.8rem;
}

.product-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: rgb(14, 17, 20);
  color: black;
  padding: 2rem;
  border-radius: 10px;
  max-width: 1000px;
  margin: 3rem auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.product-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-price del {
  color: #888;
  margin-right: 0.5rem;
}

.product-price ins {
  color: #d10000;
  font-weight: bold;
  text-decoration: none;
}

.badge {
  background-color: red;
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.cta-button {
  background-color: #ffc900;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #e0b800;
}

.product-description {
  max-width: 1000px;
  margin: 2rem auto;
  color: white;
}

.product-description h2 {
  color: #ffc900;
  margin-bottom: 0.5rem;
}


.cart-item {
  display: flex;
  align-items: center;
  background: #333; 
  color: #fff;       
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cart-item h3,
.cart-item p {
  color: #fff; 
}
