/* General Styling */
body {
    margin: 0;
    font-family: "Neue Haas Grotesk", 'Helvetica Neue', Arial, sans-serif;
	_font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1d1d1f;
    background-color: #fff; cursor: none;
    scroll-behavior: smooth;
}

a,
button {
  display: inline-block;
  border: 1px solid gray;
  padding: .5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
    margin: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: inherit;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
}

.demo__elements {
  display: flex;
  gap: 1rem
}

.cursor {
    --cursor-diameter: 75px;
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    translate: calc(var(--mx) - var(--cursor-diameter) / 2)
      calc(var(--my) - var(--cursor-diameter) / 2);
    width: var(--cursor-diameter);
    aspect-ratio: 1/1;
    pointer-events: none;
    display: grid;
    z-index: 1000;
    opacity: 0;
    scale: 0;
    transition: opacity 0.25s ease;
  }

  :root:hover .cursor {
    opacity: 1;
    scale: 1;
  }

  .cursor__pointer {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    width: var(--cursor-diameter);
    height: var(--cursor-diameter);
    transform-origin: 50% 50%;
    border-radius: 50%;
    background: hotpink;
    transition: 0.25s ease;
    scale: 0.2;
    /* opacity: 0.5; */
    color: white;
  }

  .cursor__pointer--action {
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: monospace;
    text-transform: uppercase;
  }

.cursor__pointer--icon {
  stroke: currentColor;
}

  .cursor__icon {
    scale: 2;
  }

  .cursor__pointer--default {
    opacity: 0.5;
  }

  body:has(:is(a:hover, button:hover)) .cursor__pointer {
    scale: 0.5;
  }

  body:has(:is(a:hover, button:hover)) .cursor__pointer--default {
    opacity: 0.5;
  }

  body:has(.cursor-read:hover) .cursor__pointer {
    scale: 1;
  }

  body:has(.cursor-read:active) .cursor__pointer {
    scale: 0.9;
  }

  body:has(.cursor-read:hover) .cursor__pointer--read {
    opacity: 1;
  }

  body:has(.cursor-icon:hover) .cursor__pointer {
    scale: 0.5;
  }

  body:has(.cursor-icon:active) .cursor__pointer {
    scale: 0.4;
  }

  body:has(.cursor-icon:hover) .cursor__pointer--icon {
    opacity: 1;
  }

  body:has(:is(a:active, button:active)) .cursor__pointer--default {
    scale: 0.4;
  }

/* Main Navigation Bar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.main-nav {
    _display: flex;
    justify-content: space-between;
    _align-items: center;
    _background: rgba(255, 255, 255, 0.8);
    padding: 20px 0px;
    height: 44px;
    font-size: 0.8rem;
    font-weight: 400;
}

.nav-left, .nav-right {
    _display: flex;
    _align-items: center;
    gap: 15px; 
}
.nav-left a, .nav-right a {
    text-decoration: none;
    _color: #1d1d1f;
    transition: opacity 0.2s; 
}
.nav-left a:hover, .nav-right a:hover {
    opacity: 0.7;
}
.logo .fab.fa-apple {
    _font-size: 1.2rem;
}
.nav-right .nav-icon {
    font-size: 1rem;
}

/* Sub-Navigation Bar */
.sub-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    _background-color: #f5f5f7;
    border-bottom: 1px solid #d2d2d7;
    height: 52px;
    display: none; /* Initially hidden */
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.sub-nav.visible {
    display: block;
    transform: translateY(0);
}

.sub-nav-content {
    _display: flex;
    justify-content: space-between;
    _align-items: center;
    max-width: 980px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}
