.header {
  width: 100%;
  background-color: #1d3444;
}
.header .header-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 1.5rem;
}
.header .logo-website {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header .logo-website:hover {
  color: #D4AF37;
}
.header .change-language {
  position: relative;
  margin-left: auto;
}
.header .change-language .language-toggle,
.header .change-language .language-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header .change-language .language-toggle:hover,
.header .change-language .language-close:hover {
  color: #D4AF37;
}
.header .change-language .language-close {
  display: none;
}
.header .change-language .language-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  flex-direction: column;
  min-width: 180px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 200;
}
.header .change-language .language-menu.active {
  display: flex;
}
.header .change-language .language-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #1d3444;
  text-decoration: none;
}
.header .change-language .language-menu a img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}
.header .change-language .language-menu a:hover {
  background: #f5f5f5;
}
.header .navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header .navbar-toggle:hover {
  color: #D4AF37;
}
.header .main-navbar {
  width: 100%;
  order: 4;
}
.header .main-navbar .navbar-menu {
  display: none;
  width: 100%;
  padding: 1.5rem 0;
}
.header .main-navbar .navbar-menu.active {
  display: block;
}
.header .main-navbar .navbar-menu .navbar-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.header .main-navbar .navbar-menu .navbar-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header .main-navbar .navbar-menu .navbar-links a:hover {
  color: #D4AF37;
}

.site-footer {
  background: #1d3444;
  color: white;
}
.site-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #D4AF37;
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  text-align: center;
}
.site-footer .footer-content .footer-logo .logo-website {
  font-size: 1.3rem;
  font-weight: 700;
}
.site-footer .footer-content .footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.site-footer .footer-content .footer-nav .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.site-footer .footer-content .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.site-footer .footer-content .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer .footer-bottom {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer .footer-bottom p {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .header .header-top {
    padding: 1rem 2rem;
  }
  .site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    padding: 3rem 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 1023px) {
  .header .header-top {
    flex-wrap: nowrap;
    padding: 1rem 4rem;
    gap: 0;
  }
  .header .logo-website {
    order: 1;
  }
  .header .navbar-toggle {
    display: none;
  }
  .header .main-navbar {
    order: 2;
    width: auto;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .header .main-navbar .navbar-menu {
    display: block;
    width: auto;
    padding: 0;
  }
  .header .main-navbar .navbar-menu .navbar-links {
    flex-direction: row;
    gap: 2rem;
  }
  .header .change-language {
    order: 3;
    margin-left: 2rem;
  }
  .site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 3rem 4rem;
    text-align: left;
  }
  .site-footer .footer-content .footer-logo {
    justify-self: start;
  }
  .site-footer .footer-content .footer-contact {
    justify-self: end;
    align-items: flex-start;
  }
}
.contact-page {
  padding: 2rem 1rem;
  color: white;
}
.contact-page .contact-hero {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-page .contact-hero h1 {
  margin-bottom: 1rem;
  color: #D4AF37;
}
.contact-page .contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-page .contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-page .contact-informations {
  text-align: center;
}
.contact-page .contact-informations h2 {
  margin-bottom: 1.5rem;
}
.contact-page .contact-informations .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-page .contact-informations .contact-item i {
  color: #D4AF37;
  font-size: 1.2rem;
}
.contact-page .contact-informations .contact-item a,
.contact-page .contact-informations .contact-item span {
  color: white;
  text-decoration: none;
  line-height: 1.5;
}
.contact-page .contact-informations .contact-item a:hover {
  color: #D4AF37;
}
.contact-page .contact-form h2 {
  margin-bottom: 1.5rem;
}
.contact-page .contact-form .contact-errors,
.contact-page .contact-form .contact-success {
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 8px;
}
.contact-page .contact-form .contact-errors p,
.contact-page .contact-form .contact-success p {
  margin: 0;
  line-height: 1.5;
}
.contact-page .contact-form .contact-errors {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #ff8a8a;
}
.contact-page .contact-form .contact-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid #28a745;
  color: #7dff9b;
}
.contact-page .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-page .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-page .contact-form .form-group label {
  font-weight: bold;
}
.contact-page .contact-form .form-group input,
.contact-page .contact-form .form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
}
.contact-page .contact-form .form-group input:focus,
.contact-page .contact-form .form-group textarea:focus {
  outline: 2px solid #D4AF37;
}
.contact-page .contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-page .contact-form button {
  width: fit-content;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 6px;
  background: #D4AF37;
  color: #1d3444;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-page .contact-form button:hover {
  background: white;
}
.contact-page .contact-map {
  margin-top: 3rem;
}
.contact-page .contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .contact-page {
    padding: 3rem 2rem;
  }
  .contact-page .contact-content {
    gap: 4rem;
  }
}
@media screen and (min-width: 1023px) {
  .contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
  }
  .contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 5rem;
  }
  .contact-page .contact-map iframe {
    height: 450px;
  }
}
.movies-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.movies-page h1 {
  color: white;
  text-align: center;
  margin-bottom: 2.5rem;
}
.movies-page .movies-grid {
  display: grid;
  gap: 2rem;
}
.movies-page .movies-grid .movie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.movies-page .movies-grid .movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.movies-page .movies-grid .movie-card h2 {
  color: white;
  margin-bottom: 1.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.movies-page .movies-grid .movie-card img {
  width: 100%;
  max-width: 260px;
  height: 390px;
  object-fit: contain;
  background-color: #000;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.movies-page .movies-grid .movie-card a {
  display: inline-block;
  margin-top: auto;
  padding: 0.8rem 1.8rem;
  background-color: #d4af37;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.movies-page .movies-grid .movie-card a:hover {
  background-color: #b99329;
}

@media screen and (min-width: 768px) {
  .movies-page .movies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1023px) {
  .movies-page .movies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/********************* MOVIE DETAIL PAGE *********************/
.movie-detail-page {
  color: white;
  padding: 2rem 1rem;
}
.movie-detail-page h1 {
  margin-bottom: 2rem;
  text-align: center;
}
.movie-detail-page .movie-detail-content {
  max-width: 900px;
  margin: 0 auto;
}
.movie-detail-page .movie-detail-content .movie-detail-image {
  margin-bottom: 2rem;
}
.movie-detail-page .movie-detail-content .movie-detail-image img {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: cover;
}
.movie-detail-page .movie-detail-content .movie-detail-information {
  text-align: center;
}
.movie-detail-page .movie-detail-content .movie-detail-information h2 {
  margin-bottom: 1rem;
}
.movie-detail-page .movie-detail-content .movie-detail-information p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.movie-detail-page .movie-detail-content .movie-detail-information .back-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background-color: #4f5bd5;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.movie-detail-page .movie-detail-content .movie-detail-information .back-button:hover {
  background-color: #3d49b1;
}

/********************** MOD TABLET ***************************/
@media screen and (min-width: 768px) {
  .movie-detail-page .movie-detail-content .movie-detail-image img {
    max-width: 600px;
  }
}
/********************** MOD DESKTOP **************************/
@media screen and (min-width: 1023px) {
  .movie-detail-page {
    max-width: 1400px;
    margin: 0 auto;
  }
  .movie-detail-page .movie-detail-content {
    max-width: 1000px;
  }
  .movie-detail-page .movie-detail-content .movie-detail-image img {
    max-width: 700px;
  }
}
.home-page {
  color: white;
  overflow: hidden;
}
.home-page h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #d4af37;
}
.home-page p {
  line-height: 1.7;
  opacity: 0.9;
}
.home-page section {
  padding: 3rem 1.5rem;
}
.home-page .home-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 20, 50, 0.75), rgba(0, 0, 0, 0.85)), url("../images/home-bg.jpg");
  background-size: cover;
  background-position: center;
}
.home-page .home-hero .hero-content {
  max-width: 900px;
}
.home-page .home-hero .hero-content h1 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
}
.home-page .home-hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.home-page .home-hero .hero-content .hero-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: #d4af37;
  color: #00142f;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}
