/* Base Styles */
:root {
    --black: #000000;
    --dark-gray: #121212;
    --medium-gray: #222222;
    --light-gray: #333333;
    --white: #ffffff;
    --green: #c2dfb3;
    --orange: #FF4500;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--green);
    letter-spacing: 0.15em;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: var(--green);
    letter-spacing: 0.15em;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 2; /* Increased line height to 2 */
}

a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--green);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.highlight {
    color: var(--green);
    font-weight: 600;
}

.feature-quote {
    font-size: 3rem; /* Reduced from 3.6rem */
    font-weight: 100; /* Ensuring it's explicitly 100 (thin) */
    line-height: 1.28; /* 20% less than 1.6 */
    text-transform: none;
    max-width: 800px;
    margin: 4rem; /* 4rem margin on all sides */
    text-align: left;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: var(--black);
    height: 60px; /* Fixed height for consistent alignment */
}

/* Center the logo */
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.logo img {
    height: 18px;
    display: block; /* Prevent extra space below image */
}

/* Mobile navigation toggle */
.mobile-nav-toggle {
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px; /* Reduced from 30px */
    height: 20px; /* Reduced from 24px */
    padding: 0;
    margin: 0;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 1px; /* Thinner lines - reduced from 2px */
    background-color: var(--white);
    margin: 5px 0; /* Slightly reduced from 6px */
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop CTA */
.desktop-cta {
    margin-left: auto;
    height: 30px;
    display: flex;
    align-items: center;
}

/* Large Preorder button */

.button {
  border: none;
  color: black;
  padding: 50px 50px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #82c5ac;
}

/* Navigation menu */
nav {
    position: fixed;
    top: 0;
    left: -100%; /* Start off-screen from left */
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 5rem 2rem 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
}

nav.active {
    left: 0; /* Slide in from left */
}

nav ul {
    display: flex;
    flex-direction: column; /* Always stack vertically */
    gap: 2rem;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}

/* Updated button styling */
.cta-button {
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
    padding: 0.2rem 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.6;
    font-size: 0.7rem; /* Smaller font size */
    letter-spacing: 0.1em;
}

.cta-button:hover {
    color: var(--green);
    border-color: var(--green);
    background-color: transparent;
}


/* Updated button styling */
.preorder-button {
    color: black;
    background-color: white;
    border: 1px solid black;
    padding: 0.2rem 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 2.6;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
}







/* Parallax Sections */
.jarallax {
  height: 100vh; /* Full viewport height */
  background-size: cover; /* Ensures image covers the section */
  background-position: center; /* Centers the image */
  position: relative; /* For content positioning */
}

/* Hero Section */
#journey {
    background-image: url('images/hero-background.jpg') !important;
}

#hero h2 {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.6em;
    line-height: 1.8;
    color: var(--white);
}

#hero .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width:50%;
    margin-left:0;
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    padding:0 1.5rem;
}

/* Mission Section */
#mission {
    background-image: url('images/philosophy-background.jpg') !important;
}

#mission h2 {
    text-align: left;
    margin-left: 0;
}

#mission .content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding-top: 15vh;
    max-width: 40%;
    margin-left: 5%;
    margin-right: auto;
}

/* Journey Section */
#journey {
    background-image: url('images/journey-background.jpg') !important;
}

#journey h2 {
    text-align: center;
}

#journey .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15vh;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Path-Quote Section */
#path-quote {
    background-image: url('images/path-quote-background.jpg') !important;
}
    
#path-quote .content {
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 0 2rem;
}

#path-quote .feature-quote {
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
    width: 70%; 
    text-align: center;
}

/* Dark Sections */
.dark-section {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

/* Feature Sections */
.feature-section {
    height: 50vw;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Special height for visibility section */
#visibility.feature-section {
    height: 50vw; /* Special height for TECHNICAL VISIBILITY section */
}

.feature-image {
    width: 50%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Add the background image via the ::before pseudo-element for better parallax */
#design .feature-image::before {
    background-image: url('images/design-background.jpg');
}

#reliability .feature-image::before {
    background-image: url('images/reliability-background.jpg');
}

#precision .feature-image::before {
    background-image: url('images/precision-background.jpg');
}

#meteorite .feature-image::before {
    background-image: url('images/meteorite-dial.jpg');
}

#aventurine .feature-image::before {
    background-image: url('images/aventurine-dial.jpg');
}

.feature-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: 5%;
}

/* Reversed layout */
.feature-section.reversed {
    flex-direction: row-reverse;
}

/* Collection Section */
#collection .content {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

#collection .product-lineup {
    width: 100%;
    max-width: 1300px;
}

.product-showcase.reversed {
    flex-direction: row-reverse;
}

