/* Gallery Experience - Premium & Minimal */

/* Font Face Declarations */
@font-face {
    font-family: 'Network';
    src: url('public/networkfreeversion.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --gallery-white: #ffffff;
    --gallery-black: #000000;
    --gallery-gray: #f5f5f5;
    --gallery-text: #1a1a1a;
    --gallery-accent: #d4af37;
    --gallery-orange: #ff6b35;
    --gallery-red: #8b0000;
    
    /* Typography */
    --font-main: 'Bebas Neue', sans-serif;
    --font-heading: 'Network', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-mono: 'Courier New', monospace;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main), -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gallery-white);
    color: var(--gallery-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Navigation - Minimal Gallery Style */
.gallery-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-link {
    display: block;
}

.nav-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-item {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gallery-text);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.5;
}

/* Gallery Rooms */
.gallery-room {
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gallery-white);
}

.room-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.room-label {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gallery-text);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    opacity: 0.6;
}

.room-number {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

/* Room 1: Entrance */
.room-entrance {
    text-align: center;
}

.room-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    color: var(--gallery-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.room-subtitle {
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--gallery-text);
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.room-description {
    max-width: 600px;
    margin: 0 auto;
}

.room-description p {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--gallery-text);
}

/* Wave Effect Hero */
.room-entrance-wave {
    padding: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #FB4A02 0%, #FB4A02 60%, #f5f5f5 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150vh;
}

.hero-text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.hero-emblem {
    width: clamp(200px, 40vw, 500px);
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    filter: brightness(0) invert(1);
    display: block;
}

.wave-container {
    width: 100%;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.wave-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wave-path {
    transform-origin: center;
    vector-effect: non-scaling-stroke;
}

/* Option 3: Typography-First with Subtle Pattern */
.room-entrance-option3 {
    position: relative;
    overflow: hidden;
}

.entrance-typography {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.entrance-typography .room-title {
    opacity: 1;
    transform: translateY(0);
}

.entrance-typography .room-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.room-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.pattern-svg {
    width: 100%;
    height: 100%;
    color: var(--gallery-text);
}

/* Room 2: The Problem */
.room-story {
    background: var(--gallery-gray);
    min-height: 100vh;
}

.story-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.story-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--gallery-text);
    line-height: 1.2;
}

.story-text {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 2;
    color: var(--gallery-text);
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-emphasis {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    font-style: italic;
    color: var(--gallery-text);
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    height: 100%;
    min-height: 600px;
    position: relative;
    overflow: visible;
}

.terminal-container {
    width: 100%;
    height: 500px;
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.terminal-header {
    background: #1a1a1a;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #2a2a2a;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-button.close {
    background: #ff5f56;
}

.terminal-button.minimize {
    background: #ffbd2e;
}

.terminal-button.maximize {
    background: #27c93f;
}

.terminal-title {
    color: #888;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.terminal-body {
    flex: 1;
    padding: 1rem;
    overflow-y: scroll;
    background: #0a0a0a;
    font-family: 'Courier New', monospace;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    color: #00ff00;
    position: relative;
}

.terminal-output {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.terminal-line {
    color: #00ff00;
    margin-bottom: 0.25rem;
    min-height: 1.6em;
}

.terminal-line .char {
    opacity: 0;
    animation: charFadeIn 0.1s forwards;
}

@keyframes charFadeIn {
    to {
        opacity: 1;
    }
}

.terminal-prompt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid #2a2a2a;
}

.prompt-text {
    color: #00ff00;
}

.prompt-input {
    color: #00ff00;
    min-height: 1.6em;
}

.prompt-input .char {
    opacity: 0;
    animation: charFadeIn 0.1s forwards;
}

.cursor {
    color: #00ff00;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Scrollbar styling */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

/* Phase 1: Apparel Flood */
.apparel-flood {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    z-index: 1;
}

.apparel-rack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    perspective: 1000px;
}

.apparel-item {
    width: 60px;
    height: 80px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    opacity: 0;
    transform: translateZ(-500px) rotateY(45deg);
}

.apparel-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 60px;
    background: #4a4a4a;
    border-radius: 2px;
}

.apparel-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 20px;
    background: #3a3a3a;
    border-radius: 2px;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-main);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 10;
    white-space: nowrap;
}

