@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unica+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.home-body {
  margin: 0;
  padding: 0;
  background-color: #3C2B26;
  font-family: "Barlow", sans-serif;
  color: #FFECD1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-header {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.nav-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 60px;
}
.nav-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 61px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.nav-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 10px 24px;
  z-index: 2;
}
.nav-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-bubble:hover::before {
  opacity: 0.8;
}
.nav-bubble:hover .nav-bubble__glow {
  opacity: 0.8;
}
.nav-bubble:hover .nav-bubble__inner {
  background: rgba(0, 0, 0, 0.45);
}
.nav-bubble__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
}
.nav-bubble__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav-bubble__logo .nav-bubble__link {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
  color: #FFECD1;
  transition: opacity 0.2s ease;
}
.nav-bubble__logo .nav-bubble__link:hover {
  opacity: 0.8;
}
.nav-bubble__profile {
  margin-left: auto;
}
.nav-bubble__profile .nav-bubble__link {
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFECD1;
  transition: opacity 0.2s ease;
}
.nav-bubble__profile .nav-bubble__link:hover {
  opacity: 0.8;
}
.nav-bubble__link {
  text-decoration: none;
  color: #FFECD1;
  transition: opacity 0.2s ease;
}
.nav-bubble__link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav-bubble__logo .nav-bubble__link {
    font-size: 14px;
  }
  .nav-bubble__profile .nav-bubble__link {
    font-size: 10px;
  }
  .nav-bubble__inner {
    padding: 6px 16px;
  }
}
.home-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 54px 8px 8px;
  min-height: 0;
}

.home-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.home-bubble {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}
.home-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.home-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px;
  z-index: 2;
  flex: 1;
  display: flex;
  min-height: 0;
}
.home-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.home-bubble:hover::before {
  opacity: 0.8;
}
.home-bubble:hover .home-bubble__glow {
  opacity: 0.8;
}
.home-bubble:hover .home-bubble__inner {
  background: rgba(0, 0, 0, 0.4);
}

.image-grid-wrapper {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  min-height: 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
  gap: 16px;
}

.image-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
}
.image-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFE66D);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  border-radius: 3px;
}

