@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");

:root {
  --primary: #181518;
  --text-color: #f4f4f4;
  --text-color-2: #b5b5b5;
  --background-color: #231f20;
  --accent-color-1: #f0ec22;
  --accent-color-2: #8a715a;
  --accent-color-3: #38373c;
  --accent-color-4: #151315;
  --accent-color-5: #ffffff;
  --font-1: "Montserrat", sans-serif;
  --font-2: "Open Sans", sans-serif;
}
/* Zero CSS Properties */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
/* Body Properties */
body {
  font-family: var(--font-2);
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1,
h2 {
  text-transform: uppercase;
}

/* Base Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: rgba(56, 54, 57, 0.9);
  backdrop-filter: blur(10px);
}

.navbar:hover {
  background-color: var(--primary);
  backdrop-filter: blur(10px);
}

.nav-container {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.nav-full-width {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Navbar Sections */
.nav-left {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1001;
}

.logo {
  font-family: var(--font-1);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color-1);
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-middle {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-family: var(--font-1);
  font-weight: 600;
  padding: 0 15px;
  transition: color 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--accent-color-1);
}

/* Right Side Elements */
.language-selector {
  font-family: var(--font-1);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.divider {
  height: 20px;
  width: 1px;
  background-color: var(--text-color-2);
}

.contact-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-family: var(--font-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
}

.contact-btn:hover {
  color: var(--accent-color-1);
}

/* Mega Menu Styles */
.mega-menu-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.nav-full-width:hover .mega-menu-wrapper {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.dropdown:hover .mega-menu-wrapper {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mega-menu {
  background-color: var(--primary);
  border-top: 1px solid var(--accent-color-3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}

.mega-menu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.menu-column img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.menu-column h4 {
  color: var(--accent-color-1);
  margin-bottom: 15px;
  font-family: var(--font-1);
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column li {
  margin-bottom: 10px;
  color: var(--text-color-2);
  transition: color 0.3s;
  cursor: pointer;
}

.menu-column li:hover {
  color: var(--accent-color-1);
}

/* Dropdown Indicator */
.dropdown > a::after {
  content: "⌄";
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s;
}

.nav-full-width:hover .dropdown > a::after {
  transform: rotate(180deg);
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .navbar {
    height: auto;
    min-height: 80px;
  }

  .nav-full-width {
    flex-direction: column;
    padding: 15px 0;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-middle,
  .nav-right {
    width: 100%;
    display: none;
  }

  .nav-middle.active,
  .nav-right.active {
    display: flex;
  }

  .nav-middle {
    order: 3;
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-right {
    order: 4;
    flex-direction: column;
    padding: 15px 0;
    gap: 15px;
    align-items: flex-start;
    padding-left: 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .nav-links li {
    height: auto;
  }

  .nav-links a {
    padding: 10px 20px;
  }

  .divider {
    display: none;
  }

  /* Mobile Mega Menu */
  .mega-menu-wrapper {
    position: static;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    visibility: visible;
    opacity: 1;
  }

  .dropdown.active + .mega-menu-wrapper {
    height: auto;
  }

  .mega-menu {
    padding: 15px 20px;
  }

  .mega-menu-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Hamburger Menu */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent-color-1);
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile Dropdown Indicator */
  .dropdown > a::after {
    content: "+";
  }

  .dropdown.active > a::after {
    content: "-";
  }
}

/* Desktop Specific Adjustments */
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }

  .nav-middle,
  .nav-right {
    display: flex !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#hero_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#bln_logo_wrapper {
  position: relative;
  z-index: 10;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 180px;
}

/* Flame Animation */
.flame-wrapper {
  margin-top: 60px;
  margin-right: 50px;
  position: absolute;
  animation: flicker 3ms ease-in infinite;
  z-index: -1;
}

.flame {
  bottom: 0;
  position: absolute;
  border-radius: 50% 0% 50% 50%;
  transform: rotate(-45deg);
}

.red {
  width: 40px;
  height: 40px;
  background-color: orangered;
  box-shadow: 0px 0px 10px 5px orangered;
}

.orange {
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: orange;
  box-shadow: 0px 0px 12px 6px orange;
}

.gold {
  left: 18px;
  width: 15px;
  height: 15px;
  background-color: gold;
  box-shadow: 0px 0px 9px 4px gold;
}

.white {
  left: 22px;
  width: 10px;
  height: 10px;
  background-color: lightyellow;
  box-shadow: 0px 0px 9px 4px lightyellow;
}

.base {
  border-radius: 50px;
  position: absolute;
}

.blue {
  left: 20px;
  width: 7px;
  height: 7px;
  background-color: darkblue;
  box-shadow: 0px 0px 15px 10px darkblue;
}

.black {
  left: 21px;
  width: 5px;
  height: 5px;
  bottom: -20px;
  background-color: black;
  box-shadow: 0px 0px 10px 10px black;
}

@keyframes flicker {
  0% {
    transform: rotate(-1deg);
  }
  20% {
    transform: rotate(2deg) scaleY(1.05);
  }
  40% {
    transform: rotate(-1deg);
  }
  60% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg) scaleY(0.9);
  }
  100% {
    transform: rotate(1deg);
  }
}

.cta-btn {
  position: relative;
  z-index: 10;
  padding: 15px 30px;
  background-color: var(--accent-color-1);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-family: var(--font-1);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  /* margin-top: -525px; */
  margin-bottom: 200px;
}

.cta-btn:hover {
  background-color: var(--accent-color-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: var(--primary);
  margin: 10% auto;
  padding: 30px;
  border: 1px solid var(--accent-color-1);
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color);
  cursor: pointer;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-form input,
#contact-form textarea {
  padding: 12px;
  background-color: var(--accent-color-4);
  border: 1px solid var(--accent-color-3);
  color: var(--text-color);
  border-radius: 5px;
}

#contact-form button {
  padding: 12px;
  background-color: var(--accent-color-1);
  color: var(--primary);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#contact-form button:hover {
  background-color: var(--accent-color-2);
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .nav-container {
    width: 90%;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: auto;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent-color-1);
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin: 15px 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    padding: 10px 0;
    display: block;
  }

  .dropdown .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 15px 0;
  }

  .mega-menu-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-column img {
    max-height: 200px;
    object-fit: cover;
  }

  .nav-right {
    display: none;
  }

  /* Animate hamburger to X when active */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}

/* About Section Styles */
.about {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: var(--accent-color-5);
}

.about-main {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text h2 {
  font-family: var(--font-1);
  color: var(--accent-color-1);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-text p {
  font-family: var(--font-2);
  color: var(--accent-color-4);
  line-height: 1.6;
}

.about-features {
  margin-top: 20px;
  padding-left: 20px;
}

.about-features li {
  font-family: var(--font-2);
  color: var(--accent-color-4);
  margin-bottom: 10px;
  position: relative;
}

.about-features li::before {
  content: "•";
  color: var(--accent-color-1);
  font-size: 1.5rem;
  position: absolute;
  left: -20px;
  top: -5px;
}

.about-image {
  flex: 1;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background-color: var(--accent-color-4);
  border-radius: 8px;
}

.cta-text {
  width: 60%;
}

.cta-text h3 {
  font-family: var(--font-1);
  color: var(--accent-color-1);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-text p {
  font-family: var(--font-2);
  color: var(--text-color-2);
  line-height: 1.6;
}

.cta-button {
  padding: 15px 30px;
  background-color: var(--accent-color-1);
  color: var(--primary);
  border: none;
  border-radius: 30px;
  font-family: var(--font-1);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--accent-color-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-image {
    height: 400px;
  }

  .about-cta {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .cta-text {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 40px 20px;
  }

  .about-main {
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-image {
    height: 300px;
  }

  .cta-text h3 {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-features {
    padding-left: 15px;
  }

  .about-features li::before {
    left: -15px;
  }

  .about-image {
    height: 250px;
  }

  .about-cta {
    padding: 25px 20px;
  }

  .cta-text h3 {
    font-size: 1.3rem;
  }
}

/* Sound Bar Styles */
#sound_bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(24, 21, 24, 0.9);
  backdrop-filter: blur(5px);
  border-top: 1px solid var(--accent-color-3);
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.sound-bar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.track-info {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.artist-name {
  font-size: 0.8rem;
  color: var(--text-color-2);
}

.track-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.control-btn:hover {
  color: var(--accent-color-1);
}

.play-pause {
  font-size: 1.5rem;
}

/* Wave Progress Bar Styles */
.wave-progress-container {
  flex: 1;
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
}

.wave-progress {
  position: relative;
  width: 100%;
  height: 40px;
  margin-top: 5px;
}

#waveform {
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(56, 55, 60, 0.2);
  border-radius: 4px;
}

.progress-overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    90deg,
    rgba(24, 21, 24, 0) 0%,
    rgba(24, 21, 24, 0.8) 100%
  );
  pointer-events: none;
  border-radius: 0 4px 4px 0;
}

.time-display {
  width: 20%;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-color-2);
  gap: 5px;
}

.time-separator {
  color: var(--accent-color-2);
}

/* Volume Controls */
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

.volume-slider {
  width: 80px;
  height: 4px;
  /* -webkit-appearance: none;  */
  background: var(--text-color-2);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--accent-color-1);
  border-radius: 50%;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  #sound_bar {
    height: auto;
    padding: 15px;
  }

  .sound-bar-container {
    flex-direction: column;
    gap: 15px;
  }

  .track-info {
    width: 100%;
    text-align: center;
    order: 1;
  }

  .player-controls {
    order: 2;
    margin: 10px 0;
  }

  .wave-progress-container {
    order: 3;
    width: 100%;
    margin-bottom: 15px;
  }

  .volume-control {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .volume-slider {
    width: 120px;
  }
}

@media (max-width: 480px) {
  #sound_bar {
    padding: 10px;
  }

  .player-controls {
    gap: 10px;
  }

  .control-btn {
    font-size: 1rem;
  }

  .play-pause {
    font-size: 1.2rem;
  }

  .wave-progress {
    height: 30px;
  }
}

/* For very small screens (≤320px): */

@media (max-width: 320px) {
  .track-info {
    font-size: 0.9rem;
  }

  .time-display {
    font-size: 0.6rem;
  }
}

/* Transition for smoother layout changes */

.sound-bar-container {
  transition: all 0.3s ease;
}

/* For landscape mobile views, adjust the layout */

@media (max-height: 480px) and (orientation: landscape) {
  #sound_bar {
    height: 60px;
    flex-direction: row;
  }

  .wave-progress {
    height: 20px;
  }
}

/* Carousel CSS */

.carousel-container {
  position: relative;
  width: 100%;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main#carousel {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 600px;
  --items: 5;
  --middle: 3;
  --position: 1;
}

div.item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--accent-color-3);
  position: absolute;
  width: 300px;
  height: 400px;
  --r: calc(var(--position) - var(--offset));
  --abs: max(calc(var(--r) * -1), var(--r));
  transition: all 0.3s ease-out;
  transform: rotateY(calc(-10deg * var(--r)))
    translateX(calc(-350px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  z-index: calc((var(--position) - var(--abs)));
  opacity: calc(1 - 0.2 * var(--abs));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

div.item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color-1);
  margin-bottom: 1.5rem;
}

