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;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #343434 100%);
  color: #ffffff;
  line-height: 1.6;
}

header .banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  background: linear-gradient(135deg, rgba(62, 4, 170, 0.34), rgba(255, 230, 0, 0.234)), url("../images/ilia.banner.jpg") center/cover;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgb(255, 217, 0);
  height: 100vh;
  color: white;
}
header .banner .banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 32px;
}
header .banner .banner-content h1 {
  color: gold;
  font-size: 56px;
  font-family: "BPG QuadroSquare", "Playfair Display", "Sylfaen", "Arial Unicode MS", sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  margin-bottom: 16px;
}
header .banner .banner-content p {
  font-size: 24px;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
}
header nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  list-style: none;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  font-size: 17.6px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
header nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, gold, #FFA500);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
header nav ul li a:hover::before, header nav ul li a.active::before {
  width: 80%;
}
header nav ul li a:hover {
  color: gold;
  transform: translateY(-2px);
}
header nav ul li a.active {
  color: gold;
  font-weight: 600;
}
header .btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #af994c, #c89149);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 17.6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(94, 85, 40, 0.5);
  text-decoration: none;
}
header .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 251, 0, 0.4);
  background: linear-gradient(135deg, #deb308, #ffc400);
  color: white;
  text-decoration: none;
}

.content-section {
  padding: 80px 20px;
  min-height: 100vh;
}
.content-section .intro-section {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  padding: 50px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.content-section .intro-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.content-section .intro-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}
.content-section .intro-section h2 {
  font-size: 44.8px;
  font-weight: 700;
  margin-bottom: 30px;
  color: gold;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
}
.content-section .intro-section p {
  font-size: 19, 2px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}
.content-section .intro-section a {
  color: gold;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 2px 8px;
  border-radius: 5px;
}
.content-section .intro-section a:hover {
  background: rgba(255, 215, 0, 0.2);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}
.content-section .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: gold;
  text-align: center;
  position: relative;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}
.content-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, gold, #FFA500);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.content-section .cards-grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}
.content-section .cards-grid .card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.content-section .cards-grid .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(255, 165, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.content-section .cards-grid .card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.6);
}
.content-section .cards-grid .card:hover::before {
  opacity: 1;
}
.content-section .cards-grid .card:hover .card-image img {
  transform: scale(1.1);
  filter: brightness(1);
}
.content-section .cards-grid .card:hover .card-overlay {
  opacity: 1;
}
.content-section .cards-grid .card:hover .card-overlay-text {
  transform: translateY(0);
}
.content-section .cards-grid .card:hover .card-icon {
  background: gold;
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}
.content-section .cards-grid .card:hover .card-title {
  transform: translateY(-5px);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.content-section .cards-grid .card:hover .card-description {
  color: #e8e8e8;
}
.content-section .cards-grid .card .card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}
.content-section .cards-grid .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.content-section .cards-grid .card .card-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 215, 0, 0.2) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  padding: 20px;
  z-index: 2;
}
.content-section .cards-grid .card .card-overlay-text {
  color: white;
  font-size: 17.6px;
  text-align: center;
  line-height: 1.6;
  font-style: italic;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.content-section .cards-grid .card .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 215, 0, 0.9);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20.8px;
  z-index: 3;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.content-section .cards-grid .card .card-content {
  padding: 35px 30px;
  position: relative;
  z-index: 2;
}
.content-section .cards-grid .card .card-title {
  font-size: 25.6px;
  font-weight: 700;
  color: gold;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}
.content-section .cards-grid .card .card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #d0d0d0;
  text-align: justify;
  transition: color 0.3s ease;
}

section {
  padding: 50px;
}
section .gallery-carousel h2 {
  font-size: 40px;
  font-family: "BPG QuadroSquare", "Sylfaen", "Arial Unicode MS", sans-serif;
  margin-bottom: 32px;
  color: gold;
  text-align: center;
}
section .gallery-carousel p {
  font-size: 17.6px;
  line-height: 1.8;
  margin-bottom: 24px;
}