.home-page .home-hero .hero-content .hero-button:hover {
  transform: translateY(-3px);
  background-color: white;
}
.home-page .home-introduction {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.home-page .home-introduction p {
  max-width: 850px;
  margin: auto;
}
.home-page .home-figures .figures-grid {
  display: grid;
  gap: 1.5rem;
}
.home-page .home-figures .figures-grid .figure-card {
  padding: 2rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
}
.home-page .home-figures .figures-grid .figure-card strong {
  display: block;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}
.home-page .home-figures .figures-grid .figure-card p {
  margin: 0;
}
.home-page .home-strategy {
  text-align: center;
}
.home-page .home-strategy .strategy-list {
  display: grid;
  gap: 1.5rem;
}
.home-page .home-strategy .strategy-list .strategy-item {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}
.home-page .home-strategy .strategy-list .strategy-item i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}
.home-page .home-strategy .strategy-list .strategy-item h3 {
  font-size: 1.1rem;
}
.home-page .home-cinema {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.home-page .home-difference .difference-grid {
  display: grid;
  gap: 1.5rem;
}
.home-page .home-difference .difference-grid .difference-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}
.home-page .home-difference .difference-grid .difference-card i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}
.home-page .home-difference .difference-grid .difference-card h3 {
  font-size: 1.1rem;
}
.home-page .home-projects {
  text-align: center;
}
.home-page .home-projects .projects-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.home-page .home-projects .projects-list span {
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  background: #00142f;
  border: 1px solid #d4af37;
  color: white;
}
.home-page .home-projects a {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #d4af37;
  color: #00142f;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.home-page .home-technology,
.home-page .home-founder {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.home-page .home-cta {
  text-align: center;
  background: linear-gradient(135deg, #00142f, #003366);
  border-radius: 30px;
  margin: 2rem;
}
.home-page .home-cta a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #d4af37;
  color: #00142f;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .home-page h2 {
    font-size: 2.2rem;
  }
  .home-page .home-figures .figures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .home-strategy .strategy-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .home-difference .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1023px) {
  .home-page section {
    padding: 5rem 3rem;
  }
  .home-page .home-hero h1 {
    font-size: 4rem;
  }
  .home-page .home-figures .figures-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .home-page .home-strategy .strategy-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .home-page .home-difference .difference-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

main {
  color: white;
  background: #2c455a;
}

/**********************************************************************/
/************************ TYPOGRAPHY GLOBAL ***************************/
/**********************************************************************/
h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.75rem;
  line-height: 1.3;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
}

p,
li {
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
}

a {
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
}

/*# sourceMappingURL=style.css.map */
