@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

h1, h2, h3, p, span {
  font-family: 'DM Sans', sans-serif;
}


html {
  scroll-behavior: smooth;
}

html, body {
  cursor: none;  /* Hide default cursor */
}

a {
  text-decoration: none; /* Remove underline */
  color: inherit;        /* Keep icon color unchanged */
}

/* Basic cursor style */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1),
              width 0.15s ease, height 0.15s ease;
  z-index: 9999;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* Hover effect - Make cursor larger with smooth transition */
.custom-cursor.hovered {
  width: 35px;  /* Larger size for hover effect */
  height: 35px;
  border-width: 2px;
  transition: width 0.15s ease, height 0.15s ease;
}

/* Force custom cursor on links and buttons */
a:hover, button:hover, input:hover, [role="button"]:hover {
  cursor: none; /* Hide default pointer */
}



/* hide scrollbar */
::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

::-webkit-scrollbar-button {
  width: 1px;
  height: 1px;
}
.external {
  min-height: 100vh;   /* allow it to be taller than the viewport */
  overflow-x: hidden;  /* keep horizontal hidden if needed */
  overflow-y: auto;    /* allow vertical scrolling */
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0A0A0A;
  color: white;
  line-height: 1.6;
}

/* Header container */
.site-header {
  background: #0A0A0A;
  padding: 16px 24px;
}

/* Navbar layout */
.navbar {
  font-family: 'DM Sans', sans-serif;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* keep brand left, nav right */
  gap: 40px; /* balanced space */
}

/* ---------- Brand ---------- */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand__img {
  margin-left: 46px;
  width: 44px;
  height: auto;
}

.brand__stack {
  display: inline-flex;
  align-items: center;  /* instead of baseline */
  gap: 6px;
}

.brand__name {
  position: relative; 
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1px;
  left: 5px;   /* moves it 30px to the right */  
}

.brand__tag {
  position: relative; 
  font-size: 12px;
  letter-spacing: 5px;
  color: #999;
  margin-top: 5px; /* lift slightly so it aligns with “Fresh” */
  left: 14px;   /* moves it 30px to the right */  
}

/* ---------- Search ---------- */
.search {
  flex: 1;                         /* expand to take center space */
  max-width: 500px;                 /* cap width */
  margin: 0 40px;                   /* spacing on both sides */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;                /* smaller height */
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 9999px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 0 0 rgba(255,255,255,0);
}

.search:hover {
  box-shadow: 0 0 5px rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.25);
}

.search:focus-within {
  box-shadow: 0 0 12px rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.55);
}

.search i {
  font-size: 16px;
  color: #888;
}

.search input {
  font-family: 'DM Sans', sans-serif;
  flex: 1;
  font-size: 14px;
  padding: 4px 0;
  background: transparent; /* should fix */
  border: none;
  color: #eaeaea;
  outline: none;
}



/* Suggestion list keeps your existing IDs/classes */
.suggestion-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 20;
}

/* ---------- Nav ---------- */
.primary-nav { min-width: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #eaeaea;
  font-size: 15px;
  transition: opacity .2s ease;
}

.nav-links a:hover { opacity: .8; }

/* ---------- Small width polish (keeps one row longer) ---------- */
@media (max-width: 1100px) {
  .brand__name { font-size: 24px; }
  .brand__tag  { letter-spacing: 4px; font-size: 11px; top: 1px; }
  .nav-links   { gap: 18px; }
  .search      { width: clamp(240px, 36vw, 480px); padding: 8px 14px; }
}

@media (max-width: 960px) {
  .brand__name { font-size: 22px; }
  .nav-links   { gap: 14px; }
  .search      { width: clamp(220px, 34vw, 420px); }
}





/* Shared Arrow Styles */
/* Shared Styles */
:root {
  --bg: #0b0b0b;
  --panel: #151515;
  --chip: #1e1e1e;
  --stroke: #2a2a2a;
  --muted: #a5a5a5;
  --accent: #ff7a1a;
  --radius: 12px;
  --text: #eaeaea;
  --heading: #ffffff;
}

/* Overall section */
.sermon-post {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* --- Video --- */
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: #000;
}

.video-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
  border-radius: var(--radius);
}