.name {
  margin-bottom: 0.5rem;
  color: var(--accent-color-5);
  font-family: var(--font-1);
  font-size: 1.4rem;
  font-weight: 600;
}

.occupation {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--accent-color-1);
  font-size: 0.9rem;
}

.testimonial {
  color: var(--text-color-2);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.social-links a {
  color: var(--text-color);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent-color-1);
}

div.item:nth-of-type(1) {
  --offset: 1;
}
div.item:nth-of-type(2) {
  --offset: 2;
}
div.item:nth-of-type(3) {
  --offset: 3;
}
div.item:nth-of-type(4) {
  --offset: 4;
}
div.item:nth-of-type(5) {
  --offset: 5;
}

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-color-2);
  cursor: pointer;
  transition: all 0.3s;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .carousel-controls .carousel-dot {
  background-color: var(--accent-color-1);
}

input[id="position-1"]:checked ~ main#carousel {
  --position: 1;
}
input[id="position-2"]:checked ~ main#carousel {
  --position: 2;
}
input[id="position-3"]:checked ~ main#carousel {
  --position: 3;
}
input[id="position-4"]:checked ~ main#carousel {
  --position: 4;
}
input[id="position-5"]:checked ~ main#carousel {
  --position: 5;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--accent-color-5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-nav:hover {
  background-color: var(--accent-color-1);
  color: var(--primary);
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  div.item {
    width: 280px;
    height: 380px;
    transform: rotateY(calc(-10deg * var(--r)))
      translateX(calc(-300px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }
}

@media (max-width: 900px) {
  div.item {
    width: 250px;
    height: 350px;
    transform: rotateY(calc(-10deg * var(--r)))
      translateX(calc(-250px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }

  .carousel-container {
    height: 650px;
  }
}

@media (max-width: 768px) {
  div.item {
    width: 220px;
    height: 320px;
    transform: rotateY(calc(-8deg * var(--r)))
      translateX(calc(-220px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }

  .name {
    font-size: 1.2rem;
  }

  .testimonial {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .carousel-container {
    height: 550px;
  }

  div.item {
    width: 180px;
    height: 280px;
    padding: 1.5rem;
    transform: rotateY(calc(-5deg * var(--r)))
      translateX(calc(-180px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }

  div.item img {
    width: 90px;
    height: 90px;
  }

  .name {
    font-size: 1.1rem;
  }

  .occupation {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .testimonial {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    height: 500px;
  }

  div.item {
    width: 160px;
    height: 250px;
    padding: 1rem;
    transform: translateX(calc(-160px * var(--r)))
      scale(calc(1 - 0.1 * var(--abs)));
  }

  div.item img {
    width: 70px;
    height: 70px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-links a {
    font-size: 1rem;
  }
}

/* --------------------- Carousel CSS ------------------- */

.team-main {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-2);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.team-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-header h1 {
  font-family: var(--font-1);
  font-size: 2.5rem;
  color: var(--accent-color-1);
  margin-bottom: 1rem;
}

.team-description {
  font-size: 1.1rem;
  color: var(--text-color-2);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-header h1 {
    font-size: 2rem;
  }

  .team-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }

  .team-header h1 {
    font-size: 1.8rem;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main#carousel {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 600px;
  --items: 5;
  --middle: 3;
  --position: 1;
}

div.item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--accent-color-3);
  position: absolute;
  width: 300px;
  height: 400px;
  --r: calc(var(--position) - var(--offset));
  --abs: max(calc(var(--r) * -1), var(--r));
  transition: all 0.3s ease-out;
  transform: rotateY(calc(-10deg * var(--r)))
    translateX(calc(-350px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  z-index: calc((var(--position) - var(--abs)));
  opacity: calc(1 - 0.2 * var(--abs));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

div.item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color-1);
  margin-bottom: 1.5rem;
}

.name {
  margin-bottom: 0.5rem;
  color: var(--accent-color-5);
  font-family: var(--font-1);
  font-size: 1.4rem;
  font-weight: 600;
}

.occupation {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--accent-color-1);
  font-size: 0.9rem;
}

.testimonial {
  color: var(--text-color-2);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.social-links a {
  color: var(--text-color);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent-color-1);
}

div.item:nth-of-type(1) {
  --offset: 1;
}
div.item:nth-of-type(2) {
  --offset: 2;
}
div.item:nth-of-type(3) {
  --offset: 3;
}
div.item:nth-of-type(4) {
  --offset: 4;
}
div.item:nth-of-type(5) {
  --offset: 5;
}

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-color-2);
  cursor: pointer;
  transition: all 0.3s;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .carousel-controls .carousel-dot {
  background-color: var(--accent-color-1);
}

input[id="position-1"]:checked ~ main#carousel {
  --position: 1;
}
input[id="position-2"]:checked ~ main#carousel {
  --position: 2;
}
input[id="position-3"]:checked ~ main#carousel {
  --position: 3;
}
input[id="position-4"]:checked ~ main#carousel {
  --position: 4;
}
input[id="position-5"]:checked ~ main#carousel {
  --position: 5;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--accent-color-5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-nav:hover {
  background-color: var(--accent-color-1);
  color: var(--primary);
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  div.item {
    width: 280px;
    height: 380px;
    transform: rotateY(calc(-10deg * var(--r)))
      translateX(calc(-300px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }
}

@media (max-width: 900px) {
  div.item {
    width: 250px;
    height: 350px;
    transform: rotateY(calc(-10deg * var(--r)))
      translateX(calc(-250px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }

  .carousel-container {
    height: 650px;
  }
}

@media (max-width: 768px) {
  div.item {
    width: 220px;
    height: 320px;
    transform: rotateY(calc(-8deg * var(--r)))
      translateX(calc(-220px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }

  .name {
    font-size: 1.2rem;
  }

  .testimonial {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .carousel-container {
    height: 550px;
  }

  div.item {
    width: 180px;
    height: 280px;
    padding: 1.5rem;
    transform: rotateY(calc(-5deg * var(--r)))
      translateX(calc(-180px * var(--r))) scale(calc(1 - 0.1 * var(--abs)));
  }

  div.item img {
    width: 90px;
    height: 90px;
  }

  .name {
    font-size: 1.1rem;
  }

  .occupation {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .testimonial {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    height: 500px;
  }

  div.item {
    width: 160px;
    height: 250px;
    padding: 1rem;
    transform: translateX(calc(-160px * var(--r)))
      scale(calc(1 - 0.1 * var(--abs)));
  }

  div.item img {
    width: 70px;
    height: 70px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-links a {
    font-size: 1rem;
  }
}

/* ---------------------- Contact Section ------------------ */

.contact-main {
  font-family: var(--font-2);
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
}

.contact-container {
  width: 1200px;
  max-height: 70vh;
  display: flex;
  background-color: rgba(35, 31, 32, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(240, 236, 34, 0.2);
  border: 1px solid var(--accent-color-2);
}

.image-section {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.image-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
}

.studio-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-1);
  color: var(--accent-color-1);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.studio-name {
  position: relative;
  z-index: 2;
  font-family: var(--font-1);
  color: var(--accent-color-5);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
}

.form-section {
  flex: 1;
  padding: 40px;
  background-color: var(--primary);
  overflow-y: auto;
}

.form-title {
  font-family: var(--font-1);
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--accent-color-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color-1);
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-color-2);
  letter-spacing: 0.5px;
}

input,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--accent-color-3);
  border-radius: 4px;
  background-color: var(--accent-color-4);
  color: var(--text-color);
  font-family: var(--font-2);
  font-size: 14px;
  transition: all 0.3s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent-color-1);
  box-shadow: 0 0 0 2px rgba(240, 236, 34, 0.2);
}

.submit-btn {
  background-color: var(--accent-color-1);
  color: var(--primary);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-1);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(240, 236, 34, 0.3);
}

/* Scrollbar styling */
.form-section::-webkit-scrollbar {
  width: 8px;
}

.form-section::-webkit-scrollbar-track {
  background: var(--accent-color-4);
}

.form-section::-webkit-scrollbar-thumb {
  background-color: var(--accent-color-1);
  border-radius: 4px;
}

/*-------------- Artist Header --------------------- */

.artist-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    var(--accent-color-4) 0%,
    var(--background-color) 100%
  );
  padding: 20px;
  font-family: var(--font-2);
  overflow-x: hidden;
}

/* Header Section */
.artist-header {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.artist-header h1 {
  font-family: var(--font-1);
  font-size: 3.5rem;
  color: var(--accent-color-1);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(240, 236, 34, 0.5);
  padding-top: 50px;
}

.artist-header p {
  color: var(--text-color-2);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Studio background elements */
.artist-main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(240, 236, 34, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(240, 236, 34, 0.05) 0%,
      transparent 20%
    );
  pointer-events: none;
  z-index: -1;
}

/* Studio grid overlay */
.studio-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(240, 236, 34, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(240, 236, 34, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

.carousel-section {
  width: 100%;
  max-width: 1200px;
  height: 750px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Studio lighting effect on carousel section */
.carousel-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(240, 236, 34, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.card {
  position: relative;
  background: linear-gradient(
    145deg,
    var(--accent-color-4) 0%,
    var(--primary) 100%
  );
  height: 600px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(240, 236, 34, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(240, 236, 34, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4), 0 0 25px rgba(240, 236, 34, 0.2);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(240, 236, 34, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.card .image {
  height: 100%;
  width: 100%;
  position: relative;
}

.card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px;
  color: var(--text-color);
  z-index: 2;
}

.image-overlay h3 {
  font-family: var(--font-1);
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--accent-color-1);
  text-shadow: 0 0 10px rgba(240, 236, 34, 0.5);
}

.image-overlay p {
  font-size: 0.9rem;
  color: var(--text-color-2);
}

/* Music Modal */

.modalMusic {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modalMusic.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content-container {
  display: flex;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
  position: relative;
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--accent-color-4) 100%
  );
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(240, 236, 34, 0.3), 0 0 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(240, 236, 34, 0.2);
}

.modal-image {
  max-height: 80vh;
  max-width: 60%;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
}

/* Studio corner accent lights */
.modal-content-container::before,
.modal-content-container::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    var(--accent-color-1) 0%,
    transparent 70%
  );
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
}

.modal-content-container::before {
  top: -50px;
  left: -50px;
}

.modal-content-container::after {
  bottom: -50px;
  right: -50px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Swiper navigation */
.swiper-pagination-bullet {
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background: var(--accent-color-1);
  box-shadow: 0 0 10px rgba(240, 236, 34, 0.5);
}

.swiper-button-next,
.swiper-button-prev {
  opacity: 0.7;
  color: var(--accent-color-1);
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(240, 236, 34, 0.5);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
  color: var(--accent-color-5);
}

/* RESPONSIVENESS */
@media (max-width: 1200px) {
  .modal-content-container {
    flex-direction: column;
    align-items: center;
  }

  .modal-image {
    max-width: 100%;
    max-height: 50vh;
  }

  .content {
    width: 100%;
    padding: 20px;
  }

  .left-col h1 {
    font-size: 60px;
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  section {
    height: 550px;
  }

  .card {
    height: 400px;
  }

  .left-col h1 {
    font-size: 40px;
    line-height: 60px;
  }

  .right-col h1 {
    font-size: 18px !important;
  }

  .right-col p {
    font-size: 16px;
  }

  .right-col {
    padding: 15px;
  }

  #icon {
    width: 50px;
    margin: 20px 0;
  }
}

/* Studio pulse animation */
@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

/* --------------------------- Footer Section ---------------- */

.footer-container {
  width: 100%;
  background-color: var(--primary);
  padding: 40px 0;
  display: flex;
  justify-content: center;
  border-top: 2px solid var(--accent-color-1);
}

.main-footer {
  width: 100%;
  max-width: 1200px;
  height: auto;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Logo Section */
.footer-logo-container {
  width: 100%;
  max-width: 1170px;
  height: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color-3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--accent-color-1);
  box-shadow: 0 0 15px rgba(240, 236, 34, 0.3);
}

.footer-logo i {
  font-size: 60px;
  color: var(--accent-color-1);
}

/* Info Section */
.info-container {
  width: 100%;
  max-width: 1170px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.info-box {
  flex: 1;
  min-width: 250px;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 20px;
}

.info-box h3 {
  font-family: var(--font-1);
  color: var(--accent-color-1);
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-box p,
.info-box a {
  color: var(--text-color-2);
  line-height: 1.6;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.info-box a:hover {
  color: var(--accent-color-1);
}

.info-box i {
  margin-right: 10px;
  color: var(--accent-color-1);
  width: 20px;
  text-align: center;
}

/* Social Media Section */
.social-container {
  width: 100%;
  max-width: 1170px;
  height: auto;
  min-height: 65px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color-3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-size: 18px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--accent-color-1);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(240, 236, 34, 0.4);
}

/* Copyright Section */
.copyright-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 10px 0;
}

.copyright-container p {
  color: var(--text-color-2);
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.copyright-container span {
  color: var(--accent-color-1);
  font-weight: 600;
}

/* Media Queries */
@media (max-width: 768px) {
  .main-footer {
    min-height: auto;
    padding: 20px 15px;
  }

  .logo-container {
    height: 120px;
    margin-bottom: 20px;
  }

  .logo {
    width: 120px;
    height: 120px;
  }

  .logo i {
    font-size: 50px;
  }

  .info-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .info-box {
    min-width: 100%;
    padding: 0;
  }

  .social-icons {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 100px;
    height: 100px;
  }

  .logo i {
    font-size: 40px;
  }

  .copyright-container p {
    font-size: 12px;
  }
}