.overlay-content {
  color: #FFECD1;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.overlay-content h3 {
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.overlay-content p {
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}
.overlay-content .primary__button {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.overlay-content .primary__button:hover {
  background-color: white;
  color: black;
}

.image-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.image-item:hover img {
  transform: scale(1.08);
}
.image-item:hover .image-overlay {
  opacity: 1;
}
.image-item:hover .image-overlay::before {
  transform: scaleX(1);
}
.image-item:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .overlay-content h3 {
    font-size: 1rem;
  }
  .overlay-content p {
    font-size: 0.8rem;
  }
  .overlay-content .primary__button {
    padding: 6px 16px;
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .home-main {
    padding: 54px 8px 8px;
  }
  .home-bubble__inner {
    padding: 12px;
  }
  .image-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .overlay-content {
    padding: 12px;
  }
  .overlay-content h3 {
    font-size: 0.9rem;
  }
  .overlay-content p {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  .overlay-content .primary__button {
    padding: 4px 12px;
    font-size: 0.6rem;
  }
}
.home-footer {
  padding: 0 8px 8px;
  background: transparent;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 60px;
}
.footer-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 61px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
}
.footer-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 8px 24px;
  z-index: 2;
}
.footer-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.footer-bubble__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bubble__row {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
.footer-bubble__text {
  font-size: 11px;
  color: #FFECD1;
  opacity: 0.7;
  margin: 0;
}
.footer-bubble__credit {
  font-size: 11px;
  color: #FFECD1;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-bubble__credit:hover {
  opacity: 1;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: "Barlow", sans-serif;
  background-color: #3C2B26;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.carousel-container {
  margin: 2rem 0;
  padding: 0 1rem;
}
.carousel-container .carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.carousel-container .carousel .carousel-inner .carousel-item.active, .carousel-container .carousel .carousel-inner .carousel-item.carousel-item-next, .carousel-container .carousel .carousel-inner .carousel-item.carousel-item-prev {
  display: flex;
}
.carousel-container .carousel .carousel-inner .carousel-item.active {
  display: flex;
}
.carousel-container .carousel .carousel-inner .carousel-item.carousel-item-next, .carousel-container .carousel .carousel-inner .carousel-item.carousel-item-prev {
  display: flex;
}
.carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner {
  display: flex;
  width: 100%;
}
.carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner .carousel-item-img {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 5px;
}
.carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner .carousel-item-img img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
}
.carousel-container .carousel .carousel-control-prev,
.carousel-container .carousel .carousel-control-next {
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 8%;
}
.carousel-container .carousel .carousel-control-prev:hover,
.carousel-container .carousel .carousel-control-next:hover {
  opacity: 1;
}
.carousel-container:hover .carousel-control-prev, .carousel-container:hover .carousel-control-next {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner .carousel-item-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner .carousel-item-img img {
    max-height: 350px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner .carousel-item-img img {
    max-height: 400px;
  }
}
@media (min-width: 993px) {
  .carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner .carousel-item-img img {
    max-height: 500px;
  }
}
@media (min-width: 1200px) {
  .carousel-container .carousel .carousel-inner .carousel-item .carousel-item-inner .carousel-item-img img {
    max-height: 550px;
  }
}
.video__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.instagram-video iframe,
.instagram-video blockquote {
  margin: 0 auto !important;
  border-radius: 18px;
}

.projects-header {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.nav-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 60px;
}
.nav-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 61px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.nav-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 0;
  z-index: 2;
  height: 38px;
  display: flex;
  align-items: center;
}
.nav-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-bubble:hover::before {
  opacity: 0.8;
}
.nav-bubble:hover .nav-bubble__glow {
  opacity: 0.8;
}
.nav-bubble:hover .nav-bubble__inner {
  background: rgba(0, 0, 0, 0.45);
}
.nav-bubble__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.nav-bubble__back {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.nav-bubble__back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #FFECD1;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 50%;
}
.nav-bubble__back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-2px);
  text-decoration: none;
  color: #FFECD1;
}
.nav-bubble__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 5;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-bubble__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-family: "Barlow", sans-serif;
  color: #FFECD1;
  letter-spacing: normal;
}
.nav-bubble__title:hover {
  opacity: 0.8;
}
.nav-bubble__profile {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-bubble__profile .nav-bubble__link {
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFECD1;
  transition: opacity 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-bubble__profile .nav-bubble__link:hover {
  opacity: 0.8;
}
.nav-bubble__link {
  text-decoration: none;
  color: #FFECD1;
  transition: opacity 0.2s ease;
}
.nav-bubble__link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav-bubble__inner {
    height: 38px;
  }
  .nav-bubble__back-link {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .nav-bubble__back {
    left: 10px;
  }
  .nav-bubble__profile {
    right: 10px;
  }
  .nav-bubble__title {
    font-size: 12px;
  }
  .nav-bubble__profile .nav-bubble__link {
    font-size: 9px;
  }
}
.project-footer {
  padding: 0 8px 8px;
  background: transparent;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 60px;
}
.footer-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 61px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
}
.footer-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 8px 24px;
  z-index: 2;
}
.footer-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 60px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.footer-bubble__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bubble__row {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
.footer-bubble__text {
  font-size: 11px;
  color: #FFECD1;
  opacity: 0.7;
  margin: 0;
}
.footer-bubble__credit {
  font-size: 11px;
  color: #FFECD1;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-bubble__credit:hover {
  opacity: 1;
}

.primary__button {
  color: #FFECD1;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #606C39;
  border-radius: 50px;
}
.primary__button:hover {
  color: #FEFAE0;
  background-color: #283618;
  text-decoration: none;
  transition: ease 0.3s;
}

.work-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
}
.work-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 14px;
  background: linear-gradient(0deg, rgb(102, 21, 21), #3C2B26, rgb(102, 21, 21));
  z-index: 0;
  transition: opacity 0.3s ease;
}
.work-card__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 12px;
  background-color: #000;
  z-index: 1;
}
.work-card__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(102, 21, 21, 0.2), #3C2B26, rgba(102, 21, 21, 0.2));
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  width: 100%;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: height 0.4s ease;
  overflow: hidden;
  border-radius: 12px;
  z-index: 3;
}
.work-card__content {
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease 0.1s;
}
.work-card__title {
  color: #FFECD1;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.work-card__subtitle {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
  color: white;
}
.work-card__button {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.work-card__button:hover {
  background-color: white;
  color: black;
}
.work-card:hover::before {
  opacity: 0;
}
.work-card:hover .work-card__img {
  transform: scale(1.05);
}
.work-card:hover .work-card__overlay {
  height: 100%;
}
.work-card:hover .work-card__content {
  transform: translateY(0);
}
.work-card:hover .work-card__glow {
  opacity: 0;
}

@media (max-width: 768px) {
  .work-card__title {
    font-size: 1rem;
  }
  .work-card__subtitle {
    font-size: 0.8rem;
  }
  .work-card__button {
    padding: 6px 16px;
    font-size: 0.7rem;
  }
}
.project-body {
  margin: 0;
  padding: 0;
  background-color: #3C2B26;
  font-family: "Barlow", sans-serif;
  color: #FFECD1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.project-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 54px 8px 8px;
  margin-top: 0;
}

.aligned-container {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .aligned-container {
    width: 100%;
  }
}

.carousel-bubble {
  position: relative;
  border-radius: 18px;
  width: 100%;
}
.carousel-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.carousel-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 30px;
  z-index: 2;
}
.carousel-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.carousel-bubble:hover::before {
  opacity: 0.8;
}
.carousel-bubble:hover__glow {
  opacity: 0.8;
}
.carousel-bubble:hover__inner {
  background: rgba(0, 0, 0, 0.35);
}
.carousel-bubble__inner {
  padding: 20px;
}