/* Phase 2: Distortion */
.distortion-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

#shatter-canvas {
    width: 100%;
    height: 100%;
    filter: blur(2px);
}

/* Phase 3: Hooper Scene */
.hooper-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.court-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
}

.hooper-silhouette {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 400px;
    opacity: 0;
    transform: scale(0.8);
}

.silhouette-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.fragment {
    opacity: 0.3;
}

.ripple-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
}

/* Phase 4: Close-up */
.close-up-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.hooper-face {
    position: relative;
    z-index: 3;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.face-outline {
    width: 200px;
    height: 250px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.eye {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    top: 80px;
}

.left-eye {
    left: 60px;
}

.right-eye {
    right: 60px;
}

.mouth {
    position: absolute;
    width: 40px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    border-radius: 0 0 40px 40px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.blurred-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23333"/></svg>');
    filter: blur(20px);
    opacity: 0.5;
    z-index: 1;
}

/* Glitch effect */
.glitch {
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* Room 3: The Design */
.room-design {
    background: var(--gallery-white);
}

.design-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.design-statement {
    text-align: right;
}

.design-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--gallery-text);
}

.design-description {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.8;
    color: var(--gallery-text);
}

.design-artifact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.design-artifact:hover .design-image {
    transform: scale(1.05);
}

/* Room 4: Heritage */
.room-heritage {
    background: var(--gallery-gray);
}

.heritage-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.heritage-story {
    max-width: 600px;
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--gallery-text);
    opacity: 0;
    transform: translateX(-30px);
}

.heritage-story-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.heritage-story-text {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 2;
    color: var(--gallery-text);
    opacity: 0;
    transform: translateX(-30px);
}

.heritage-story-text strong {
    font-weight: 600;
    color: var(--gallery-orange);
    font-style: italic;
}

.heritage-conclusion {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-30px);
}

.heritage-brand-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--gallery-orange);
}

.heritage-tagline {
    font-family: var(--font-main);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 300;
    color: var(--gallery-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.heritage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
}

.heritage-symbol {
    width: 100%;
    max-width: 500px;
    height: auto;
    opacity: 0;
    transform: scale(0.9);
}

/* Room 5: Collection - Elegant Grid */
.room-collection {
    background: var(--gallery-white);
}

.collection-wall {
    width: 100%;
}

.collection-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.collection-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gallery-text);
}

.collection-subtitle {
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--gallery-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gallery-gray);
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-item:hover {
    cursor: pointer;
}

.collection-item:hover .collection-item-image {
    transform: scale(1.05);
}

.collection-item:hover .collection-image {
    transform: scale(1.1);
}

.collection-item:hover .collection-item-image::before {
    opacity: 1;
}

.collection-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.98) 20%);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.collection-item:hover .collection-item-info {
    transform: translateY(0);
}

.collection-item-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--gallery-text);
    line-height: 1.3;
}

.collection-item-description {
    font-family: var(--font-main);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-weight: 400;
}

/* Room 6: Mission */
.room-mission {
    background: var(--gallery-gray);
    text-align: center;
}

.mission-wall {
    max-width: 900px;
    margin: 0 auto;
}

.mission-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--gallery-text);
}

.mission-text {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 2;
    color: var(--gallery-text);
}