footer {
  border-top: 1px solid rgb(255, 217, 0);
  text-decoration: none;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/footer.jpg") center/cover;
  opacity: 0.3;
  z-index: 1;
}
footer .footer-container {
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer-container .footer-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}
footer .footer-container .footer-content .footer-section h3 {
  color: gold;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}
footer .footer-container .footer-content .footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, gold, #FFA500);
}
footer .footer-container .footer-content .footer-section p,
footer .footer-container .footer-content .footer-section li {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 10px;
}
footer .footer-container .footer-content .footer-section ul {
  list-style: none;
}
footer .footer-container .footer-content .footer-section ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}
footer .footer-container .footer-content .footer-section ul li a {
  text-decoration: none;
}
footer .footer-container .footer-content .footer-section ul li:hover {
  padding-left: 10px;
  color: gold;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: gold;
  font-size: 20px;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, gold, #FFA500);
  transition: left 0.4s ease;
  z-index: -1;
}
.social-icon:hover {
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}
.social-icon:hover::before {
  left: 0;
}
.social-icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  border-radius: 4px;
  filter: brightness(0) saturate(100%) invert(84%) sepia(84%) saturate(2427%) hue-rotate(12deg) brightness(104%) contrast(101%);
}
.social-icon:hover img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.container {
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.container .content {
  color: white;
}
.container .content h1, .container .content h3 {
  text-align: center;
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 40px;
}
.container .content h3 {
  font-size: 24px;
  text-align: end;
}
.container .content p {
  line-height: 34px;
  font-size: 18px;
  margin-bottom: 24px;
  text-align: justify;
}
.container .content .paragraph-with-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 30px;
}
.container .content .flip-box {
  width: 300px;
  height: 300px;
  border-radius: 30px;
  border: 1px solid #f1f1f1;
  flex-shrink: 0;
}
.container .content .flip-box .flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.container .content .flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}
.container .content .flip-box .flip-box-front,
.container .content .flip-box .flip-box-back {
  border-radius: 30px;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.container .content .flip-box .flip-box-front {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.container .content .flip-box .flip-box-front img {
  border-radius: 30px;
  width: 300px;
  height: 300px;
}
.container .content .flip-box .flip-box-back {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.262745098);
  color: white;
  transform: rotateY(180deg);
  padding: 20px;
}
.container .content .flip-box .flip-box-back h2 {
  margin: 0 0 10px 0;
  font-size: 24px;
}
.container .content .flip-box .flip-box-back p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.container .content .card-k {
  float: left;
  width: 33.33%;
  margin-bottom: 16px;
  padding: 0 8px;
  transition: transform 0.3s ease;
}
.container .content .card-k :hover {
  transform: translateY(-5px);
}
.container .content .card-k .card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.container .content .card-k .card .card:hover {
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
  transform: scale(1.02);
}
.container .content .card-k .card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.container .content .card-k .card :hover img {
  transform: scale(1.05);
}
.container .content .card-k .card p {
  text-align: center;
  padding: 15px;
  margin: 0;
  font-size: 16px;
  color: white;
  font-weight: 500;
}

.main {
  font-family: "Roboto", sans-serif;
  margin: auto;
  background-color: #000000;
  color: gold;
}
.main h1 {
  font-size: 50px;
  text-align: center;
  color: gold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  margin-bottom: 20px;
}
.main h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  color: gold;
  border-bottom: 3px solid gold;
  padding-bottom: 10px;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  margin: 10px -16px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  flex: 0 0 calc(33.33% - 16px);
  display: none;
  margin-bottom: 16px;
}

.show {
  display: block;
}

