/* Custom Font */
@font-face {
    font-family: 'Bright';
    src: url('Bright Italic TTF.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Bright';
    src: url('Bright TTF.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    background-color: #000000;
    height: 100vh;
    position: relative;
    padding: clamp(8px, 1.5vw, 24px);
    box-sizing: border-box;
}

/* Website container with can shape - seamless */
.website-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: clamp(20px, 4vw, 60px);
    overflow: hidden;
    background-color: #F5E6D3;
}

/* Stripe background system */
.stripe-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: inherit;
}

.stripe {
    position: absolute;
    width: 150vw;
    height: 40vh;
    border-radius: 50%;
    transform-origin: center;
}

.stripe-1 {
    background: linear-gradient(135deg, #C63C47 0%, #D4524A 100%);
    top: -10vh;
    left: -25vw;
    transform: rotate(-15deg) scaleX(2.5);
    animation: float1 20s ease-in-out infinite;
}

.stripe-2 {
    background: linear-gradient(135deg, #E8744A 0%, #F0904A 100%);
    top: 5vh;
    left: -20vw;
    transform: rotate(-12deg) scaleX(2.8);
    animation: float2 25s ease-in-out infinite;
}

.stripe-3 {
    background: linear-gradient(135deg, #F5B942 0%, #F7C952 100%);
    top: 45vh;
    left: -25vw;
    transform: rotate(-15deg) scaleX(3.0);
    animation: float3 22s ease-in-out infinite;
}

.stripe-4 {
    background: linear-gradient(135deg, #4A9B9B 0%, #5AB5B5 100%);
    top: 25vh;
    left: -20vw;
    transform: rotate(-12deg) scaleX(3.2);
    animation: float4 28s ease-in-out infinite;
}

.stripe-5 {
    background: linear-gradient(135deg, #F0904A 0%, #F5B942 100%);
    top: 70vh;
    left: -35vw;
    transform: rotate(-22deg) scaleX(3.5);
    animation: float5 18s ease-in-out infinite;
}

/* Enhanced floating animations */
@keyframes float1 {
    0%, 100% { transform: rotate(-15deg) scaleX(2.5) translateY(0); }
    50% { transform: rotate(-15deg) scaleX(2.5) translateY(-3.6vh); }
}

@keyframes float2 {
    0%, 100% { transform: rotate(-12deg) scaleX(2.8) translateX(0); }
    50% { transform: rotate(-12deg) scaleX(2.8) translateX(2.4vw); }
}

@keyframes float3 {
    0%, 100% { transform: rotate(-18deg) scaleX(3.2) translateY(0); }
    50% { transform: rotate(-18deg) scaleX(3.2) translateY(2.4vh); }
}

@keyframes float4 {
    0%, 100% { transform: rotate(-8deg) scaleX(2.6) translateX(0); }
    50% { transform: rotate(-8deg) scaleX(2.6) translateX(-1.2vw); }
}

@keyframes float5 {
    0%, 100% { transform: rotate(-22deg) scaleX(3.5) translateY(0); }
    50% { transform: rotate(-22deg) scaleX(3.5) translateY(-2.4vh); }
}

/* Content layer */
.content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem 6rem 2rem;
    text-align: center;
}

/* Logo container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Tagline container */
.tagline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}

.logo {
    font-family: 'Bright', 'Inter', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    font-style: italic;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 0.9;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Coming Soon - anchored to bottom */
.coming-soon-container {
    position: fixed;
    bottom: clamp(2rem, 4vw, 3rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.coming-soon {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: #C63C47;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    background-color: rgba(255, 255, 255, 0.9);
    padding: clamp(0.5rem, 1vw, 0.8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: clamp(6px, 1.5vw, 12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}





/* Enhanced Mobile Optimization */
@media (max-width: 768px) {
    body {
        padding: clamp(6px, 2vw, 16px);
    }
    
    .website-container {
        border-radius: clamp(15px, 5vw, 40px);
    }
    
    .content {
        padding: 1.5rem 1rem 5rem 1rem;
        justify-content: center;
    }
    
    .coming-soon-container {
        bottom: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .logo-container {
        margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .logo {
        font-size: clamp(3.2rem, 9vw, 6rem);
    }
    
    .tagline-container {
        margin-top: clamp(0.8rem, 1.5vw, 1.2rem);
        margin-bottom: clamp(0.6rem, 1.2vw, 1rem);
    }
    
    .tagline {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }
    
    .coming-soon {
        font-size: clamp(0.8rem, 2vw, 1.1rem);
        padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(0.8rem, 1.5vw, 1.2rem);
    }
    

    
    /* Optimized stripe positioning for tablets */
    .stripe {
        width: 200vw;
        height: 30vh;
    }
    
    .stripe-1 { 
        left: -50vw; 
        top: -5vh;
        transform: rotate(-20deg) scaleX(3);
        animation: float1 25s ease-in-out infinite;
    }
    .stripe-2 { 
        left: -45vw; 
        top: 10vh;
        transform: rotate(-15deg) scaleX(3.2);
        animation: float2 30s ease-in-out infinite;
    }
    .stripe-3 { 
        left: -55vw; 
        top: 55vh;
        transform: rotate(-25deg) scaleX(3.8);
        animation: float3 27s ease-in-out infinite;
    }
    .stripe-4 { 
        left: -40vw; 
        top: 25vh;
        transform: rotate(-12deg) scaleX(3.5);
        animation: float4 32s ease-in-out infinite;
    }
    .stripe-5 { 
        left: -60vw; 
        top: 75vh;
        transform: rotate(-30deg) scaleX(4);
        animation: float5 22s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    body {
        padding: clamp(4px, 1.8vw, 12px);
    }
    
    .website-container {
        border-radius: clamp(12px, 6vw, 30px);
    }
    
    .content {
        padding: 1rem 0.75rem 4rem 0.75rem;
        justify-content: flex-start;
        padding-top: 3rem;
    }
    
    .coming-soon-container {
        bottom: clamp(1rem, 2.5vw, 2rem);
    }
    
    .logo-container {
        margin-bottom: clamp(3rem, 6vw, 4rem);
        margin-top: 2rem;
    }
    
    .logo {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
        letter-spacing: 0.02em;
        line-height: 0.85;
    }
    
    .tagline-container {
        margin-top: 0;
        margin-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
    }
    
    .tagline {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        line-height: 1.4;
        font-weight: 400;
    }
    
    .coming-soon {
        font-size: clamp(0.75rem, 1.8vw, 1rem);
        padding: clamp(0.3rem, 0.6vw, 0.5rem) clamp(0.6rem, 1.2vw, 1rem);
        letter-spacing: 0.2em;
    }
    
    .coming-soon {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        letter-spacing: 0.15em;
        font-weight: 600;
    }
    

    
    /* Mobile-optimized stripes */
    .stripe {
        width: 250vw;
        height: 25vh;
    }
    
    .stripe-1 { 
        left: -75vw; 
        top: -10vh;
        transform: rotate(-25deg) scaleX(4);
    }
    .stripe-2 { 
        left: -70vw; 
        top: 5vh;
        transform: rotate(-20deg) scaleX(4.2);
    }
    .stripe-3 { 
        left: -80vw; 
        top: 50vh;
        transform: rotate(-30deg) scaleX(4.8);
    }
    .stripe-4 { 
        left: -65vw; 
        top: 20vh;
        transform: rotate(-15deg) scaleX(4.5);
    }
    .stripe-5 { 
        left: -85vw; 
        top: 70vh;
        transform: rotate(-35deg) scaleX(5);
    }
}

/* Performance optimization for mobile */
@media (max-width: 480px) {
    .stripe {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .stripe {
            animation: none;
        }
    }
} 