/* Footer */
.gallery-footer {
    background: var(--gallery-white);
    padding: 6rem 4rem 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.footer-logo-section {
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-tagline {
    font-family: 'Network', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--gallery-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.footer-link {
    font-family: var(--font-main);
    font-size: 0.875rem;
    color: var(--gallery-text);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.5;
}

.footer-copyright {
    font-family: var(--font-main);
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    background: var(--gallery-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4rem;
    transform: scale(0.95);
    opacity: 0;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gallery-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 0.5;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.modal-image {
    width: 100%;
}

.product-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--gallery-gray);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gallery-text);
}

.modal-description {
    font-family: var(--font-main);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gallery-text);
}

.modal-btn {
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gallery-text);
    background: transparent;
    border: 1px solid var(--gallery-text);
    padding: 1rem 2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.modal-btn:hover {
    background: var(--gallery-text);
    color: var(--gallery-white);
}

/* Responsive */
@media (max-width: 1200px) {
    .story-wall,
    .design-wall,
    .heritage-wall {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .design-statement {
        text-align: left;
    }

    .heritage-visual {
        order: -1;
    }

    .room-number {
        display: none;
    }

    .basketball-visual {
        width: 400px;
        height: 400px;
    }

    .entrance-logo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .gallery-nav {
        padding: 1.5rem 0;
    }

    .nav-content {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .gallery-room {
        padding: 6rem 2rem;
    }

    .room-content {
        width: 100%;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .collection-item-info {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-logo {
        max-width: 300px;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 3rem 2rem;
    }

    /* Option 2 Mobile */
    .basketball-visual {
        width: 300px;
        height: 300px;
    }

    .entrance-logo {
        max-width: 250px;
    }

    .entrance-visual-wrapper {
        gap: 3rem;
    }

    /* Option 3 Mobile */
    .pattern-svg {
        opacity: 0.5;
    }
}
/* ===== GLOBAL BACKGROUND ===== */
body {
    background: #ffffff;
    color: #111;
    font-family: 'Bebas Neue', sans-serif;
    overflow-x: hidden;
}

/* Soft gradient glow background */
body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 45, 45, 0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 77, 166, 0.15), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(90deg, #ff2d2d, #ff4da6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Apply to main titles automatically */
.design-title,
.mission-title,
.collection-title,
.heritage-brand-name {
    background: linear-gradient(90deg, #ff2d2d, #ff4da6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== SECTION ACCENTS ===== */
.room-design {
    background: linear-gradient(135deg, #ffffff 60%, rgba(255, 45, 45, 0.08));
}

.room-mission {
    background: linear-gradient(135deg, #ffffff 60%, rgba(255, 77, 166, 0.08));
}

/* ===== BUTTON STYLE ===== */
.cta-button {
    background: linear-gradient(90deg, #ff2d2d, #ff4da6);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* ===== OPTIONAL: GRADIENT BORDER ===== */
.gradient-border {
    border: 2px solid;
    border-image: linear-gradient(90deg, #ff2d2d, #ff4da6) 1;
}
/* ===== SHOP GRID ===== */
.shop-grid {
    display: grid;
    gap: 20px;
    padding: 40px 0;
}

/* Mobile: 1 per row */
@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop: 3 per row */
@media (min-width: 769px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.product-card img {
    width: 100%;
    border-radius: 12px;
}

/* PRICE */
.product-price {
    font-size: 20px;
    margin: 10px 0;
    font-weight: bold;
}

/* INPUTS */
.product-select,
.name-input,
.address-input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

/* BUTTON */
.buy-btn {
    background: linear-gradient(90deg, #ff2d2d, #ff4da6);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
}

.buy-btn:hover {
    opacity: 0.85;
}
/* HERO */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* GRADIENT TITLE */
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    background: linear-gradient(90deg, #ff2d2d, #ff4da6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTON */
.hero-btn {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff2d2d, #ff4da6);
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* SHOP GRID */
.shop-grid {
    display: grid;
    gap: 20px;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, #000000, #ffffff);
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px;
    color: black;
    letter-spacing: 2px;
}
.hero-btn {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: white;
    color: #ff2d2d;
    font-size: 18px;
    cursor: pointer;
}