.content-production {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  background-color: #1a1a1a;
  border: 2px solid gold;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  height: 350px;
}
.content-production:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
  border-color: gold;
  background-color: rgba(255, 215, 0, 0.1);
}
.content-production img {
  width: -moz-fit-content;
  width: fit-content;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid gold;
  transition: all 0.3s ease;
}
.content-production img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.content-production h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  color: gold;
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: bold;
  min-height: 50px;
  text-align: center;
  flex-grow: 1;
}
.content-production p {
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  margin-top: auto;
}

#myBtnContainer {
  text-align: center;
  margin-bottom: 40px;
}
#myBtnContainer .btn {
  border: 2px solid gold;
  outline: none;
  padding: 12px 16px;
  background-color: #1a1a1a;
  color: gold;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 5px;
}
#myBtnContainer .btn:hover {
  background-color: gold;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}
#myBtnContainer .btn.active {
  background-color: gold;
  color: #000000;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.container-fluid h1 {
  color: gold;
  font-size: 48px;
  text-align: center;
  margin: 30px 0;
}
.container-fluid .carousel-container {
  margin-bottom: 64px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid gold;
}
.container-fluid .carousel-container .carousel .carousel-item {
  height: 500px;
  position: relative;
}
.container-fluid .carousel-container .carousel .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7) sepia(0.3) saturate(1.2);
}
.container-fluid .carousel-container .carousel .carousel-item .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 48px 32px 32px;
  color: white;
}
.container-fluid .carousel-container .carousel .carousel-item .carousel-caption p {
  font-size: 20px;
  font-style: italic;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 800px;
  margin: 0 auto;
  color: gold;
}
.container-fluid .carousel-container .carousel .carousel-control-prev,
.container-fluid .carousel-container .carousel .carousel-control-next {
  width: 5%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.container-fluid .carousel-container .carousel .carousel-control-prev .carousel-control-prev-icon,
.container-fluid .carousel-container .carousel .carousel-control-prev .carousel-control-next-icon,
.container-fluid .carousel-container .carousel .carousel-control-next .carousel-control-prev-icon,
.container-fluid .carousel-container .carousel .carousel-control-next .carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(85%) sepia(78%) saturate(2076%) hue-rotate(21deg) brightness(101%) contrast(107%);
}
.container-fluid .carousel-container .carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid gold;
  opacity: 0.6;
  background-color: black;
}
.container-fluid .carousel-container .carousel .carousel-indicators button.active {
  opacity: 1;
  background-color: gold;
}

aside {
  padding: 40px 0;
}
aside .aside-container {
  border-radius: 15px;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.17) 0%, rgba(4, 255, 0, 0.13) 50%, rgba(255, 229, 0, 0.12) 100%);
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 25px 50px;
  transition: all 0.3s ease;
}
aside .aside-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}
aside .aside-container h1 {
  text-align: center;
  color: gold;
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 75px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}
aside .aside-container h1:hover {
  color: gold;
  transform: scale(1.05);
}
aside .aside-container .film-section {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 70px;
}
aside .aside-container .film-section .film-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  width: 300px;
  transition: all 0.3s ease;
}
aside .aside-container .film-section .film-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
aside .aside-container .film-section .film-card p {
  font-size: 25px;
  color: white;
  text-align: center;
  transition: color 0.3s ease;
}
aside .aside-container .film-section .film-card p:hover {
  color: gold;
}
aside .aside-container .film-section .film-card p::first-letter {
  font-size: 50px;
  color: gold;
  transition: color 0.3s ease;
}
aside .aside-container .film-section .film-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0 15px 0;
  border-radius: 10px;
  border: 2px solid #1aff00;
  transition: all 0.3s ease;
}
aside .aside-container .film-section .film-card img:hover {
  transform: scale(1.05);
  border-color: gold;
  box-shadow: 0 10px 25px rgba(26, 255, 0, 0.3);
}
aside .aside-container .film-section .film-card .film-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: linear-gradient(45deg, #ff6b6b, gold, #4ecdc4);
  border-radius: 50px;
  font-size: 36px;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.416);
  transition: all 0.3s ease;
}
aside .aside-container .film-section .film-card .film-icon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.6);
}

