/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Baloo Tamma 2', sans-serif;
  background-color: #fffdfd;
  color: #000;
  line-height: 1.5;
}

.page {
  max-width: 1161px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.header {
  background: linear-gradient(185.36deg, rgb(217, 191, 191) 21.547%, rgba(217, 217, 217, 0) 62.346%);
  padding: 20px 32px;
  height: 138px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 3px;
}

.logo {
  width: 50px;
  height: 28px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.menu-btn {
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-btn img {
  width: 100%;
  height: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 20px 63px;
  margin-top: -50px;
}

.hero-photo {
  width: 357px;
  height: 405px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 165px;
  left: 420px;
  text-align: center;
}

.hero-title {
  font-family: 'Baumans', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}

.hero-subtitle {
  font-family: 'Bayon', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000;
}

/* Dividers */
.divider {
  height: 20px;
  margin: 30px 2%;
  background-image: url('images/divider.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.divider-line {
  height: 1px;
  background: #ccc;
  margin: 20px 2.36%;
}

/* Sections */
.section {
  text-align: center;
  padding: 30px 32px;
}

.section-title {
  font-family: 'Baloo Tamma 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.section-text {
  font-family: 'Baloo Tamma 2', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 100%;
  margin: 0 auto;
}

/* Who Am I */
.who-am-i {
  padding-top: 50px;
}

/* Gallery */
.gallery {
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #d9bfbf;
  border-radius: 4px;
}

.gallery-scroll {
  display: flex;
  gap: 20px;
  padding: 27px 26px;
  width: max-content;
}

.gallery-scroll img {
  height: 342px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.gallery-scroll img:hover {
  transform: scale(1.02);
}

.portfolio-gallery .gallery-scroll img {
  width: 303px;
}

.growing-gallery .gallery-scroll img {
  width: 303px;
}

/* Video Section */
.video-section {
  padding-bottom: 60px;
}

.video-container {
  max-width: 638px;
  margin: 40px auto 0;
}

.video-placeholder {
  position: relative;
  border-radius: 52px;
  overflow: hidden;
  width: 564px;
  height: 322px;
  margin: 0 auto;
  background: #e0d5d5;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.video-overlay img {
  width: 80px;
  height: auto;
}

/* Footer */
.footer {
  text-align: center;
  padding: 50px 32px 60px;
}

.footer-content {
  font-size: 15px;
  line-height: 2;
}

.footer-content p {
  margin-bottom: 0;
}

.copyright {
  margin-top: 20px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
  .page {
    padding: 0 20px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .header {
    height: auto;
    padding: 15px 20px;
  }

  .hero-photo {
    width: 280px;
    height: 320px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 18px;
  }

  .section-text {
    font-size: 14px;
  }

  .gallery-scroll img {
    height: 250px;
  }

  .video-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
