/* ========================================
   Top Page: Body Override
   ======================================== */
html, body {
  height: 100%;
  overflow: hidden;
}

/* ========================================
   Section Arrows (Center Bottom)
   ======================================== */
.section-arrows {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.arrow-up, .arrow-down {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  line-height: 1;
  padding: 4px 8px;
}

.arrow-up:hover, .arrow-down:hover {
  color: #fff;
}

/* ========================================
   Scroll to Top
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.3s;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Fullpage
   ======================================== */
.fullpage-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fullpage-container {
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
}

.section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ========================================
   Section Backgrounds
   ======================================== */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.section-overlay--blue {
  background: rgba(10, 25, 50, 0.55);
}

/* ========================================
   Section Content
   ======================================== */
.section-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 220px;
  padding-right: 15%;
  padding-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.section.active .section-content {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 25px;
}

.section-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  max-width: 680px;
}

.section-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #fff;
  transition: background 0.3s, border-color 0.3s;
  align-self: flex-start;
}

.section-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ========================================
   Blog Section
   ======================================== */
.section-blog {
  background: #111;
}

.section-blog-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-left: 200px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.section-blog.active .section-blog-inner {
  opacity: 1;
  transform: translateY(0);
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.blog-more {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: background 0.3s, border-color 0.3s;
}

.blog-more:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.blog-more span {
  margin-left: 8px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  flex: 1;
  min-height: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 18px 15px;
  background: #1a1a1a;
  flex: 1;
}

.blog-card-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.blog-card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

/* First section active by default */
.section:first-child .section-content {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive (Fullpage)
   ======================================== */
@media (max-width: 1024px) {
  .section-content {
    padding-left: 170px;
    padding-right: 10%;
  }
  .section-blog-inner {
    padding-left: 160px;
  }
}

@media (max-width: 768px) {
  .section-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .section-blog-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    font-size: 24px;
  }
  .section-text {
    font-size: 13px;
    line-height: 1.7;
  }
}
