
body {
  margin: 0;
  background: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

.banner-wrapper {
  width: 1280px;
  margin: 20px auto 0 auto;
  border: 6px solid black;
  background: black;
}

.banner {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.curve {
  width: 256px;
  height: 160px;
  object-fit: cover;
}

.star {
  position: absolute;
  width: 90px;
  top: 35px;
  z-index: 5;
}

.star-left { left: 40px; }
.star-center { left: 50%; transform: translateX(-50%); }
.star-right { right: 40px; }

.logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.logo-banner {
  width: 320px;
  transition: filter 0.25s ease;
  pointer-events: none;
}

.logo-link:hover {
  filter: drop-shadow(0 0 15px rgba(255,255,255,1));
}

.navbar {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;   
  gap: 120px;
}

.nav-btn {
  display: flex;
  align-items: center;   */
  justify-content: center;
}

.nav-btn img {
  width: 200px;        
  height: auto;
  display: block;       
  transition: filter 0.25s ease;
  user-select: none;
}

.nav-btn:hover img {
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.85));
}

.content-area {
  margin-top: 60px;
}


.main-img {
  width: 900px;              
  max-width: 90%;
  display: block;

  margin: 5px auto 0 auto;  

  border-radius: 28px;
  filter: drop-shadow(0 0 18px rgba(0,0,0,0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.main-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.45));
}

.works-content {
  width: 100%;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.portfolio-section {
  margin-bottom: 90px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.portfolio-title {
  font-family: "Crysh";
  font-size: 48px;
  margin: 0;
}

.title-icon {
  height: 50px;
}

.scroll-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.scroll-inner {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 25px;
  padding-bottom: 10px;
}

.scroll-inner::-webkit-scrollbar {
  display: none;
}
.square-item {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}


.square-item:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(0,0,0,0.45));
}

.arrow {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.modal.fade-out {
  animation: fadeOut 0.25s ease-out forwards;
}

.modal-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}


.modal-media {
  width: 100%;
  max-height: 85vh;
  border-radius: 20px;
  display: none;
}


.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 45px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.scroll-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 25px auto;
  gap: 15px;
}

.scroll-inner {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 10px 0;
}

.scroll-inner::-webkit-scrollbar {
  display: none;
}

.square-item {
  width: 260px;
  height: 260px;
  border-radius: 25px;
  object-fit: cover;
  background: #f0f0f0;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.square-item:hover {
  transform: scale(1.05);
}

.arrow {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  color: black;
}



.about-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0 80px;
}
.about-panel {
  width: 1280px;                
  max-width: calc(100% - 40px);
  background: #e0e0e0;          
  padding: 36px 48px;
  box-sizing: border-box;
  position: relative;
  border-top: 2px solid rgba(0,0,0,0.6);
  border-left: 1px solid rgba(0,0,0,0.15);
  border-right: 1px solid rgba(0,0,0,0.15);
  border-bottom: 2px solid rgba(0,0,0,0.12);
  box-shadow: 0 6px 0 rgba(0,0,0,0.12) inset;
}


.top-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}


.portrait {
  width: 320px;                
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
}

.portrait-img {
  width: 320px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  background: #666;           
  display: block;
}

.bio {
  flex: 1 1 auto;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
  padding-top: 6px;
}

.bio-title {
  margin: 0 0 14px 0;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;

}

.thin-divider {
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 32px 0;
}
.thin-divider.bottom {
  margin-top: 44px;
}


.three-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}


.card {
  background: transparent;
  padding: 8px 12px 20px 12px;
  box-sizing: border-box;
  position: relative;
  border-left: 1px solid rgba(0,0,0,0.06);
  border-right: 1px solid rgba(0,0,0,0.06);
  min-height: 150px;
}
.card-header {
  display: block;
  width: 220px;
  max-width: 100%;
  margin: 0 auto 12px auto;
}


.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #111;
  font-size: 14px;
}
.card li {
  margin: 8px 0;
  opacity: 0.95;
}

.card:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 24px;
  bottom: 8px;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.corner-star {
  width: 140px;
  position: absolute;
  bottom: -24px;
  opacity: 0.95;
  transform: rotate(-6deg);
}
.corner-star.left {
  left: -30px;
}
.corner-star.right {
  right: -30px;
  transform: rotate(6deg);
}

@media (max-width: 1100px) {
  .about-panel { padding: 24px; }
  .top-row { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .portrait { width: 260px; flex: 0 0 260px; }
  .portrait-img { width: 260px; }
  .bio { padding-top: 0; }
  .three-cols { grid-template-columns: 1fr; gap: 22px; }
  .card:not(:first-child)::before { display: none; }
  .card-header { width: 320px; max-width: 85%; margin-left:auto; margin-right:auto; }
  .corner-star { display: none; }
}

.contact-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 0;
  position: relative;
}

.contact-icons img {
  width: 170px;
  height: auto;
}

.contact-form {
  width: 420px;
  background: white;
  padding: 40px;
  border-radius: 6px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.label-img {
  width: 160px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  background: #f3f3f3;
  border-radius: 4px;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

.form-group textarea {
  height: 130px;
  resize: none;
}

.send-btn {
  width: 100%;
  padding: 12px;
  background: black;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

.email-note {
  margin-top: 20px;
  font-size: 11px;
  text-align: center;
  color: #444;
}

.left-icon, .right-icon {
  display: flex;
  align-items: center;
}