.sub-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}
.buy-btn {
    background-color: #0071e3;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 980px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}
.buy-btn:hover {
    background-color: #0077ed;
}


/* Sections */
.section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 15vh;
    color: #1d1d1f;/* General Styling */
body {
    margin: 0;
    font-family: "Neue Haas Grotesk", 'Helvetica Neue', Arial, sans-serif;
    color: #1d1d1f;
    background-color: #fff;
    scroll-behavior: smooth;
}

/* Main Navigation Bar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 0 20px;
    height: 44px;
    font-size: 0.8rem;
    font-weight: 400;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-left a, .nav-right a {
    text-decoration: none;
    color: #1d1d1f;
    transition: opacity 0.2s;
}
.nav-left a:hover, .nav-right a:hover {
    opacity: 0.7;
}
.logo .fab.fa-apple {
    font-size: 1.2rem;
}
.nav-right .nav-icon {
    font-size: 1rem;
}

/* Sub-Navigation Bar */
.sub-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #f5f5f7;
    border-bottom: 1px solid #d2d2d7;
    height: 52px;
    display: none; /* Initially hidden */
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.sub-nav.visible {
    display: block;
    transform: translateY(0);
}

.sub-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}
.sub-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}
.buy-btn {
    background-color: #0071e3;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 980px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}
.buy-btn:hover {
    background-color: #0077ed;
}


/* Sections */
.section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 15vh;
    color: #1d1d1f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.section.hero-section {
    height: 100vh; /* Adjust for main content */
    background-image: url('images/batik.png');
}
#section-2 {
    background-image: url('images/journ.png');
    color: #f5f5f7; /* White text for dark image */
}
#section-3 {
    background-image: url('images/journ.png');
}
#section-4 {
    background-image: url('images/journ.png');
}

.new-tag {
    color: #f56300;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}
.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}
.sub-title {
    font-size: 1.7rem;
    font-weight: 400;
    margin-top: 5px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}
.cta-link {
    text-decoration: none;
    color: #0071e3;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.2s;
}
.cta-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.feature-content {
    justify-content: center;
}
.feature-title {
    _font-size: 5.5rem;
    _font-weight: 700;
    margin: 0;
}
.feature-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 10px;
    max-width: 600px;
}

/* Footer */
.main-footer {
    background-color: #f5f5f7;
    padding: 20px;
    font-size: 0.75rem;
    color: #6e6e73;
    max-width: 980px;
    margin: 0 auto;
}
.footer-note {
    padding-bottom: 20px;
    border-bottom: 1px solid #d2d2d7;
}
.footer-links-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
}
.footer-column h4 {
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 5px;
}
.footer-column a {
    color: #6e6e73;
    text-decoration: none;
    transition: text-decoration 0.2s;
}
.footer-column a:hover {
    text-decoration: underline;
}
.footer-copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #d2d2d7;
}
.footer-copyright a {
    color: #6e6e73;
    text-decoration: none;
}
.footer-copyright p:first-child {
    min-width: 250px;
}

/* Media Queries */
@media (max-width: 768px) {
    .main-nav {
        gap: 10px;
        justify-content: center;
    }
    .main-nav .nav-left a:not(.logo), .main-nav .nav-right a {
        display: none;
    }
    .main-nav .nav-left {
        justify-content: space-between;
        width: 100%;
    }
    .main-nav .nav-right .fa-shopping-bag {
        display: block;
    }
    .main-nav .nav-right .fa-search {
        display: block;
    }
}
@media (max-width: 600px) {
    .main-title {
        font-size: 2.5rem;
    }
    .sub-title {
        font-size: 1.5rem;
    }
    .feature-title {
        font-size: 0.8rem;
    }
    .footer-links-container {
        flex-direction: column;
    }
}
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.section.hero-section {
    height: 100vh; /* Adjust for main content */
    background-image: url('images/journ8.webp');
}
#section-2 {
    background-image: url('images/paladino.webp');
    color: #f5f5f7; /* White text for dark image */
}
#section-3 {
    background-image: url('images/dear.webp');
}
#section-4 {
    background-image: url('images/assembled.webp');
	color: #f5f5f7; /* White text for dark image */
}
#section-5 {
    background-image: url('images/archifest.webp');
	color: #f5f5f7; /* White text for dark image */
}

#section-6 {
    background-image: url('images/meatmen.webp');
}

#section-7 {
    background-image: url('images/nowboarding.webp');
}

#section-8 {
    background-image: url('images/nusarchitecture.gif');
	color: #f5f5f7; /* White text for dark image */
}

#section-9 {
    background-image: url('images/lovebonito.webp');
}

#section-10 {
    background-image: url('images/alchemist.webp');
}

#section-11 {
    background-image: url('images/rachelrax.webp');
}