/* Badge bottom-left */
.watch-youtube {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.watch-youtube:hover {
  background: rgba(255, 255, 255, 0.2);
}

.watch-youtube svg {
  width: 18px;
  height: auto;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');


/* --- HEADER CONTAINER --- */
.sermon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;  /* ensures title+meta align with byline */
  margin-bottom: 16px;
}

/* Left column: title + meta */
.sermon-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sermon-title {
  font-size: 53px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.sermon-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #aaa;
}

/* Right column: byline */
.sermon-by {
  font-family: 'DM Sans', sans-serif;
  text-align: right;
  font-size: 16px;
  font-style: italic;
}

.sermon-by .by-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  position: relative;
  top: 3px; /* angka kecil biar turun dikit */
}

.sermon-by .by-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-style: italic;
  margin-left: 4px;
}

/* --- ACTIONS --- */
.sermon-actions {
  display: flex;
  gap: 12px;
  position: relative;
  margin-top: 24px; /* spacing below header */
}

.pill {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.pill:hover {
  border-color: #fff;
}

.chelbreaker {
  display: block;  /* acts like a <br> */
  height: .7rem;     /* spacing you want */
}

.chelbreaker2 {
  display: block;  /* acts like a <br> */
  height: .5rem;     /* spacing you want */
}

.chelbreaker3 {
  display: block;  /* acts like a <br> */
  height: .83rem;     /* spacing you want */
}

/* --- SHARE DROPDOWN --- */
.share-btn-wrapper {
  position: relative; /* parent for absolute dropdown */
  display: inline-block;
}

.share-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  font-family: 'DM Sans', sans-serif;
  border-radius: 8px;
  margin-top: 6px;
  min-width: 180px;
  z-index: 20;

  /* hidden state */
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;

  display: flex; /* keep items stacked */
  flex-direction: column;

  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* visible state */
.share-dropdown[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  font-family: 'DM Sans', sans-serif;
  padding: 10px 14px;
  text-align: left;
  background: transparent;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: #2a2a2a;
}


/* --- COPY FEEDBACK --- */
.copy-feedback {
  position: absolute;
  top: 5px;
  right: 460px;
  background: #181818;
  padding: 6px 15px;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}

.copy-feedback[aria-hidden="false"] {
  opacity: 1;
}


/* --- Sermon body --- */
.sermon-body {
  text-align: justify;
  font-size: 17px;
  line-height: 1.68;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  margin-bottom: 2rem;
}

.sermon-body p {
  margin-bottom: 18px;
}

/* --- Image slider wrapper --- */
.sermon-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

/* --- Slider --- */
.sermon-slider {
  position: relative;
  width: 100%;
  max-width: 900px;   /* make it wider */
  aspect-ratio: 16 / 9; /* widescreen instead of square */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.sermon-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the wide box nicely */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.sermon-image.active {
  opacity: 1;
}

/* --- Navigation buttons --- */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  font-weight: 300; /* thinner arrow */
  font-family: 'Helvetica Neue', Arial, sans-serif; /* clean arrows */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: background 0.35s ease;
}

.nav-btn:hover {
  background: rgba(87, 87, 87, 0.5);
}

.left-btn {
  left: -59px; /* balanced */
}

.right-btn {
  right: -59px;
}



/* Force DM Sans for all headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700;
  color: var(--heading);
}






/* Experience section */
:root{
  --bg: #0d0d0f;
  --text: #f3f3f5;
  --muted: #a9a9b2;
  --panel: #101013;
  --field: #0f0f12;
  --border: #2a2a33;
  --border-strong: #3a3a44;
  --focus: #5b8dff;
}

/* page backdrop (optional) */
body { 
  background: var(--bg); 
  color: var(--text); 
  font-family: 'DM Sans', sans-serif;
}

/* ===== Layout ===== */
.comments-wrap {
  max-width: 720px;
  margin-left: clamp(24px, 10vw, 300px);
  margin-right: 24px;
  padding: 0 0 64px 0;
  font-family: 'DM Sans', sans-serif;

  position: relative;
  transform: translateX(-190px); /* adjust this value */
}

.comments-title {
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 1.2;
  margin: 28px 0 18px;
  font-family: 'DM Sans', sans-serif;
  text-align: left;       /* ensure left alignment */
  margin-left: -4px;      /* slight shift left */
}

.reply-box{ 
  margin-top: 8px; 
  font-family: 'DM Sans', sans-serif;
}

.reply-title {
  font-size: 24px;
  font-weight: 300;
  margin: 8px 0 6px;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  top: 5px;   /* move upward slightly */
}

.reply-note{
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 16px;
  font-family: 'DM Sans', sans-serif;
}

/* ===== Form ===== */
.comment-form{ 
  display: block; 
  font-family: 'DM Sans', sans-serif;
}

.form-row{ 
  margin-bottom: 16px; 
  font-family: 'DM Sans', sans-serif;
}

.form-row label{
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.req{
  color: var(--text);
  margin-left: 2px;
  font-family: 'DM Sans', sans-serif;
}

.label-hint{
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

/* Inputs / Textarea */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea{
  width: 100%;
  background: var(--field);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  font-family: 'DM Sans', sans-serif;
}

.comment-form textarea{ 
  resize: vertical; 
  min-height: 180px; 
  font-family: 'DM Sans', sans-serif;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder{ 
  color: #8e8e97; 
  font-family: 'DM Sans', sans-serif;
}

/* Focus */
.comment-form input:focus,
.comment-form textarea:focus{
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(91, 141, 255, 0.2);
}

/* Checkbox row */
.remember .checkbox{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  user-select: none;
  font-family: 'DM Sans', sans-serif;
}

.remember input[type="checkbox"]{
  width: 14px;
  height: 14px;
  accent-color: #ffffff;
  transform: translateY(1px);
}

/* Submit button (white pill) */
.btn-submit {
  margin-top: 15px;
  min-width: 200px;               /* make button wider */
  text-align: center;
  background: #ffffff;
  color: #0f1013;
  border: 1px solid #ffffff;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.4s ease, 
              color 0.4s ease, 
              border-color 0.4s ease,
              transform 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}

/* Smooth hover: dark gray pill, white text */
.btn-submit:hover {
  background-color: #ff5d11; 
  color: #ffffff;
  border-color: rgb(255, 121, 32);
  transform: scale(1.04);         /* subtle “butter smooth” grow */
}

/* Active state: gentle press-down */
.btn-submit:active {
  transform: scale(0.98);
}



/* full-width band */
.more-sermons {
  width: 175%;
  transform: translateX(-18.5%); /* shift left, tweak % as needed */
  padding: 28px 64px 36px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}


/* header: title left, tiny link right */
.ms-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}
.ms-title{
  margin:0;
  font-size:34px;
  font-weight:600;
  color:#fff;
  font-family:'DM Sans',sans-serif;
}
.ms-see-all{
  font-size:12px;
  color:#b8b8bd;
  text-decoration:none;
  font-weight:500;
  font-family:'DM Sans',sans-serif;
}
.ms-see-all:hover{ text-decoration:underline; }

/* carousel */
.ms-carousel{
  position:relative;
  overflow:hidden;
  padding-right:58px; /* breathing room for the button */
}

/* track: 4-up, tight gaps */
.ms-track{
  --ms-gap:16px;
  display:flex;
  gap:var(--ms-gap);
  transform:translateX(0);
  will-change:transform;
}

/* card: exactly 4 per row */
.ms-card{
  flex:0 0 calc((100% - 3*var(--ms-gap))/4);
  text-decoration:none;
  color:#fff;
  font-family:'DM Sans',sans-serif;
}
.ms-thumb{
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:15/10;
  background:#0f0f12;
  box-shadow:0 4px 14px rgba(0,0,0,.35);
}
.ms-thumb img{
  width:100%; height:110%; object-fit:cover; display:block;
  transition:transform .3s ease;
}
.ms-card:hover .ms-thumb img{ transform:scale(1.03); }

.ms-meta{ margin-top:10px; }
.ms-card-title{ font-size:17px; font-weight:600; line-height:1.35; margin-bottom:4px; }
.ms-card-author{ font-size:14px; color:#a9a9b2; }

.ms-card-title {
  transition: text-shadow 0.35s ease, color 0.35s ease;
}

.ms-card-author {
  transition: text-shadow 0.35s ease, color 0.35s ease;
}

.ms-card:hover .ms-card-title {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35),
               0 0 18px rgba(255, 255, 255, 0.2);
}

.ms-card:hover .ms-card-author {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.18);
}

/* right button */
.ms-next {
  position: absolute;
  right: 60px; /* push outside */
  top: 48%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  z-index: 2;
}

.ms-next:hover { 
  background: rgba(255,255,255,.22); 
  transform: translateY(-50%) scale(1.06); 
}

.ms-next:active { 
  transform: translateY(-50%) scale(.98); 
}

.ms-next svg{ pointer-events:none; }

/* responsive: 3 then 2 per row */
@media (max-width:1100px){
  .ms-card{ flex:0 0 calc((100% - 2*var(--ms-gap))/3); }
}
@media (max-width:780px){
  .more-sermons{ padding: 24px 20px 32px; }
  .ms-card{ flex:0 0 calc((100% - var(--ms-gap))/2); }
}
@media (max-width:520px){
  .ms-card{ flex:0 0 100%; }
}



/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-links li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #fff;
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: white;
  background-color: rgba(0,0,0,0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Hero Text Overlay */
.hero-text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  max-width: 90%;
  z-index: 5;
}
.hero-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.btn {
  display: inline-block;
  min-width: 200px; /* make button wider */
  text-align: center;
  padding: 18px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 27px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;

  /* buttery smooth transitions */
  transition: background-color 0.4s ease, 
              color 0.4s ease, 
              border-color 0.4s ease,
              transform 0.25s ease;
}

.btn.white {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn:hover {
  background-color: #2c2c2c; /* dark gray */
  color: #ffffff;
  border-color: #2c2c2c;
  transform: scale(1.03); /* slight smooth grow */
}








/* Features Section */
.features {
  text-align: center;
  padding: 60px 30px;
  background-color: #0A0A0A;
}
.features h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.features p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: #ccc;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}
.feature-box h4 {
  margin-bottom: 10px;
}
.feature-box a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth color and transform transition */
}
.feature-box a:hover {
  color: #E74224; /* Set the color on hover (or any other color you prefer) */
  transform: scale(1.1); /* Optional: Slight zoom effect when hovering */
}

.worship-section {
    background-color: #11111100;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    overflow: hidden;
  }
  
  .worship-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .worship-header p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    color: #ccc;
  }

    /*********************************/
  
.horizontal-scroll-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vh;
  transform: rotate(-90deg) translate3d(0,-100vh,0);
  transform-origin: right top;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  height: 100vw;
  perspective: 1px;
	transform-style: preserve-3d;
  padding-bottom: 10rem;
}
.img-wrapper {
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  transform-origin: 50% 50%;
  transform: rotate(90deg) translateZ(.1px) scale(0.9) translateX(0px) translateY(-3vh);
  transition: 1s;
}