/* Gallery Styles */
.gallery-carousel {
  margin: 48px 0;
}
.gallery-carousel h1 {
  text-align: center;
  margin-bottom: 32px;
  color: gold;
  font-size: 32px;
  font-weight: 900;
}
.gallery-carousel h1 .center-carousel .slick-slide {
  margin: 0 15px;
  transition: all 0.3s ease;
}
.gallery-carousel .slick-slide:not(.slick-center) {
  transform: scale(0.8);
  opacity: 0.6;
}
.gallery-carousel .slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
}
.gallery-carousel .center-item {
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.gallery-carousel .center-item:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.gallery-carousel .center-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.gallery-carousel img:hover {
  transform: scale(1.05);
}
.gallery-carousel h4 {
  color: #000000;
  margin-bottom: 8px;
  font-size: 19.2px;
  font-weight: 500;
}
.gallery-carousel h4::first-letter {
  font-size: 35px;
  color: rgb(101, 88, 15);
}
.gallery-carousel p {
  color: #666;
  font-size: 14.4px;
  margin: 0;
  line-height: 1.4;
}
.gallery-carousel .slick-prev, .gallery-carousel .slick-next {
  z-index: 10;
  font-size: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.gallery-carousel .slick-prev:hover,
.gallery-carousel .slick-next:hover {
  background: #fff;
  border-color: gold;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.gallery-carousel .slick-prev:before,
.gallery-carousel .slick-next:before {
  color: #333;
  font-size: 18px;
}
.gallery-carousel .slick-prev {
  left: -25px;
}
.gallery-carousel .slick-next {
  right: -25px;
}

main .about-container {
  padding: 70px;
}
main .about-container h1 {
  -webkit-text-decoration: rgb(81, 255, 0) underline;
          text-decoration: rgb(81, 255, 0) underline;
  font-size: 28px;
  color: gold;
  margin-bottom: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}
main .about-container h1::before {
  content: url("../images/logo.svg");
  margin-right: 12px;
  width: 20px;
  height: auto;
}
main .about-container p {
  font-size: 20px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}
main .goals, main .how-we-work, main .reason {
  margin-bottom: 50px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
main .goals:hover, main .how-we-work:hover, main .reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding: 30px;
}
.contact-wrapper .contact-img img {
  border: 10px solid gold;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.contact-wrapper .contact-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}
.contact-wrapper section .contact-form {
  width: 100%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.947);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.contact-wrapper section .contact-form h1 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #6b2222, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 19px;
  line-height: 1.2;
}
.contact-wrapper section .contact-form h2 {
  font-size: 27px;
  color: gold;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  text-decoration: underline;
}
.contact-wrapper section .contact-form fieldset {
  border: none;
  padding: 0;
}
.contact-wrapper section .contact-form fieldset label {
  display: block;
  font-weight: 600;
  color: gold;
  margin-bottom: 8px;
  font-size: 16px;
}
.contact-wrapper section .contact-form fieldset input[type=text],
.contact-wrapper section .contact-form fieldset input[type=email],
.contact-wrapper section .contact-form fieldset input[type=date] {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #ff4800;
  border-radius: 12px;
  font-size: 16px;
  background: gold;
  color: #000000;
  margin-bottom: 24px;
}
.contact-wrapper section .contact-form fieldset input[type=text]:focus,
.contact-wrapper section .contact-form fieldset input[type=email]:focus,
.contact-wrapper section .contact-form fieldset input[type=date]:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.contact-wrapper section .contact-form fieldset input[type=submit] {
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(135deg, #5eff00, #bbff00);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 10px 25px rgba(255, 132, 0, 0.682);
  transition: all 0.3s ease;
}
.contact-wrapper section .contact-form fieldset input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}/*# sourceMappingURL=styles.css.map */