/* Email Signup */
form {
    width:100%;
}
    
.email-signup {
    display: flex;
    max-width: 500px;
    margin: 2rem auto;
}

.email-signup button {
    transition: all 0.3s ease;
}

/* Benefits List */
.benefits-container {
    text-align: center;
}

.benefits {
    max-width: 400px;
    margin: 2rem auto;
    text-align: left;
    display: inline-block;
}

.benefits li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.benefits li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green);
}

/* Explore Section */
#explore .section-title {
    letter-spacing: 0.5em;
}

/* Day/Night Toggle */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

/* Fix toggle position for desktop */
#visibility .feature-image {
    position: relative;
}

#visibility .feature-image .toggle-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0 auto;
    width: fit-content;
}

.toggle-icon {
    margin: 0 10px;
    font-size: 1.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-gray);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--medium-gray);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--dark-gray);
}

.visibility-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.day-image, .night-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease; /* Adjusted transition speed */
}

.day-image {
    opacity: 1;
}

.night-image {
    opacity: 0;
}

/* Setting max-width specifically for text blocks under titles */
#journey .content p,
#collection .content > p, /* Only target direct paragraph children */
#specifications .content > p, /* Only target direct paragraph children */
#join .content > p, /* Only target direct paragraph children */
#aligned .content > p /* Only target direct paragraph children */ {
    max-width: 50vw; /* Set max-width to 50% of viewport width */
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Section */
.timeline-container {
    width: 100%;
    max-width: 900px;
    margin: 4rem auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--green);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top;
    animation: growLine 1.5s ease-out forwards;
}

@keyframes growLine {
    0% { transform: translateX(-50%) scaleY(0); }
    100% { transform: translateX(-50%) scaleY(1); }
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 2rem 0;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.timeline-container.visible .timeline-item {
    opacity: 1;
}

/* Add a cascading delay for each timeline item when parent is visible */
.timeline-container.visible .timeline-item:nth-child(1) { transition-delay: 0.2s; }
.timeline-container.visible .timeline-item:nth-child(2) { transition-delay: 0.4s; }
.timeline-container.visible .timeline-item:nth-child(3) { transition-delay: 0.6s; }
.timeline-container.visible .timeline-item:nth-child(4) { transition-delay: 0.8s; }
.timeline-container.visible .timeline-item:nth-child(5) { transition-delay: 1.0s; }

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--green);
    border-radius: 0; /* Square instead of circle */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* No rotation */
    z-index: 1;
    opacity: 0; /* Start invisible for animation */
    transition: opacity 0.6s ease;
    transition-delay: 0.3s;
}

.timeline-container.visible .timeline-item::after {
    opacity: 1;
}

.timeline-date {
    width: calc(50% - 40px);
    text-align: right;
    padding-right: 20px;
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--white);
}

.timeline-event {
    width: calc(50% - 40px);
    text-align: left;
    padding-left: 20px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--green);
}

/* Join Section */
#join .content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Lineup */
.product-lineup {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem; /* Reduced from 2rem */
    margin: 3rem 0;
    max-width: 1300px; /* Added max-width to allow more space */
    margin-left: auto;
    margin-right: auto;
}

.product {
    flex: 1;
    min-width: 180px;
    max-width: 230px;
    text-align: center;
}

.product img {
    margin-bottom: 1rem;
    height: 400px; /* Slightly reduced from 450px */
    object-fit: contain;
}

.product-name {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 400; /* Changed from 500 to 400 */
    margin-top: 1rem;
}

.ref-number {
    display: block;
    margin-top: 0.5rem;
    color: #666a73;
    font-size: 0.75rem;
    font-weight: 400;
}

/* Product Showcase - Mono on wrist and detail */
.product-showcase {
    display: flex;
    align-items: center;
    height: 70vh; /* Reduced from 100vh to make visible picture height shorter */
    margin: 4rem auto; /* Added top and bottom margin */
    max-width: 85%;
    overflow: hidden;
}

.product-showcase .image-container {
    width: 45%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.product-showcase .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to show the full image */
    object-position: center;
}

.product-showcase .text-container {
    width: 55%;
    padding: 5%;
    text-align: left;
}

/* Specifications */
#specifications .content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.specs-container {
    display: flex;
    margin-top: 3rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blueprint {
    flex: 1;
    min-width: 300px;
}

.specs-table {
    flex: 1;
    min-width: 300px;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
}

