/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Apple-inspired Color Palette */
    --primary-color: #007aff;
    --primary-hover: #0056d6;
    --secondary-color: #5856d6;
    --accent-color: #ff9500;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-light: #86868b;
    --bg-primary: #ffffff;
    --bg-secondary: #fbfbfd;
    --bg-tertiary: #f5f5f7;
    --border-color: #d2d2d7;
    
    /* Apple-style Shadows */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.06);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Border Radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow: hidden;
    transition: background 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid white;
    outline-offset: 2px;
}

body::before {
    content: '';
    position: fixed;
    top: 100px;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    transition: background 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Color-responsive shimmer based on active face */
body:has(.cube.show-front)::before {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
}

body:has(.cube.show-right)::before {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 200, 200, 0.03) 50%, transparent 70%);
}

body:has(.cube.show-back)::before {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 200, 0.03) 50%, transparent 70%);
}

body:has(.cube.show-left)::before {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 220, 180, 0.03) 50%, transparent 70%);
}

body:has(.cube.show-top)::before {
    background: linear-gradient(45deg, transparent 30%, rgba(200, 255, 220, 0.03) 50%, transparent 70%);
}

body:has(.cube.show-bottom)::before {
    background: linear-gradient(45deg, transparent 30%, rgba(200, 220, 255, 0.03) 50%, transparent 70%);
}

