/* =============================================
   ARAK EL SHEIKH ELIAS — Full CSS Clone
   ============================================= */

/* === CSS Variables === */
:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #ffce50;
  --grey: #0d0d0d;
  --red: red;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
}


html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--black);
  color: var(--white);
  font-family: 'Arimo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 400;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.3s, border 0.3s;
}

a:hover {
  color: var(--orange);
  border-bottom-color: rgba(255, 255, 255, 0);
}

li {
  padding-top: 8px;
  padding-bottom: 8px;
}

em {
  font-family: 'PT Serif', serif;
  font-style: italic;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

/* === Navigation === */
.navigation-wrapper {
  z-index: 100;
  justify-content: center;
  align-items: center;
  height: 100px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.logo {
  border-bottom-style: none;
  width: 100px;
}

.logo-image {
  margin-top: 15%;
}

.button-menu {
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1em;
  transition: color 0.3s;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100px;
  width: 30px;
}

.button-menu:hover {
  color: var(--orange);
}

.menu-line {
  background-color: var(--white);
  width: 30px;
  height: 2px;
  position: absolute;
  transition: transform 0.3s;
}

.menu-1 {
  transform: translateY(-4px);
}

.menu-2 {
  transform: translateY(4px);
}

.button-menu.open .menu-1 {
  transform: translateY(0) rotate(45deg);
}

.button-menu.open .menu-2 {
  transform: translateY(0) rotate(-45deg);
}

.cart-absolute {
  z-index: auto;
  background-image: url('https://cdn.prod.website-files.com/661520d2bc858bb4a082d46f/661520d2bc858bb4a082d4a6_Orion_checkout-shopping-cart.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  justify-content: center;
  align-items: center;
  width: 5%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.whatsapp-nav {
  border-bottom-style: none;
  width: 100%;
  height: 100%;
  display: block;
}

/* === Full-screen Menu === */
.menu {
  z-index: 99;
  background-color: var(--black);
  letter-spacing: 0.4px;
  font-size: 12px;
  line-height: 1.5em;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-grid {
  z-index: 99;
  background-color: var(--black);
  letter-spacing: 0.4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 16px;
  padding: 45px;
  font-size: 12px;
  line-height: 1.5em;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.menu-items {
  grid-area: 1 / 4 / 5 / 6;
  align-self: center;
}

.navi-item {
  color: var(--white);
  border-bottom-style: none;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: 'Marcellus', sans-serif;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
  display: block;
  opacity: 0;
  transform: translateY(20px);
}

.menu.is-open .navi-item {
  opacity: 1;
  transform: translateY(0);
}

.menu.is-open li:nth-child(1) .navi-item:nth-child(1) {
  transition-delay: 0.1s;
}

.menu.is-open li:nth-child(1) .navi-item:nth-child(2) {
  transition-delay: 0.2s;
}

.menu.is-open li:nth-child(2) .navi-item {
  transition-delay: 0.3s;
}

/* Menu sub content fade */
.menu-sub {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.menu.is-open .menu-sub {
  opacity: 1;
  transform: translateY(0);
}

.navi-item:hover {
  color: var(--orange);
}

.menu-sub {
  grid-area: 1 / 1 / 5 / 3;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
  display: flex;
}

.menu-image-wrapper {
  flex: 1;
  margin-bottom: 5vw;
  position: relative;
}

.menu-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.grid-menu {
  display: block;
}

.caption {
  color: rgba(128, 128, 128, 0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Arimo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3em;
}

.link-white-with-icon {
  color: var(--white);
  padding-left: 20px;
  display: inline-block;
}

.link-white-with-icon.phone {
  background-image: url('assets/images/phone-icon.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 14px;
}

.link-white-with-icon.mail {
  background-image: url('assets/images/mail-icon.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 14px;
}

.link-white-with-icon.location {
  background-image: url('assets/images/pin-icon.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 14px;
}

.icon-social {
  background-color: #fff;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  transition: background-color 0.3s;
  display: inline-block;
  border-bottom: none;
}

.icon-social:hover {
  background-color: var(--orange);
}

.icon-social.instagram {
  background-image: url('assets/images/instagram-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40%;
  margin-top: 10px;
}

.margin-bottom {
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* === Hero Header === */
.header {
  z-index: 0;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.header-image {
  z-index: 0;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), transparent 50%), url('assets/images/hero-bg.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.content {
  border-bottom-style: none;
  flex-direction: column;
  flex: 1;
  padding: 5vw 30px;
  display: flex;
  position: relative;
}

.content.center {
  text-align: center;
  justify-content: flex-end;
  align-items: center;
}

.display-1 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -3px;
  font-family: 'Marcellus', sans-serif;
  font-size: 5vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1em;
  display: block;
  position: relative;
}

.display-2 {
  z-index: 3;
  align-self: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -2px;
  font-family: 'Marcellus', sans-serif;
  font-size: 3.5vw;
  font-weight: 400;
  line-height: 1.1em;
  position: relative;
}

.display-3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-family: 'Marcellus', sans-serif;
  font-style: normal;
  font-weight: 400;
}

.align-center {
  text-align: center;
}

.uppercase {
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* === Content Wrapper === */
.content-wrapper {
  background-color: var(--black);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
}

.content-section-container {
  width: 100%;
}

.content-section {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  box-sizing: border-box;
}

/* === Since 1870 Section === */
.since-1870-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 0;
  width: 100%;
  min-height: 600px;
}

.since-image {
  grid-area: 1 / 1 / 6 / 7;
}

.since-text-area {
  grid-area: 2 / 6 / 6 / 11;
}

.image-wrapper {
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.image-wrapper.small {
  min-height: 280px;
}

.image-wrapper.tab-image {
  min-height: 700px;
  margin-bottom: 20px;
}

.image {
  z-index: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.background {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.background.grey {
  background-color: var(--grey);
  color: var(--white);
}

.since-inner-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, auto);
  width: 100%;
  height: 100%;
}

.since-inner-grid .content:nth-child(1) {
  grid-area: 1 / 2 / 4 / 12;
}

.since-inner-grid .content:nth-child(2) {
  grid-area: 4 / 4 / 6 / 13;
}

.content.valign-top-bottom {
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0;
  padding-left: 0;
  padding-right: 30px;
}

/* === Features Row === */
.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 5vw 0;
}

.feature-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.icon-big {
  align-self: center;
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* === CTA Button === */
.cta {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 7%;
  margin-top: 5%;
  margin-bottom: 5%;
  display: flex;
}

.ctabt {
  background-color: rgba(56, 152, 236, 0);
  border: 1px solid #fff;
  border-radius: 4px;
  font-family: 'Marcellus', sans-serif;
  font-size: 25px;
  padding: 12px 30px;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.ctabt:hover {
  background-color: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

/* === Tabs Section === */
.tabs-grid {
  padding: 5vw 0;
}

.tabs-heading {
  margin-bottom: 40px;
}

.tabs {
  width: 100%;
  display: flex;
}

.tabs-menu {
  flex-direction: column;
  width: 50%;
  padding-top: 5vw;
  display: flex;
}

.tabs-content {
  flex: 1;
}

.tab-link {
  color: var(--white);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: none;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 2.5vw 20px;
  transition: padding 0.3s, background-color 0.3s, color 0.3s;
  display: flex;
  cursor: pointer;
}

.tab-link:hover {
  padding-left: 60px;
  color: var(--white);
}

.tab-link.active {
  color: var(--orange);
  background-color: rgba(255, 255, 255, 0.06);
  padding-left: 60px;
}

.tab-pane {
  display: none;
  position: relative;
}

.tab-pane.active {
  display: block;
}

.tab-text {
  padding: 20px 30px 20px 33%;
}

/* === StarPack Banner === */
.starpackdiv {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.heading-2 {
  justify-content: center;
  align-items: center;
  font-family: 'Marcellus', sans-serif;
  font-size: 50px;
  display: flex;
  text-align: center;
}

/* === Fivefold Finesse === */
.fivefold-section {
  margin-top: 5%;
}

.fivefold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.fivefold-text-area {
  order: 2;
}

.fivefold-image {
  order: 1;
}

.fivefold-inner {
  padding: 5vw 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.fivefold-inner .content {
  padding: 10px 30px;
}

/* === Our Story Section === */
.our-story-section {
  padding: 5vw 0;
}

.our-story-section .column.center {
  text-align: center;
  padding: 5vw 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-columns {
  display: flex;
  width: 100%;
}

.story-col {
  flex: 1;
  padding: 20px 30px;
}

/* === Image Slider === */
.slider-section {
  height: 75vh;
  margin-left: 10vw;
  margin-right: 10vw;
  position: relative;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-out;
}

.slider-track .slide {
  min-width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slider-arrow {
  cursor: pointer;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: background 0.3s;
  user-select: none;
  border: none;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slider-arrow-left {
  left: 15px;
}

.slider-arrow-right {
  right: 15px;
}

/* === Contact Section === */
.contact-section {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-form-area {
  padding: 5vw 30px;
}

.contact-info-area {
  padding: 5vw 30px;
}

.margin-bottom-heading {
  margin-bottom: 20px;
}

.contact-columns {
  display: flex;
}

.contact-col {
  flex: 1;
  padding-right: 20px;
}

.horiz {
  display: flex;
  align-items: stretch;
  gap: 15px;
}

.horiz.space-between {
  flex-flow: row-reverse;
  justify-content: space-between;
}

.text-field {
  color: var(--white);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  height: 55px;
  padding: 20px 0 22px;
  line-height: 1em;
  width: 100%;
  margin-bottom: 10px;
  font-family: 'Arimo', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.text-field:focus {
  border-bottom-color: var(--orange);
}

.text-field::placeholder {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Marcellus', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0 22px;
  width: 100%;
  min-height: 100px;
  color: var(--white);
  font-family: 'Arimo', sans-serif;
  font-size: 15px;
  resize: vertical;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}

.textarea:focus {
  border-bottom-color: var(--orange);
}

.textarea::placeholder {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Marcellus', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.submit-button {
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 55px;
  padding: 20px 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1em;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s, border 0.3s;
}

.submit-button:hover {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

.success-message {
  background-color: var(--orange);
  color: var(--black);
  text-align: center;
  padding: 20px;
}

.error-message {
  background-color: var(--red);
  color: var(--black);
  text-align: center;
  padding: 20px;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Tablet */
@media screen and (max-width: 991px) {
  .display-1 {
    font-size: 38px;
    line-height: 44px;
  }

  .display-2 {
    font-size: 32px;
    line-height: 36px;
  }

  .content {
    margin-top: 5%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .fivefold-section .content {
    margin-top: 0;
  }

  .navigation-wrapper {
    height: 60px;
  }

  .button-menu {
    padding-top: 20px;
    padding-bottom: 20px;
    right: 2%;
  }

  .navi-item {
    font-size: 30px;
  }

  .menu-grid {
    padding: 20px;
    overflow: auto;
  }

  .cart-absolute {
    display: block;
    left: 3%;
    right: auto;
    width: 12%;
  }

  .logo-image {
    margin-top: 50%;
  }

  .whatsapp-nav {
    width: 100%;
    display: block;
  }

  .starpackdiv {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-grid {
    gap: 3rem;
  }

  .since-1870-grid {
    min-height: 400px;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  li {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .image-wrapper {
    min-height: 280px;
  }

  .image-wrapper.tab-image {
    min-height: 280px;
  }

  .display-1 {
    font-size: 32px;
    line-height: 38px;
  }

  .display-2 {
    font-size: 28px;
    line-height: 34px;
    margin-left: 0;
  }

  .display-1 {
    margin-left: 0;
  }

  .content {
    text-align: center;
    align-self: center;
    padding: 35px 20px;
    width: 100%;
  }

  .content.valign-top-bottom {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content.center {
    align-self: center;
  }

  /* Hero */
  .header {
    height: auto;
    min-height: 100vh;
  }

  .header-image {
    min-height: 100vh;
    position: relative;
  }

  /* Since 1870 - stack vertically */
  .since-1870-grid {
    display: block;
    min-height: auto;
    width: 100%;
  }

  .since-text-area {
    position: relative;
  }

  .since-inner-grid {
    display: block;
  }

  /* Features - single column */
  .features-row {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    max-width: 250px;
  }

  /* Story columns - stack */
  .story-columns {
    display: block;
    width: 100%;
  }

  .story-col {
    padding: 5vw 20px;
    width: 100%;
  }

  /* Hamburger menu on left for mobile */
  .button-menu {
    padding-left: 20px;
    top: 0;
    bottom: 0;
    left: 15px;
    right: auto;
  }

  .menu {
    overflow: auto;
  }

  .menu-grid {
    display: block;
    padding-top: 60px;
    overflow: auto;
  }

  .menu-items {
    margin-bottom: 40px;
  }

  .menu-image-wrapper {
    display: none;
  }

  .menu-sub {
    flex-flow: wrap;
  }

  /* Tabs - stack vertically */
  .tabs {
    flex-direction: column;
  }

  .tabs-menu {
    width: 100%;
  }

  .tab-link {
    padding: 15px 20px;
  }

  .tab-link:hover {
    padding-left: 20px;
  }

  .tab-link.active {
    padding-left: 20px;
  }

  .tab-text {
    padding: 15px 10px;
  }

  /* Content wrapper */
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-columns {
    display: block;
  }

  .contact-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  /* Slider */
  .slider-section {
    height: 50vh;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  /* Fivefold - stack */
  .fivefold-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .fivefold-text-area {
    order: 1;
  }

  .fivefold-image {
    order: 2;
  }

  /* Cart icon */
  .cart-absolute {
    justify-content: flex-end;
    width: 14%;
    left: auto;
    right: 3%;
  }

  /* StarPack */
  .starpackdiv {
    padding: 20px 10px;
  }

  .heading-2 {
    font-size: 28px;
    line-height: 1.2em;
  }

  /* CTA button */
  .ctabt {
    font-size: 20px;
    padding: 10px 25px;
  }

  /* Slider arrows */
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  .content {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .content.no-left-right {
    justify-content: center;
    align-items: center;
  }

  .horiz {
    flex-direction: column;
    gap: 0;
  }

  .horiz.space-between {
    flex-direction: column;
    align-items: stretch;
  }

  .display-1 {
    font-size: 24px;
    line-height: 30px;
  }

  .display-2 {
    font-size: 22px;
    line-height: 28px;
  }

  .heading-2 {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 24px;
  }

  .slider-section {
    height: 30vh;
    margin-left: 3vw;
    margin-right: 3vw;
  }

  .cart-absolute {
    width: 16%;
  }

  .tab-text {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 0;
  }

  .list-item {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .starpackdiv {
    height: auto;
  }

  /* Navi items smaller on tiny screens */
  .navi-item {
    font-size: 28px;
  }

  .menu-grid {
    margin-top: 10%;
  }

  /* Logo */
  .logo {
    width: 70px;
  }

  .logo-image {
    margin-top: 40%;
  }

  /* Navigation height */
  .navigation-wrapper {
    height: 50px;
  }

  /* Feature items tighter */
  .feature-item {
    padding: 10px 20px;
  }

  .icon-big {
    width: 50px;
    height: 50px;
  }

  /* Fivefold inner */
  .fivefold-inner {
    padding: 20px 15px;
  }

  .fivefold-inner .content {
    padding: 10px 15px;
  }

  /* CTA */
  .ctabt {
    font-size: 18px;
    padding: 10px 20px;
  }

  .cta {
    margin-top: 8%;
    margin-bottom: 8%;
  }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

/* Elements start hidden and below */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Hero text animation */
.header .display-1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s ease 0.3s forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature icons - scale in */
.feature-item.reveal {
  transform: translateY(30px) scale(0.95);
}

.feature-item.reveal.revealed {
  transform: translateY(0) scale(1);
}

/* Story columns - staggered fade up */
.story-col.reveal:nth-child(1) {
  transform: translateY(30px);
  opacity: 0;
}
.story-col.reveal:nth-child(2) {
  transform: translateY(40px);
  opacity: 0;
}
.story-col.reveal:nth-child(3) {
  transform: translateY(50px);
  opacity: 0;
}

.story-col.reveal.revealed {
  transform: translateY(0);
  opacity: 1;
}