.img-wrapper:hover {
 min-height: 65vh;
}

.slower {
  transform: rotate(90deg) translateZ(-.2px) scale(1.1) translateX(0%) translateY(-10vh);
}
.slower1 {
  transform: rotate(90deg) translateZ(-.25px) scale(1.05) translateX(0%) translateY(8vh);
}
.slower2 {
  transform: rotate(90deg) translateZ(-.3px) scale(1.3) translateX(0%) translateY(2vh);
}
.slower-down {
  transform: rotate(90deg) translateZ(-.2px) scale(1.1) translateX(0%) translateY(16vh) ;
}
.faster {
  transform: rotate(90deg) translateZ(.15px) scale(0.8) translateX(0%) translateY(14vh) ;
}
.faster1 {
  transform: rotate(90deg) translateZ(.05px) scale(0.8) translateX(0%) translateY(10vh) ;
}
.fastest {
  transform: rotate(90deg) translateZ(.22px) scale(0.7) translateX(-10vh) translateY(-15vh) ;
}
.vertical {
   transform: rotate(90deg) translateZ(-.15px) scale(1.15) translateX(0%) translateY(0%) ;
}
.last {
  transform: rotate(90deg) translateZ(-.2px) scale(1.1) translateX(25vh) translateY(-8vh) ;
}

.scroll-info {
  top: 1rem;
}

a {
  color: inherit;
  font-weight: 500;
}

.img-wrapper a {
  overflow: hidden;
  display: block;
  padding: 0.5vh ;
  background: #ededed;
  box-shadow: 0 10px 50px #1f1f1f82;
}

a:hover img {
  filter: none;
}

.scroll-info {
  display: flex;
  align-items: center;
}
.icon svg {
    width: 50px;
    fill: currentcolor;
}
  
  /*********************************/


  /* Remove background from buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    line-height: 1;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  /* Smooth scroll and fade-in effect */
body {
  margin: 0;
  overflow-x: hidden; /* hides horizontal scroll only */
  overflow-y: auto;   /* allows vertical scrolling */
  font-family: sans-serif;
}

.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text animation when it appears */
.text-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

  