.video-bubble {
  position: relative;
  border-radius: 18px;
  width: 100%;
}
.video-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.video-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 30px;
  z-index: 2;
}
.video-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-bubble:hover::before {
  opacity: 0.8;
}
.video-bubble:hover__glow {
  opacity: 0.8;
}
.video-bubble:hover__inner {
  background: rgba(0, 0, 0, 0.35);
}
.video-bubble__inner {
  padding: 20px;
}

.info-bubble {
  position: relative;
  border-radius: 18px;
  width: 100%;
}
.info-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.info-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 30px;
  z-index: 2;
}
.info-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.info-bubble:hover::before {
  opacity: 0.8;
}
.info-bubble:hover__glow {
  opacity: 0.8;
}
.info-bubble:hover__inner {
  background: rgba(0, 0, 0, 0.35);
}
.info-bubble__inner {
  padding: 30px;
}

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

.info-bubble__title {
  font-weight: 600;
  font-size: 28px;
  color: #FFECD1;
  margin-bottom: 16px;
}

.info-bubble__detail {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.related-bubble {
  position: relative;
  border-radius: 18px;
  width: 100%;
}
.related-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.related-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 30px;
  z-index: 2;
}
.related-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.related-bubble:hover::before {
  opacity: 0.8;
}
.related-bubble:hover__glow {
  opacity: 0.8;
}
.related-bubble:hover__inner {
  background: rgba(0, 0, 0, 0.35);
}
.related-bubble__inner {
  padding: 30px;
  text-align: center;
}

.related-bubble__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #FFECD1;
}

.carousel-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .carousel-wrapper {
    gap: 8px;
  }
}

.carousel {
  grid-column: 2/3;
  overflow: hidden;
  border-radius: 18px;
}