.specs-table table td {
    padding: 0.7rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.specs-table table td:first-child {
    font-weight: 500;
    color: var(--green);
    width: 40%;
}

/* Animation for technical specifications */
.specs-table {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.specs-table.visible {
    opacity: 1;
    transform: translateY(0);
}

.spec-row {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.specs-table.visible .spec-row {
    opacity: 1;
}

/* Add a small delay for each spec row when parent is visible */
.specs-table.visible .spec-row:nth-child(1) { transition-delay: 0.1s; }
.specs-table.visible .spec-row:nth-child(2) { transition-delay: 0.2s; }
.specs-table.visible .spec-row:nth-child(3) { transition-delay: 0.3s; }
.specs-table.visible .spec-row:nth-child(4) { transition-delay: 0.4s; }
.specs-table.visible .spec-row:nth-child(5) { transition-delay: 0.5s; }
.specs-table.visible .spec-row:nth-child(6) { transition-delay: 0.6s; }
.specs-table.visible .spec-row:nth-child(7) { transition-delay: 0.7s; }
.specs-table.visible .spec-row:nth-child(8) { transition-delay: 0.8s; }
.specs-table.visible .spec-row:nth-child(9) { transition-delay: 0.9s; }
.specs-table.visible .spec-row:nth-child(10) { transition-delay: 1.0s; }
.specs-table.visible .spec-row:nth-child(11) { transition-delay: 1.1s; }
.specs-table.visible .spec-row:nth-child(12) { transition-delay: 1.2s; }
.specs-table.visible .spec-row:nth-child(13) { transition-delay: 1.3s; }
.specs-table.visible .spec-row:nth-child(14) { transition-delay: 1.4s; }
.specs-table.visible .spec-row:nth-child(15) { transition-delay: 1.5s; }
.specs-table.visible .spec-row:nth-child(16) { transition-delay: 1.6s; }
.specs-table.visible .spec-row:nth-child(17) { transition-delay: 1.7s; }
.specs-table.visible .spec-row:nth-child(18) { transition-delay: 1.8s; }
.specs-table.visible .spec-row:nth-child(19) { transition-delay: 1.9s; }

/* Split Section */
.split-section {
    display: flex;
    height: 50vw;
    max-height: 70vh;
}

.split-section .image-container {
    flex: 1;
    overflow: hidden;
}

.split-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section .text-container {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--black);
}

.split-section.mirrored {
    flex-direction: row-reverse;
}

.split-section .text-container .feature-quote {
    margin-left: 8rem; /* Double the margin on the left (4rem * 2) */
    margin-right: 8rem; /* Double the margin on the right */
}

/* Gallery styling replacing carousels */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--black);
    color: var(--white);
}

.gallery-section h2 {
    display: none; /* Remove titles as requested */
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 85%;
    margin: 0 auto;
}

