@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alkatra&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Vertical Scrollbar Styling :) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgb(0, 0, 0);
  /* background: none; */
}

::-webkit-scrollbar-thumb {
  /* background-color: rgb(255, 0, 0); */
  background: linear-gradient(135deg, rgb(78, 205, 196), rgb(255, 107, 107));
  border-radius: 4px;
  border: 1px solid rgb(78, 205, 196);
  transition: 0.3s ease-in-out !important;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgb(255, 107, 107), rgb(78, 205, 196));
}

#progress-container {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 99990;
  /* background: #f3f3f3; */
}

#progress-bar {
  height: 53%;
  width: 0;
  background: linear-gradient(90deg,
      rgb(78, 205, 196) 0%,
      rgb(255, 107, 107) 50%,
      rgb(78, 205, 196) 100%);
  box-shadow: 0 0 4px rgba(78, 205, 196, 0.7), 0 0 10px rgba(255, 107, 107, 0.7);
  transition: width 0.09s ease-in-out;
  border-radius: 10px;
}

.DoAnimation {
  /* position: relative; */
  animation-name: Cinematicuni;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}

@keyframes Cinematicuni {
  from {
    transform: translateX(-450px);
  }

  to {
    transform: translateX(0px);
  }
}

/* Left Side Nav */
.logo {
  width: 40%;
  margin: 6px 80px 6px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ironmask {
  cursor: pointer;
}

#ironlogo {
  margin-left: 80px;

  animation: glow 5s infinite alternate;
  border-radius: 100px;
  /* top: 0px; */
}

.logo img {
  max-width: 75px;
  border: 3px solid white;
  border-radius: 50%;
  padding: 5px;
  margin: 20px 0px;
  animation: glow 5s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px -8px #6a0a0a;
  }

  to {
    box-shadow: 0 0 10px 8px #7b0a0a;
  }
}

/* Main Nav */
.navbar {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

.background {
  background: rgba(0, 0, 0, 0.8) url(assets/bg3.jpg);
  background-size: cover;
  background-blend-mode: darken;
}

.background1 {
  background: rgb(0, 0, 0, 0.5) url(assets/bg3.jpg);
  background-size: cover;
  background-blend-mode: darken;
}

.nav-list {
  width: 75%;
  display: flex;
  align-items: center;
  margin-right: 75px;
}

.nav-list li {
  list-style: none;
  padding: 5px 10px;
  font-size: 18px;
  margin: 0px 5px;
}

.nav-list li a {
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  font-family: "Alkatra", cursive;
  transition: all 1s ease;
  transition-duration: 0.5s;
  /* transition: color 0.3s ease, text-shadow 0.4s ease-in-out; */
}

.nav-list li a:hover {
  padding-right: 5px;
  padding-left: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: rgb(78, 205, 196);
  text-decoration: none;
  font-size: 1.6rem;
}

/* Right Nav */
.rightNav {
  width: 40%;
  text-align: right;
  padding: 0px 23px;
}

.rightNav button {
  color: black;
  border: none;
  background-color: rgb(78, 205, 196);
  margin-bottom: 10px;
}

.search-bar {
  margin-left: 90px;
  width: 300px;
  height: 40px;
  max-width: 600px;
  display: flex;
  align-items: center;
  background-color: #414141 !important;
  background-color: white;
  border-radius: 60px;
  padding: 5px 10px;
}

.search-bar input {
  background: transparent;
  font-family: "Alkatra", cursive;
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  align-items: center;
  padding-left: 25px;
  color: rgb(78, 205, 196);
  margin-top: 3px;
}

::placeholder,
.email-input {
  color: rgb(249, 246, 246);
}

.search-bar button {
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 9px;
  margin-right: 7px;
}

.search-bar button:hover {
  transform: scale(1.1);
}

.box-main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 50%;
  margin: auto;
  height: 80%;
}

a:link,
a:visited {
  color: rgb(226, 96, 10);
}

/* Hero Section */
/* First Section Styling */
.firstSection {
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("assets/bg3.jpg");
  background-size: cover;
  padding-left: 50px;
}

.box-main {
  display: flex;
  max-width: 90%;
  height: auto;
  margin: auto;
  align-items: center;
}

/* Image Styling */
.firstHalf {
  flex: 0.7;
}

.ironman-illustration {
  width: 100%;
  height: auto;
  animation: IronImage 2s ease forwards,
    float 1.5s ease-in-out infinite alternate;
}

/* Text Content Styling */
.secondHalf {
  flex: 1;
  color: #fff;
  padding-left: 30px;
  animation: float 1.5s ease-in-out infinite alternate;
}

.txt-big {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
  text-shadow: rgba(78, 205, 196, 0.849) 1px 0 10px !important;
}