.carousel-inner {
  border-radius: 18px;
}

.carousel-item-img {
  width: 100%;
}
.carousel-item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-control-prev {
  grid-column: 1/2;
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 768px) {
  .carousel-control-prev {
    width: 36px;
    height: 36px;
  }
}
.carousel-control-prev::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: -1;
}
.carousel-control-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.carousel-control-prev:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
}

.carousel-control-next {
  grid-column: 3/4;
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 768px) {
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }
}
.carousel-control-next::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: -1;
}
.carousel-control-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-color: transparent;
  padding: 0;
}
@media (max-width: 768px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.video__container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
}
.video__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .related-grid {
    gap: 16px;
  }
}

.related-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.related-card a {
  display: block;
}
.related-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.related-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
}
.related-card__overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFE66D);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  border-radius: 3px;
}
.related-card__content {
  color: white;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.related-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .related-card__title {
    font-size: 0.9rem;
  }
}
.related-card__button {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.related-card__button:hover {
  background-color: white;
  color: black;
}
@media (max-width: 768px) {
  .related-card__button {
    padding: 4px 12px;
    font-size: 0.6rem;
  }
}
.related-card:hover {
  transform: translateY(-5px);
}
.related-card:hover img {
  transform: scale(1.08);
}
.related-card:hover .related-card__overlay {
  opacity: 1;
}
.related-card:hover .related-card__overlay::before {
  transform: scaleX(1);
}
.related-card:hover .related-card__content {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .project-main {
    padding: 52px 12px 12px;
    gap: 12px;
  }
  .carousel-bubble__inner,
  .video-bubble__inner,
  .info-bubble__inner,
  .related-bubble__inner {
    padding: 16px;
  }
  .info-bubble__title {
    font-size: 22px;
  }
  .related-bubble__title {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .nav-bubble__inner {
    padding: 6px 16px;
  }
  .nav-bubble__logo .nav-bubble__link {
    font-size: 14px;
  }
}
.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.video-placeholder__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.video-placeholder__content i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.video-placeholder__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .video-placeholder__content h3 {
    font-size: 1.2rem;
  }
}
.video-placeholder__content p {
  font-size: 0.9rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .video-placeholder__content p {
    font-size: 0.75rem;
  }
}

.projects-main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 54px 8px 8px;
  margin-top: 0;
}

.projects-container {
  width: 100%;
  margin: 0 auto;
}

.projects-bubble {
  position: relative;
  width: 100%;
  border-radius: 18px;
}
.projects-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.projects-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px;
  z-index: 2;
}
.projects-bubble:hover::before {
  opacity: 0.8;
}
.projects-bubble:hover .projects-bubble__inner {
  background: rgba(0, 0, 0, 0.4);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.projects-card {
  position: relative;
  width: 100%;
  transition: filter 0.3s ease;
  border-radius: 18px;
}
.projects-card__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 18px;
  background-color: #000;
}
.projects-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.projects-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
}
.projects-card__overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFE66D);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  border-radius: 3px;
}
.projects-card__content {
  color: white;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.projects-card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .projects-card__title {
    font-size: 1rem;
  }
}
.projects-card__button {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.projects-card__button:hover {
  background-color: white;
  color: black;
}
@media (max-width: 768px) {
  .projects-card__button {
    padding: 6px 16px;
    font-size: 0.7rem;
  }
}
.projects-card:hover .projects-card__img {
  transform: scale(1.08);
}
.projects-card:hover .projects-card__overlay {
  opacity: 1;
}
.projects-card:hover .projects-card__overlay::before {
  transform: scaleX(1);
}
.projects-card:hover .projects-card__content {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .projects-main {
    padding: 52px 12px 12px;
  }
  .projects-bubble__inner {
    padding: 16px;
  }
  .footer-bubble__inner {
    padding: 6px 16px;
  }
  .projects-card__content {
    padding: 12px;
  }
  .projects-card__title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .projects-card__button {
    padding: 4px 12px;
    font-size: 0.6rem;
  }
}
.about-body {
  margin: 0;
  padding: 0;
  background-color: #3C2B26;
  font-family: "Barlow", sans-serif;
  color: #FFECD1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-header {
  position: relative;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 8px;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.nav-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
}
.nav-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.nav-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 10px 24px;
  z-index: 2;
}
.nav-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-bubble__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav-bubble__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-bubble__menu:first-child {
  margin-right: auto;
}
.nav-bubble__menu:last-child {
  margin-left: auto;
}
.nav-bubble__logo {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 24px;
}
.nav-bubble__item {
  padding-left: 50px;
  font-size: 12px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .nav-bubble__item {
    padding-left: 30px;
  }
}
.nav-bubble__link {
  text-decoration: none;
  color: #FFECD1;
  transition: opacity 0.2s ease;
}
.nav-bubble__link:hover {
  opacity: 0.8;
}