.gallery-item {
    flex: 1;
    max-width: 22%;
    aspect-ratio: 4/5; /* Updated to 4:5 ratio as requested */
    overflow: hidden;
    border-radius: 0; /* Removed rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.gallery-label {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

/* Partners */
#aligned .content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partners img {
    height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners img:hover {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 18px;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--black);
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--light-gray);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile media queries */
@media (max-width: 768px) {
    /* Hide desktop CTA button */
    .desktop-cta {
        display: none;
    }
    
    /* Show mobile-only items */
    .mobile-only {
        display: block;
    }
    
    /* Adjust header padding */
    header {
        padding: 0.8rem;
    }
    
    /* Content padding */
    .content {
        padding: 3rem 1.5rem;
    }
    
    /* Hero adjustments for mobile */
    #hero {
        background-image: url('images/hero-background-mobile.jpg') !important;
    }
    
    #hero h2 {
        font-weight: 300;
        letter-spacing: 0.3em;
    }
    
    #hero .content {
        max-width:100%;
        top: 50%;
        transform: translate(0, 125%);
    }
    
    /* Email signup */
    .email-signup {
        flex-direction: column;
    }
    
    /* Typography adjustments */
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }

    /* Update sections with 50vw to use more width on smaller screens */
    #journey .content p,
    #collection .content > p,
    #specifications .content > p,
    #join .content > p,
    #aligned .content > p {
        max-width: 85vw;
    }
    
    /* mission section for mobile - text below image */
    #mission {
        background-image: url('images/philosophy-background-mobile.jpg') !important;
    }
    
    #mission h2 {
        text-align: center;
        margin-left: 0;
    }
    
    #mission .content {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }
      
    /* Feature sections */
    .feature-section {
        flex-direction: column;
        height: auto;
    }
    
    .feature-section.reversed {
        flex-direction: column;
    }
    
    .feature-image {
        height: 60vh;
        width: 100%;
        min-height: 400px;
    }
    
    .feature-image::before {
        height: 100%;
        top: 0;
    }
    
    .feature-content {
        padding: 2rem 1rem;
        width: 100%;
    }
    
    /* Feature sections padding adjustments */
    .feature-content {
        padding: 3rem 1.5rem; /* Original padding */
    }
    
    /* Add padding only above title and below text - doubled */
    .feature-content .section-title {
        padding-top: 4rem; /* Doubled from 2rem */
        margin-bottom: 1rem;
    }
    
    .feature-content p {
        margin-top: 1rem;
        padding-bottom: 4rem; /* Doubled from 2rem */
    }
    
    /* Only remove parallax for the 4 feature blocks and set their width to 90vw */
    #design .feature-image,
    #reliability .feature-image,
    #precision .feature-image,
    #visibility .feature-image,
    #meteorite .feature-image,
    #aventurine .feature-image {
        width: 90vw;
        margin: 0 auto;
    }
    
    /* Fix for visibility section - with overlay toggle */
    #visibility.feature-section {
        height: auto;
        margin-bottom: 3rem;
        flex-direction: column;
    }
    
    #visibility .feature-image {
        height: 60vh;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .visibility-images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #visibility .feature-content {
        width: 100%;
        padding: 0 1.5rem 4rem;
    }
    
    /* Journey section */
    #journey {
        background-image: url('images/journey-background-mobile.jpg') !important;
    }
    
    #journey .content {
        width: 100%;
        padding: 2rem 1.5rem;
        margin-top: 0;
    }
    
    /* Path quote section */
    #path-quote {
        background-image: url('images/path-quote-background-mobile.jpg') !important;
    }
    
    #path-quote .content {
        max-width:100%;
        top: 50%;
        transform: translate(0, -50%);
    }
    
    /* Product lineup - brutally simple */
    .product-lineup {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Product images with padding */
    .product {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 40px !important;
        text-align: center;
        padding-top: 30px !important; /* Added padding above product images */
    }
    
    .product img {
        width: 50vw !important;
        height: auto !important;
        display: inline-block !important;
        object-fit: contain !important;
        max-height: none !important;
    }
    
    /* Feature quotes with doubled font size */
    #mono-wrist .feature-quote,
    #path-quote .feature-quote,
    #mono-detail .feature-quote {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    /* Add padding above certain sections */
    #collection .section-title {
        padding-top: 3rem; /* Add padding above ONE WATCH. FIVE MISSIONS. */
    }
    
    #join .section-title {
        padding-top: 3rem; /* Add padding above JOIN OUR FOUNDING COMMUNITY */
    }
    
    /* Fix for mono-detail image */
    #mono-detail.product-showcase.reversed {
        flex-direction: column;
    }
    
    #mono-detail .image-container {
        order: -1; /* Put image on top */
    }
    
    /* Product showcase mobile adjustments */
    .product-showcase {
        height: auto;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    .product-showcase .image-container,
    .product-showcase .text-container {
        width: 80vw;
        margin: 0 auto;
        height: auto;
        max-height: none;
    }
    
    .product-showcase .image-container {
        width: 80vw;
        margin: 0 auto;
        height: auto;
        max-height: none;
    }
    
    .product-showcase .text-container {
        padding: 2rem;
        text-align: center;
    }
    
    .product-showcase .text-container .feature-quote {
        margin: 1rem auto;
        font-size: 2.4rem;
        line-height: 1.2;
        text-align: center;
        max-width: 85vw;
    }
    
    #mono-wrist .image-container img,
    #mono-detail .image-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
    }
    
    /* Specs section */
    .specs-container {
        flex-direction: column;
    }
    
    .specs-table {
        margin-top: 2rem;
    }
    
    /* Timeline section on mobile */
    .timeline::after {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-item::after {
        left: 40px;
    }
    
    .timeline-date, .timeline-event {
        width: 100%;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
    
    .timeline-date {
        margin-bottom: 0.5rem;
    }

    /* Gallery - completely simplified approach */
    .gallery-section {
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .gallery-section .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .gallery-container {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        padding: 20px 0;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        margin: 0;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
        max-width: none;
    }
    
    .gallery-container::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-item {
        flex: 0 0 80%;
        max-width: 80%;
        min-width: 80%;
        margin: 0 10px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-shadow: none;
    }
    
    .gallery-item:first-child {
        margin-left: 10%;
    }
    
    .gallery-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .gallery-item:hover img {
        transform: none; /* Disable hover effect on mobile */
    }
    
    /* Add scroll hint indicator */
    .gallery-section::after {
        content: '← Swipe to see more →';
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: var(--green);
        padding: 1rem 0;
        font-family: 'Roboto Mono', monospace;
        letter-spacing: 0.1em;
        clear: both; /* Ensure it appears below the gallery */
        width: 100%; /* Take full width */
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .partners {
        gap: 2rem;
    }
    
    .partners img {
        height: 40px;
    }
}