.txt-small {
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  padding-right: 100px;
  margin-bottom: 30px;
  text-shadow: rgba(255, 0, 195, 0.849) 1px 0 10px !important;
}

/* Button Styling */
.buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-invert {
  background: #ffffff;
  color: #4ecdc4;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  width: 145px;
  box-shadow: 0 0 4px #4ecdc4, 0 0 8px #4ecdc4, 0 0 12px #4ecdc4, 0 0 16px #4ecdc4;
}

.btn-invert:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-size: 20px;
  left: 100%;
  box-shadow: 0 0 12px whitesmoke, 0 0 24px whitesmoke, 0 0 36px whitesmoke,
    0 0 48px whitesmoke;
}

.btn-transparent {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  width: 160px;
}

.btn-transparent:hover {
  background: #ffffff;
  color: #4ecdc4;
}

@keyframes IronImage {
  from {
    transform: translateX(0px);
  }

  to {
    transform: translateX(450px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.text-big {
  font-size: 35px;
  font-family: "Roboto", cursive;
  margin-right: 100px;
  text-shadow: rgba(78, 205, 196, 0.849) 1px 0 10px !important;
}

.text-small {
  font-size: 20px;
  font-family: "Roboto", cursive;
  margin-right: 100px;
  text-shadow: rgba(255, 0, 195, 0.849) 1px 0 10px !important;
}

.section {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  margin: auto;
  height: 80%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.sec {
  background-image: url("assets/bg3.jpg");
  background-repeat: none;
  color: white;
  background-size: auto;
}

.left {
  flex-direction: row-reverse;
  height: 80%;
  width: 80%;
}

.imgFluid {
  width: 300px;
  /* border: 3px solid rgb(0, 104, 113); */
  border-radius: 10px;
  z-index: -1;
  box-shadow: 10px 5px 125px rgba(255, 255, 255, 0.423);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.imgFluid:hover {
  transform: scale(1.03) translateY(-2px);
  cursor: pointer;
  z-index: -1;
  box-shadow: 10px 5px 125px rgba(255, 0, 0, 0.6);
}

.paras {
  padding: 0px 60px;
  margin-left: 50px;
  text-align: justify;
}

.sectionTag {
  padding-bottom: 10px;
}

.sectionSubTag {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  text-shadow: rgba(245, 131, 255, 0.54) 1px 0 10px !important;
}

/* General Styling for Contact Section */
.contact {
  background: rgba(0, 0, 0, 0.8) url(contact3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 5%;
  color: white;
}

.contact p {
  text-align: center;
  font-size: 18px;
  margin: 1% 3%;
  line-height: 1.5;
}

.text-center {
  text-align: center;
  padding: 30px 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
}

.form {
  max-width: 500px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 20px rgba(244, 2, 2, 0.795), 0 0 30px rgba(237, 20, 4, 0.866);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.form input,
.form textarea {
  width: 100%;
  max-width: 450px;
  height: 40px;
  margin-bottom: 15px;
  padding: 10px;
  color: white;
  background-color: rgba(255, 185, 185, 0);
  border: none;
  border-bottom: 3px solid rgb(255, 226, 226);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form textarea {
  height: 80px;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom: 3px solid #b71c1c;
}

/* Drop down menu phone code */

.country-input-group {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 450px;
}

.country-select {
  width: 19%;
  height: 35px;
  padding: 5px;
  color: black;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.country-select:focus {
  outline: none;
  border: 2px solid #b71c1c;
}

.country-select option {
  padding: 10px;
}

/* Button Styling */

.submit-btn,
.subscribe-btn
{
  padding: 12px 25px;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(135deg,
      rgba(237, 20, 4, 0.8),
      rgba(200, 0, 0, 0.6));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-size: 16px;
}

.submit-btn:hover,
.subscribe-btn:hover
{
  transform: scale(1.05);
  box-shadow: 0 3px 15px rgba(244, 2, 2, 0.9), 0 0 30px rgba(237, 20, 4, 0.95);
  background: linear-gradient(135deg,
      rgba(255, 0, 0, 0.9),
      rgba(237, 20, 4, 0.8));
}

/* Footer */
.footer {
  padding: 5rem 1rem;
  position: relative;
  display: grid;
  grid-template-columns: 400px repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.footer-col {
  margin-left: 0px;
  text-align: left;
}

.footer-col img {
  width: 5rem;
  height: 5rem;
  position: relative;
  top: -20px;
  text-align: left;
}

.movie-cards-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

/* Styling for each movie card */
.movie-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 30%;
  margin: 20px 0;
  padding: 10px;
  text-align: center;
}

/* Movie image inside card */
.movie-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Movie title below the image */
.movie-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

.visitor-counter {
  position: absolute;
  background-color: #801111;
  color: rgb(235, 213, 14);
  top: 85px;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  font-family: Arial, sans-serif;
  margin-left: 190px;
  z-index: 10;
}

.visitor-counter .icon {
  margin-right: 10px;
}

.footer-p {
  opacity: 0.7;
  margin-bottom: 1.3rem;
  height: fit-content;
  width: 66%;
  margin-left: 80px;
  right: 50px;
}

.footer-social {
  display: flex;
  align-items: center;
  margin-left: 5rem;
}

.footer-social i {
  color: white;
  font-size: 1.25rem;
  margin-right: 1rem;
  opacity: 0.7;
  border: 2px solid white;
  border-radius: 13px;
  padding: 0.5rem;
  transition: all 1s ease;
  transition-duration: 0.5s;
}

.footer-social i:hover {
  opacity: 1;
  background-color: rgb(238, 10, 10);
  border-radius: 22px;
  border-style: dotted;
  font-size: 1.27rem;
}

.h46 {
  margin-bottom: 2rem;
  font-size: 20px;
  font-weight: 500;
  color: white;
  transition: all 1s ease;
  transition-duration: 0.4s;
  margin-left: 50px;
}

.h46:hover {
  font-size: 21px;
  color: #ee1919;
}

.footer-col-main a {
  display: block;
  font-size: 15px;
  margin-bottom: 1rem;
  color: white;
  margin-left: 50px;
  opacity: 0.7;
  text-decoration: none;
  transition-duration: 0.4s;
  margin-left: 50px;
}

.footer-col-main a:hover {
  color: #e61d1d;
}

ironlogo .footer-col-main {
  background-color: #1da1f2;
  text-align: left;
}

.footer background {
  background-color: #1da1f2;
}

.footer-bar {
  text-align: center;
  margin: auto;
  font-size: 1rem;

  .mygithub {
    color: white;
    text-decoration: none;
    text-shadow: rgba(255, 0, 144, 0.629) 1px 0 6px;
  }
}

.footer-bar p span {
  color: #d12323;
}

.footer-bar p {
  position: relative;
  top: -60px;
}

/* Hamburger Menu */
.burger {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 15px;
}

.line {
  width: 33px;
  background-color: white;
  height: 4px;
  margin: 5px 3px;
}

/* Footer */
.mygithub {
  color: white;
  text-decoration: none;
  text-shadow: rgba(255, 0, 144, 0.629) 1px 0 6px;
}

.active {
  color: rgb(247, 242, 242);
}

/*Added SOCIAL- Media icons */
.footer-list {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  background-color: rgb(0, 0, 0);
}

.footer-list ul {
  list-style: none;
}

.footer-list h3 {
  font-size: 20px;
  color: white;

  margin-top: 50px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.5rem;
  margin-top: 20px;
}

/* Social Media Icons */
.social-icons a {
  font-size: 0.5rem;
  transition: all 0.3s ease;
}

/* Hover effects for social media icons */
.social-icons a:hover {
  transform: translateY(-5px);
}

/* Specific hover colors for different social media platforms */
.social-icons .fa-facebook:hover {
  color: #3b5998;
}

.social-icons .fa-twitter:hover {
  color: #1da1f2;
}

.social-icons .fa-instagram:hover {
  color: #e1306c;
}

.social-icons .fa-linkedin:hover {
  color: #0077b5;
}

.social-icons .fa-github:hover {
  color: #6e5494;
}

/* Ensure navbar has fixed position */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Add margin-top to push the section down below the navbar */
#home {
  margin-top: 80px;
  text-align: center;
}

/* Styling for movie headings */
.movies-heading {
  margin-top: 70px;
  font-size: 2.5rem;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  text-align: center;
  color: white;
}

.ironman-image {
  width: 160px;
  height: auto;
  vertical-align: middle;
  margin: 0 30px;
}

.movies-heading img {
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

/* General body and background */
body {
  font-family: Arial, sans-serif;
  color: #fff;
  /* Keep text color white for visibility */
}

/* Background section should remain the same */
.background1 {
  padding: 0.1px;
}

/* Movie Cards Section */
.movie-cards-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

.movie-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 30%;
  margin: 20px 0;
  padding: 10px;
  text-align: center;
}

/* Movie image inside card */
.movie-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Movie title below the image */
.movie-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

h1,
h2 {
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

.imdb-rating {
  margin-left: 20px;
}

.imdd-rating {
  font-size: 15px;
  margin-left: 20px;
}

/* Back to Top button style */
#BacktoTop {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: rgb(170, 5, 5);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1.5s, visibility 1.5s, box-shadow 0.3s ease;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #262626,
    0 0 6px 2px rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.circle1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#BacktoTop:hover {
  background-color: rgb(106, 12, 11);
  transform: scale(1.1);
}

#BacktoTop svg {
  fill: #b4a933;
  transition: fill 0.3s ease-in-out;
}

#BacktoTop:hover svg {
  fill: #ffd700;
}

#BacktoTop {
  animation: glow 5s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #262626, 0 0 6px 2px rgba(255, 255, 255, 0.2), 0 0 5px -8px #6a0a0a;
  }

  to {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #262626, 0 0 6px 2px rgba(255, 255, 255, 0.2), 0 0 10px 8px #7b0a0a;
  }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#fun-fact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#fun-fact-content {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #222;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

#fun-fact-message {
  font-size: 1.2em;
  margin-bottom: 15px;
}

#fun-fact-ok-button {
  padding: 10px 20px;
  background-color: #ff3333;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

#fun-fact-ok-button:hover {
  background-color: #ff5555;
}

.nav-list li .active-header {
  color: rgb(78, 205, 196);
  text-decoration: underline;
}

/* Responsiveness ^_^ */
@media only screen and (max-width: 1020px) {
  .logo img {
    max-width: 100px;
    border: 3px solid white;
    border-radius: 50%;
    padding: 5px;
    margin: 20px 0px;
    animation: glow 5s infinite alternate;
  }

  @keyframes glow {
    from {
      box-shadow: 0 0 5px -8px #6a0a0a;
    }

    to {
      box-shadow: 0 0 10px 8px #7b0a0a;
    }
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    margin-right: 0px;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    transition: all 0.7s ease-out;
    height: 480px;
  }

  .rightNav {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #search {
    width: 300px;
    padding: 8px;
    margin-bottom: 10px;
    text-align: center;
  }

  .btn {
    width: 100px;
  }

  .secondHalf img {
    width: 100%;
    margin: 15px 0;
  }

  .burger {
    display: block;
  }

  .h-nav {
    height: 85px;
  }

  .visibility {
    visibility: hidden;
  }

  .box-main {
    max-width: 100%;
    flex-direction: column-reverse;
    align-items: center;
  }

  .section {
    flex-direction: column-reverse;
    align-items: center;
  }

  .text-small,
  .text-big,
  .btn {
    text-align: center;
    margin: 0 auto;
  }

  .paras {
    padding: 0px;
    text-align: center;
    margin: 0 auto;
  }

  .buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .firstHalf {
    margin-bottom: 20px;
  }

  .text-big {
    margin-bottom: 15px;
  }

  .text-small {
    margin-bottom: 0px;
  }

  .buttons .btn {
    margin: 0 15px;
    padding: 10px 15px;
  }

  .thumbnail {
    text-align: center;
    margin: 20px 0;
  }

  .thumbnail img,
  .firstHalf img {
    border: 5px solid white;
    box-sizing: border-box;
    max-width: 100%;
    display: inline-block;
    margin: 0 auto;
  }

  .search-bar {
    margin-left: 0px;
  }

  .logo a {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .buttons {
    margin-bottom: 25px;
  }

  .ironman-illustration {
    width: 90%;
  }

  .subscribe-btn{
    width: auto;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }

  .footer-col-main {
    margin-top: 1rem;
  }

  .footer-img {
    margin-left: -30px;
    margin-right: 200px;
  }

  .footer-p {
    margin-left: 50px;
  }

  .footer-social {
    justify-content: center;
    margin-left: 20px;
  }

  .footer-col img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .footer-bar p {
    font-size: 0.8rem;
    top: 0;
    padding: 1rem 3rem;
  }
}


@media (max-width: 600px) {
  .txt-big {
    font-size: 35px;
    margin-left: 1rem;
  }

  .txt-small {
    margin-left: 1rem;
  }

  .secondHalf {
    padding-left: 0;
  }

  .buttons {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .buttons .btn {
    margin: 0 !important;
    padding: 10px 15px;
  }

  .firstHalf {
    display: flex;
    justify-content: center;
  }

  .ironman-illustration {
    width: 80%;
  }

  .movie-cards-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  /* Styling for each movie card */
  .movie-card {
    width: 100%;
    height: auto;
  }

  .movie-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .movie-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
  }

  .visitor-counter {
    margin-left: 170px;
    top: 30px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    text-align: center;
  }

  .footer-col,
  .footer-col-main {
    margin: 0 auto;
  }

  .footer-img {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  #ironlogo {
    margin-left: 0;
  }

  .footer-p {
    width: 90%;
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
    gap: 0.5rem;
    margin-left: 0;
    margin-top: 1rem;
  }

  .footer-social i {
    font-size: 1rem;
    padding: 0.4rem;
  }

  .h46 {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .footer-col-main a {
    margin-left: 0;
    margin-bottom: 0.25rem;
  }

  .footer-bar p {
    font-size: 0.8rem;
    top: 0;
    padding: 1rem 3rem;
  }
}