/* Dynamic background colors based on active face */
body:has(.cube.show-front) {
    background: linear-gradient(135deg, #0077be 0%, #00a8e6 100%);
}

body:has(.cube.show-right) {
    background: linear-gradient(135deg, #8b5a5a 0%, #a85050 100%);
}

body:has(.cube.show-back) {
    background: linear-gradient(135deg, #a08840 0%, #b89530 100%);
}

body:has(.cube.show-left) {
    background: linear-gradient(135deg, #b8754a 0%, #c8824a 100%);
}

body:has(.cube.show-top) {
    background: linear-gradient(135deg, #4a8b60 0%, #5a9b70 100%);
}

body:has(.cube.show-bottom) {
    background: linear-gradient(135deg, #4a6b8b 0%, #507ba8 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1001;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px var(--space-16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: breathe 4s ease-in-out infinite;
    position: absolute;
    left: 20px;
    top: 20px;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: filter 2s ease;
}

/* Logo stays clean and consistent */
.logo-img {
    /* No color effects - keep logo in its natural branding colors */
}

/* Boat Logo Styles */
.boat-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family);
    text-decoration: none;
    transition: all 0.3s ease;
}

.boat-icon {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.boat-logo:hover .boat-icon {
    transform: scale(1.1) rotate(5deg);
}

.boat-logo:hover .logo-text {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Menu header boat logo adjustments */
.menu-header .boat-logo {
    gap: 8px;
}

.menu-header .boat-icon {
    font-size: 32px;
}

.menu-header .logo-text {
    font-size: 18px;
    font-weight: 600;
}

/* Team Photo Styles */
.team-photo {
    margin-bottom: 2vmin;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.team-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--border-radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.team-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Woodwork Photo Styles */
.woodwork-photo {
    margin-bottom: 1.5vmin;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.woodwork-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.woodwork-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Storage Photo Styles */
.storage-photo {
    margin-bottom: 1.5vmin;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.storage-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.storage-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Upholstery Photo Styles */
.upholstery-photo {
    margin-bottom: 1.5vmin;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.upholstery-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.upholstery-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Fiberglass Photo Styles */
.fiberglass-photo {
    margin-bottom: 1.5vmin;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.fiberglass-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.fiberglass-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Logo breathing animation */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 1003;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hamburger-btn:hover .hamburger-line {
    height: 2.5px;
}

.hamburger-btn:active {
    transform: scale(0.95);
}

.hamburger-btn:focus {
    outline: 2px solid #007aff;
    outline-offset: 2px;
    background: rgba(0, 122, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hamburger-btn.active {
    background: rgba(0, 122, 255, 0.1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(0, 0, 0, 0.3);
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.9), rgba(20, 20, 40, 0.95));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 2.5rem 2rem;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    transform: translateX(100%) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    overflow-y: auto;
}

/* Color-responsive menu content based on active face */
body:has(.cube.show-front) .menu-content {
    background: linear-gradient(135deg, rgba(120, 40, 140, 0.98), rgba(90, 30, 110, 0.99));
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(180, 60, 200, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

body:has(.cube.show-right) .menu-content {
    background: linear-gradient(135deg, rgba(170, 20, 20, 0.98), rgba(130, 15, 15, 0.99));
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(200, 40, 40, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

body:has(.cube.show-back) .menu-content {
    background: linear-gradient(135deg, rgba(200, 160, 0, 0.98), rgba(160, 120, 0, 0.99));
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(220, 180, 20, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

body:has(.cube.show-left) .menu-content {
    background: linear-gradient(135deg, rgba(200, 90, 0, 0.98), rgba(160, 70, 0, 0.99));
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(220, 110, 20, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

body:has(.cube.show-top) .menu-content {
    background: linear-gradient(135deg, rgba(0, 120, 40, 0.98), rgba(0, 90, 30, 0.99));
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(20, 140, 60, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

body:has(.cube.show-bottom) .menu-content {
    background: linear-gradient(135deg, rgba(0, 60, 150, 0.98), rgba(0, 40, 120, 0.99));
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(20, 80, 170, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.menu-overlay.active .menu-content {
    transform: translateX(0) scale(1);
    box-shadow: -25px 0 70px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
}

.menu-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.menu-logo:hover {
    opacity: 1;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.menu-item {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.active .menu-item:nth-child(6) { transition-delay: 0.35s; }

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateX(12px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.6);
}

.menu-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    transition: background 1s ease, color 1s ease;
    text-shadow: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Color-responsive active menu item based on active face */
body:has(.cube.show-front) .menu-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: #2d1f3d;
}

body:has(.cube.show-right) .menu-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: #4a1a1a;
}

body:has(.cube.show-back) .menu-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: #4a3d00;
}

body:has(.cube.show-left) .menu-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: #4a2600;
}

body:has(.cube.show-top) .menu-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: #003d1a;
}

body:has(.cube.show-bottom) .menu-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: #001a4a;
}

.menu-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.menu-text {
    font-size: 1rem;
}

.menu-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.menu-footer p {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.01em;
    opacity: 0.9;
}

/* Mobile adjustments for hamburger menu */
@media (max-width: 768px) {
    .menu-content {
        width: 300px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-content {
        width: 280px;
        padding: 1rem;
    }
    
    .menu-header h3 {
        font-size: 1.1rem;
    }
    
    .menu-item {
        padding: 0.6rem 0.8rem;
        gap: 0.8rem;
    }
    
    .menu-icon {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .menu-text {
        font-size: 0.9rem;
    }
}

/* 3D Cube Scene */
.scene {
    width: 100vw;
    height: 100vh;
    margin: 0;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.cube {
    width: 120vmax;
    height: 120vmax;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-60vmax);
    left: 50%;
    top: 50%;
    margin-left: -60vmax;
    margin-top: -60vmax;
    transition: transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Cube Rotations */
.cube.show-front  { transform: translateZ(-60vmax) rotateY(   0deg); }
.cube.show-right  { transform: translateZ(-60vmax) rotateY( -90deg); }
.cube.show-back   { transform: translateZ(-60vmax) rotateY(-180deg); }
.cube.show-left   { transform: translateZ(-60vmax) rotateY(  90deg); }
.cube.show-top    { transform: translateZ(-60vmax) rotateX( -90deg); }
.cube.show-bottom { transform: translateZ(-60vmax) rotateX(  90deg); }

/* Active face border pulse effect */
.cube.show-front .cube__face--front,
.cube.show-right .cube__face--right,
.cube.show-back .cube__face--back,
.cube.show-left .cube__face--left,
.cube.show-top .cube__face--top,
.cube.show-bottom .cube__face--bottom {
    animation: activeFacePulse 3s ease-in-out infinite;
}

@keyframes activeFacePulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 0 60px rgba(255, 255, 255, 0.05);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.3), inset 0 0 80px rgba(255, 255, 255, 0.08);
    }
}

/* Cube Faces */
.cube__face {
    position: absolute;
    width: 120vmax;
    height: 120vmax;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Face Colors - Rubik's Cube Style (Darker) */
.cube__face--front  { 
    background: linear-gradient(135deg, rgba(0, 100, 160, 0.7), rgba(0, 140, 200, 0.8));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 100, 160, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(0deg) translateZ(60vmax);
    opacity: 0.9 !important;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.cube__face--front:hover { 
    opacity: 0.95 !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 8px 32px rgba(0, 100, 160, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.08);
}
.cube__face--right  { 
    background: 
        linear-gradient(135deg, rgba(40, 70, 100, 0.9), rgba(50, 80, 120, 0.92)),
        url('boat-storage-castaic.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(40, 70, 100, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(90deg) translateZ(60vmax);
    opacity: 0.85 !important;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.cube__face--right:hover { 
    opacity: 0.95 !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 8px 32px rgba(40, 70, 100, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.08);
}
.cube__face--back   { 
    background: 
        linear-gradient(135deg, rgba(100, 80, 40, 0.9), rgba(120, 90, 50, 0.92)),
        url('al-boat-repair-team.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(100, 80, 40, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(180deg) translateZ(60vmax);
    opacity: 0.85 !important;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.cube__face--back:hover { 
    opacity: 0.95 !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 8px 32px rgba(100, 80, 40, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.08);
}
.cube__face--left   { 
    background: 
        linear-gradient(135deg, rgba(120, 50, 80, 0.9), rgba(140, 60, 100, 0.92)),
        url('upholstery-boats.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(120, 50, 80, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-90deg) translateZ(60vmax);
    opacity: 0.85 !important;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.cube__face--left:hover { 
    opacity: 0.95 !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 8px 32px rgba(120, 50, 80, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.08);
}
.cube__face--top    { 
    background: 
        linear-gradient(135deg, rgba(80, 40, 10, 0.9), rgba(100, 50, 20, 0.92)),
        url('wood-work.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(80, 40, 10, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateX(90deg) translateZ(60vmax);
    opacity: 0.85 !important;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.cube__face--top:hover { 
    opacity: 0.95 !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 8px 32px rgba(80, 40, 10, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.08);
}
.cube__face--bottom { 
    background: 
        linear-gradient(135deg, rgba(30, 90, 140, 0.9), rgba(40, 100, 160, 0.92)),
        url('fiberglass-repair.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(30, 90, 140, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateX(-90deg) translateZ(60vmax);
    opacity: 0.85 !important;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.cube__face--bottom:hover { 
    opacity: 0.95 !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 8px 32px rgba(30, 90, 140, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.08);
}

/* Face Content */
.face-content {
    padding: 3vmin;
    max-width: 75vmin;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    gap: 2vmin;
}

.face-content h1,
.face-content h2,
.face-content h3,
.face-content h4,
.face-content h5,
.face-content h6 {
    font-size: clamp(1.8rem, 6vmin, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5vmin;
    line-height: 1.1;
    opacity: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: typeIn 1.2s ease-out 0.6s forwards;
    letter-spacing: -0.02em;
}

.face-content p {
    font-size: clamp(0.9rem, 2.5vmin, 1.25rem);
    margin-bottom: 2vmin;
    opacity: 0;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out 0.7s forwards;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.6);
    }
}

@keyframes buttonBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18), 0 6px 15px rgba(0, 0, 0, 0.12), 0 3px 8px rgba(0, 0, 0, 0.1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    50% {
        transform: translateX(0%) translateY(0%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

/* Problem Badge */
.problem-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1vmin 2vmin;
    border-radius: var(--border-radius);
    font-size: clamp(0.75rem, 2vmin, 1rem);
    font-weight: 600;
    margin-bottom: 2vmin;
}

/* Tools List */
.tools-list {
    display: flex;
    flex-direction: column;
    gap: 1.5vmin;
    max-height: 50vh;
    overflow: hidden;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 1.5vmin;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5vmin 2vmin;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
    font-size: clamp(0.75rem, 2vmin, 1rem);
}

.tool-item:nth-child(1) { animation-delay: 0.8s; }
.tool-item:nth-child(2) { animation-delay: 1s; }
.tool-item:nth-child(3) { animation-delay: 1.2s; }

.tool-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.tool-icon {
    font-size: clamp(1rem, 2.5vmin, 1.5rem);
    width: 5vmin;
    height: 5vmin;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5vmin;
    max-height: 50vh;
    overflow: hidden;
}

.feature {
    display: flex;
    align-items: center;
    gap: 2vmin;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2vmin;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: clamp(1rem, 3vmin, 2rem);
    width: 6vmin;
    height: 6vmin;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vmin;
    margin-top: 2vmin;
    max-width: 100%;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2vmin;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: clamp(1rem, 3vmin, 2rem);
    font-weight: 800;
    margin-bottom: 1vmin;
    color: white;
}

.stat-label {
    font-size: clamp(0.75rem, 2vmin, 1rem);
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 1vmin;
    padding: 2vmin 3vmin;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vmin, 1.1rem);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 122, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.1s ease;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.contact-buttons .btn:nth-child(1) {
    animation-delay: 1s;
}

.contact-buttons .btn:nth-child(2) {
    animation-delay: 1.2s;
}

/* Navigation Icons */
.cube-nav {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-icon.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: white;
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
    transition: background 1s ease, border-color 1s ease, box-shadow 1s ease;
}

.nav-icon-symbol {
    font-size: 24px;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(2);
}

.nav-icon.active .nav-icon-symbol {
    filter: none;
}

/* Color-responsive navigation icons based on active face */
body:has(.cube.show-front) .nav-icon.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

body:has(.cube.show-right) .nav-icon.active {
    background: rgba(255, 200, 200, 0.9);
    border-color: rgba(255, 100, 100, 1);
    box-shadow: 0 0 20px rgba(255, 100, 100, 0.5);
}

body:has(.cube.show-back) .nav-icon.active {
    background: rgba(255, 240, 180, 0.9);
    border-color: rgba(255, 200, 50, 1);
    box-shadow: 0 0 20px rgba(255, 200, 50, 0.5);
}

body:has(.cube.show-left) .nav-icon.active {
    background: rgba(255, 220, 180, 0.9);
    border-color: rgba(255, 150, 80, 1);
    box-shadow: 0 0 20px rgba(255, 150, 80, 0.5);
}

body:has(.cube.show-top) .nav-icon.active {
    background: rgba(180, 255, 200, 0.9);
    border-color: rgba(100, 255, 120, 1);
    box-shadow: 0 0 20px rgba(100, 255, 120, 0.5);
}

body:has(.cube.show-bottom) .nav-icon.active {
    background: rgba(180, 200, 255, 0.9);
    border-color: rgba(100, 150, 255, 1);
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }
}

.nav-label {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-dot:hover .nav-label {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

/* Mobile adjustments for nav icons */
@media (max-width: 768px) {
    .cube-nav {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .nav-icon-symbol {
        font-size: 20px;
    }
    
    .nav-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .cube-nav {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .nav-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .nav-icon-symbol {
        font-size: 18px;
    }
}


/* Center Rotating Boat */
.center-boat {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    transform-style: preserve-3d;
    animation: centerBoatRotate 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Simple Boat Emoji */
.boat-silhouette {
    font-size: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    transition: filter 1s ease;
}

/* Dynamic boat glow based on active face */
.cube.show-front .boat-silhouette {
    filter: drop-shadow(0 8px 24px rgba(0, 100, 160, 0.6)) drop-shadow(0 0 40px rgba(0, 140, 200, 0.4));
}

.cube.show-right .boat-silhouette {
    filter: drop-shadow(0 8px 24px rgba(120, 10, 10, 0.6)) drop-shadow(0 0 40px rgba(200, 40, 40, 0.4));
}

.cube.show-back .boat-silhouette {
    filter: drop-shadow(0 8px 24px rgba(140, 110, 0, 0.6)) drop-shadow(0 0 40px rgba(220, 180, 20, 0.4));
}

.cube.show-left .boat-silhouette {
    filter: drop-shadow(0 8px 24px rgba(140, 60, 0, 0.6)) drop-shadow(0 0 40px rgba(220, 110, 20, 0.4));
}

.cube.show-top .boat-silhouette {
    filter: drop-shadow(0 8px 24px rgba(0, 80, 20, 0.6)) drop-shadow(0 0 40px rgba(20, 140, 60, 0.4));
}

.cube.show-bottom .boat-silhouette {
    filter: drop-shadow(0 8px 24px rgba(0, 40, 100, 0.6)) drop-shadow(0 0 40px rgba(20, 80, 170, 0.4));
}

@keyframes centerBoatRotate {
    0% {
        transform: translate(-50%, -50%) translateZ(0) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) translateZ(0) rotateY(360deg);
    }
}

/* Mobile adjustments for center boat */
@media (max-width: 768px) {
    .center-boat {
        width: 150px;
        height: 150px;
    }
    
    .boat-silhouette {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .center-boat {
        width: 120px;
        height: 120px;
    }
    
    .boat-silhouette {
        font-size: 60px;
    }
}

/* High Contrast Mode Support for Accessibility */
@media (prefers-contrast: high) {
    body {
        background: #000000 !important;
    }
    
    body::before {
        display: none !important;
    }
    
    .cube__face {
        background: #000000 !important;
        border: 3px solid #ffffff !important;
    }
    
    .face-content h1,
    .face-content h2,
    .face-content h3,
    .face-content p {
        color: #ffffff !important;
        text-shadow: none !important;
    }
    
    .btn-primary {
        background: #ffffff !important;
        color: #000000 !important;
        border: 2px solid #ffffff !important;
    }
    
    .btn-secondary {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff !important;
    }
    
    .menu-content {
        background: #000000 !important;
        border: 3px solid #ffffff !important;
    }
    
    .menu-item {
        color: #ffffff !important;
    }
    
    .menu-item.active {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .nav-dot {
        background: #ffffff !important;
        border: 2px solid #ffffff !important;
    }
    
    .hamburger-line {
        background: #ffffff !important;
    }
    
    .navbar {
        background: #000000 !important;
        border-bottom: 2px solid #ffffff !important;
    }
}

/* Reduced Motion Support for Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cube {
        transition: none !important;
    }
    
    .center-cube {
        animation: none !important;
    }
    
    .scroll-hint {
        animation: none !important;
    }
    
    .nav-dot.active {
        animation: none !important;
    }
    
    .cube__face--front:hover,
    .cube__face--right:hover,
    .cube__face--back:hover,
    .cube__face--left:hover,
    .cube__face--top:hover,
    .cube__face--bottom:hover {
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
    }
    
    body::before {
        animation: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .face-content {
        padding: 4vmin;
        max-width: 70vmin;
    }
    
    .face-content h1 {
        font-size: 6vmin;
    }
    
    .face-content h2 {
        font-size: 5vmin;
    }
    
    .face-content h3 {
        font-size: 4vmin;
    }
    
    .face-content p {
        font-size: 3.5vmin;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3vmin;
    }
    
    .tool-item, .feature {
        padding: 3vmin;
        gap: 3vmin;
    }
    
    .tool-icon, .feature-icon {
        width: 8vmin;
        height: 8vmin;
        font-size: 4vmin;
    }
}

@media (max-width: 480px) {
    .face-content {
        padding: 3vmin;
        max-width: 75vmin;
    }
    
    .face-content h1 {
        font-size: 5vmin;
    }
    
    .face-content h2 {
        font-size: 4.5vmin;
    }
    
    .face-content h3 {
        font-size: 3.5vmin;
    }
    
    .face-content p {
        font-size: 3vmin;
    }
    
    .btn {
        padding: 2vmin 4vmin;
        font-size: 3vmin;
    }
}