.about-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  min-height: 0;
}

.about-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-bubble {
  position: relative;
  width: 100%;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
}
.about-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.about-bubble__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 968px) {
  .about-bubble__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
    overflow-y: visible;
  }
}
.about-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.about-bubble__image-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-bubble__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .about-bubble__image {
    max-width: 220px;
  }
}

.about-bubble__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-bubble__text-col {
  width: 100%;
}

.about-bubble__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFECD1;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .about-bubble__title {
    font-size: 1.6rem;
  }
}

.about-bubble__bio p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.about-bubble__contact {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.about-bubble__contact h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFECD1;
}
.about-bubble__contact p {
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.about-bubble__social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.about-bubble__social-link {
  color: #FFECD1;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.about-bubble__social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.about-footer {
  padding: 0 8px 8px;
  background: transparent;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  margin: 0 auto;
}
.footer-bubble::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 19px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.footer-bubble__inner {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 8px 24px;
  z-index: 2;
}
.footer-bubble__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 107, 107, 0.12) 15%, rgba(188, 158, 148, 0.1) 30%, rgba(188, 158, 148, 0.1) 70%, rgba(255, 107, 107, 0.12) 85%, rgba(255, 107, 107, 0.25) 100%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.footer-bubble__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bubble__row {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}
.footer-bubble__text {
  font-size: 11px;
  color: #FFECD1;
  opacity: 0.7;
  margin: 0;
}
.footer-bubble__credit {
  font-size: 11px;
  color: #FFECD1;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-bubble__credit:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .about-header {
    padding: 0 12px;
  }
  .about-main {
    padding: 8px 12px;
  }
  .about-footer {
    padding: 0 12px 8px;
  }
  .nav-bubble__inner {
    padding: 6px 16px;
  }
  .nav-bubble__logo {
    font-size: 14px;
  }
  .nav-bubble__item {
    padding-left: 20px;
    font-size: 10px;
  }
  .footer-bubble__inner {
    padding: 6px 16px;
  }
  .about-bubble__inner {
    padding: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about-bubble__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  .about-bubble__image {
    max-width: 300px;
    margin: 0 auto;
  }
  .about-bubble__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .about-bubble__bio p {
    font-size: 0.72rem;
    line-height: 1.45;
    margin-bottom: 12px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .about-bubble__inner {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px;
  }
  .about-bubble__image {
    max-width: 220px;
  }
  .about-bubble__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .about-bubble__bio p {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 12px;
    text-align: left;
  }
  .about-bubble__contact {
    margin-top: 16px;
    padding-top: 12px;
  }
  .about-bubble__contact h3 {
    font-size: 1rem;
    text-align: center;
  }
  .about-bubble__contact p {
    font-size: 0.8rem;
    text-align: center;
  }
  .about-bubble__social {
    justify-content: center;
    gap: 24px;
  }
  .about-bubble__social-link {
    font-size: 1.3rem;
  }
}

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