#section-12 {
    background-image: url('images/facebook3.webp');
}

#section-13 {
    background-image: url('images/dearnewsprint.webp');
}

#section-14 {
    background-image: url('images/batik.webp');
	
}

#section-15 {
	background-image: url('images/theabeyantnursery.webp');
	color: #f5f5f7; /* White text for dark image */
}

#section-16 {
    background-image: url('images/nike2.png');
	color: #f5f5f7; /* White text for dark image */
}

#section-17 {
    background-image: url('images/savehair.webp');
	color: #f5f5f7; /* White text for dark image */
}

#section-18 {
    background-image: url('images/prestivo.webp');
	color: #f5f5f7; /* White text for dark image */
}

#section-19 {
    background-image: url('images/tfop.webp');
	color: #f5f5f7; /* White text for dark image */
}

#section-20 {
    background-image: url('images/singaporeshorts.webp');
}

#section-21 {
    background-image: url('images/portal.webp');
}

#section-22 {
    background-image: url('images/noahnonbe.webp');
}

#section-23 {
    background-image: url('images/storm.png');
	color: #f5f5f7; /* White text for dark image */
}

#section-24 {
    background-image: url('images/herself.webp');
	color: #f5f5f7; /* White text for dark image */
}

#section-25 {
    background-image: url('images/npcard.jpg');
}

.new-tag {
    color: #f56300;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}
.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}
.sub-title {
    font-size: 1.7rem;
    font-weight: 400;
    margin-top: 5px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}
.cta-link {
    text-decoration: none;
    color: #0071e3;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.2s;
}
.cta-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.feature-content {
    justify-content: center; display: flex; position: absolute; bottom: 12px; left: 12px; _padding: 10px 20px 10px 20px; _margin: 4px 2px;
	_background-color: rgb(255, 102, 0); _width:100%;
}
.feature-title {
    font-size: 1.3rem; 
    font-weight: 100; display: block;
    _background-color: rgb(0, 102, 0); border: 1px solid #000; _padding: 10px 20px 10px 20px; _margin: 4px 2px;
	position: absolute;
	  left: 0px; top: 0;
	  width: 300px;
	  _border: 3px solid green;
	  padding: 10px; background-blend-mode: luminosity;
    -webkit-backdrop-filter: blur(7.5rem);
    backdrop-filter: blur(7.5rem);
}
.feature-text {
    font-size: 0.2rem;
    font-weight: 400;
    margin-top: 10px;
    max-width: 600px; _background-color: rgb(255, 102, 0); border: 1px solid #000; padding: 10px 20px 10px 20px; margin: 4px 2px; border-radius: 26px;
}

/* Footer */
.main-footer {
    background-color: #f5f5f7;
    padding: 20px;
    font-size: 0.75rem;
    color: #6e6e73;
    max-width: 980px;
    margin: 0 auto;
}
.footer-note {
    padding-bottom: 20px;
    border-bottom: 1px solid #d2d2d7;
}
.footer-links-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
}
.footer-column h4 {
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 5px;
}
.footer-column a {
    color: #6e6e73;
    text-decoration: none;
    transition: text-decoration 0.2s;
}
.footer-column a:hover {
    text-decoration: underline;
}
.footer-copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #d2d2d7;
}
.footer-copyright a {
    color: #6e6e73;
    text-decoration: none;
}
.footer-copyright p:first-child {
    min-width: 250px;
}

/* Media Queries */
@media (max-width: 768px) {
    .main-nav {
        gap: 10px;
        justify-content: center;
    }
    .main-nav .nav-left a:not(.logo), .main-nav .nav-right a {
        display: none;
    }
    .main-nav .nav-left {
        justify-content: space-between;
        width: 100%;
    }
    .main-nav .nav-right .fa-shopping-bag {
        display: block;
    }
    .main-nav .nav-right .fa-search {
        display: block;
    }
}
@media (max-width: 600px) {
    .main-title {
        font-size: 2.5rem;
    }
    .sub-title {
        font-size: 1.5rem;
    }
    .feature-title {
        font-size: 5.8rem;
    }
    .footer-links-container {
        flex-direction: column;
    }
}