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

body {
  font-family: "Montserrat", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

.nav-links a {
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #8A2BE2 !important;
}

.btn-lang {
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-lang:hover {
  color: #8A2BE2;
}
.btn-lang.active-lang {
  color: #8A2BE2;
  font-weight: 900;
}

.accent-link:hover, .back-link:hover, .btn-view-more:hover {
  color: #8A2BE2 !important;
  border-color: #8A2BE2 !important;
  opacity: 1 !important;
}

.work-card:hover .work-overlay {
  background: rgba(138, 43, 226, 0.4);
}

header {
  position: fixed;
  top: 25px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2000;
  pointer-events: none;
}

.nav-floating {
  pointer-events: auto;
  background: #ffffff;
  padding: 10px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  width: -moz-fit-content;
  width: fit-content;
  gap: 30px;
}
@media (max-width: 1024px) {
  .nav-floating {
    width: 92%;
    max-width: 500px;
    justify-content: space-between;
  }
}

.nav-brand {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -1px;
  color: #1a1a1a;
  text-decoration: none;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-container .nav-links {
  display: flex;
  gap: 20px;
}
.nav-container .nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}
.nav-container .lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 20px;
}
.nav-container .lang-switch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .nav-container .lang-switch {
    padding-left: 0;
    margin-top: 30px;
  }
  .nav-container .lang-switch::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 2004;
    opacity: 0;
  }
  .nav-container.active {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-container .nav-links {
    flex-direction: column;
    gap: 30px;
  }
  .nav-container .nav-links a {
    font-size: 26px;
    font-weight: 900;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2005;
}
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #1a1a1a;
  transition: 0.3s;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#hero {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  line-height: 0;
}

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

.blog-content-wrapper {
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .blog-content-wrapper {
    padding: 60px;
  }
}
.blog-content-wrapper .post-main-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  line-height: 1.2;
}
.blog-content-wrapper .post-body p {
  font-size: clamp(1rem, 4vw, 1.15rem);
}

.full-screen-view .section-container {
  padding: 100px 5% 40px;
}
@media (min-width: 992px) {
  .full-screen-view .section-container {
    padding: 140px 5% 60px;
  }
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.section-title {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.work-card {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .work-card {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .work-card {
    height: 300px;
  }
}
.work-card .work-image-box {
  width: 100%;
  height: 100%;
}
.work-card .work-image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card:hover img {
  transform: scale(1.05);
}
.work-card .work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: background 0.3s ease;
}
.work-card:hover .work-overlay {
  background: rgba(0, 0, 0, 0.3);
}
.work-card .work-info {
  color: #ffffff;
}
.work-card .work-info .work-name {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}
.work-card .work-info .work-cat {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
}

.view-more-container {
  text-align: center;
  margin-top: 48px;
}
.view-more-container .btn-view-more {
  text-decoration: none;
  font-weight: 900;
  color: #1a1a1a;
  font-size: 14px;
  border-bottom: 2px solid #8A2BE2;
  padding-bottom: 5px;
  transition: 0.3s ease;
}
.view-more-container .btn-view-more:hover {
  opacity: 0.6;
}

.full-screen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 500;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.full-screen-view:target {
  display: block;
  animation: fadeIn 0.4s ease-out;
}
.full-screen-view .section-container {
  padding: 100px 5% 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .full-screen-view .section-container {
    padding: 140px 5% 60px;
  }
}
.full-screen-view .back-link {
  display: inline-block;
  margin-bottom: 30px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  transition: color 0.3s ease;
}
.full-screen-view .back-link:hover {
  color: #8A2BE2;
}

.detail-mode .detail-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (min-width: 992px) {
  .detail-mode .detail-container {
    padding: 140px 0 80px;
  }
}
.detail-mode .full-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .detail-mode .full-img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.grid-layout {
  display: grid;
  gap: 32px;
  width: 100%;
}
.grid-layout.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-layout.grid-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-layout {
    grid-template-columns: 1fr !important;
  }
}

.card-base {
  background: #ffffff;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 480px) {
  .card-base {
    padding: 32px;
  }
}
.card-base:hover {
  transform: translateY(-8px);
  border-color: #8A2BE2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
.card-base .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.card-base .card-num {
  font-size: 14px;
  font-weight: 900;
  color: #ccc;
}
.card-base .card-title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}
.card-base .card-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.card-base .accent-link {
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
  font-weight: 900;
  color: #1a1a1a;
  font-size: 13px;
}
.card-base .accent-link:hover {
  color: #8A2BE2;
}

.blog-content-wrapper {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #ffffff;
}
@media (min-width: 768px) {
  .blog-content-wrapper {
    padding: 60px;
  }
}
.blog-content-wrapper .post-main-title {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -1px;
}
.blog-content-wrapper .post-body p {
  font-size: clamp(1rem, 4vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}
.blog-content-wrapper .post-body h3 {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  margin: 40px 0 15px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 900;
}
.blog-content-wrapper .post-body ul {
  margin: 20px 0;
  padding-left: 20px;
}
.blog-content-wrapper .post-body ul li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #555;
}
.blog-content-wrapper .accent-link {
  text-decoration: none;
  font-weight: 900;
  color: #1a1a1a;
  font-size: 12px;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  padding-bottom: 4px;
}
.blog-content-wrapper .accent-link:hover {
  color: #8A2BE2 !important;
  border-color: #8A2BE2 !important;
}

.detail-mode .detail-container {
  width: 100%;
  padding: 100px 15px 60px;
}
@media (min-width: 992px) {
  .detail-mode .detail-container {
    padding: 140px 0 80px;
  }
}
.detail-mode .back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 900;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 13px;
}
.detail-mode .back-link:hover {
  color: #8A2BE2;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

.about-image {
  flex: 1;
  max-width: 450px;
}
.about-image .profile-img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-text {
  flex: 1.5;
}
@media (max-width: 992px) {
  .about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .about-text p {
    text-align: center;
    width: 100%;
  }
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input, .contact-form textarea {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #8A2BE2;
}
.contact-form input:invalid:not(:-moz-placeholder), .contact-form textarea:invalid:not(:-moz-placeholder) {
  border-color: #ff4d4d;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.1);
}
.contact-form input:invalid:not(:placeholder-shown), .contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: #ff4d4d;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.1);
}
.contact-form input:valid:not(:-moz-placeholder), .contact-form textarea:valid:not(:-moz-placeholder) {
  border-color: #8A2BE2;
}
.contact-form input:valid:not(:placeholder-shown), .contact-form textarea:valid:not(:placeholder-shown) {
  border-color: #8A2BE2;
}
.contact-form button {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 20px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}
.contact-form button:hover {
  background: #8A2BE2;
}

.social-box {
  display: flex;
  gap: 30px;
}
.social-box a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 900;
  border-bottom: 2px solid #8A2BE2;
}
.social-box a:hover {
  opacity: 0.7;
}

footer {
  border-top: 1px solid #f0f0f0;
  padding: 60px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #999;
}/*# sourceMappingURL=style.css.map */