:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --font-heading: 'Play', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --iridescent-gradient: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    --light-iridescent: linear-gradient(124deg, #ffd1ff, #e0f2ff, #d1ffea, #ffffe0, #ffe0e0, #e0c3fc, #ffd1ff);
}

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

html, body {
    width: 100%;
    overflow-x: clip;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

/* Background removed as requested */

/* Language Toggle */
.lang-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.lang-toggle button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lang-toggle button.active {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.lang-toggle button:hover:not(.active) {
    color: #ccc;
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.logo-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6rem;
}

.circle-svg {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    animation: rotate 20s linear infinite;
    opacity: 0.6;
    filter: invert(1);
}

.main-logo {
    width: 75%;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-description {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
}

@keyframes iridescence {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Instagram Button */
.instagram-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 3rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    background: var(--light-iridescent);
    background-size: 400% 400%;
    animation: iridescence 10s ease infinite;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.instagram-btn .btn-text {
    position: relative;
    z-index: 2;
    text-shadow: none;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #666;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.arrows span {
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #666;
    border-right: 2px solid #666;
    transform: rotate(45deg);
    animation: arrow-scroll 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: -0.2s;
    margin-top: -5px;
}

@keyframes arrow-scroll {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* Flying Section */
.flying-section {
    position: relative;
    height: 1200vh; /* creates long scrollable area */
    width: 100%;
}

.fly-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.fly-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 426px;
    max-width: 65vw;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.5s ease;
    will-change: transform, opacity;
}

.thank-you-fly {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 4px;
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0;
    z-index: 1000;
    pointer-events: none;
}

/* Mosaic Section */
.mosaic-section {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, transparent, #050505 20%);
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 4rem;
    color: #fff;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    border-radius: 15px;
    aspect-ratio: 4/5;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #111;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.product-poster {
    display: none;
}

.product-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-info p {
    font-size: 0.85rem;
    color: #aaa;
}

.holo-border {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 4;
    pointer-events: none;
    transition: border-color 0.3s ease;
}

/* Hover Effects */
.product-card:hover .card-inner {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255,255,255,0.1);
}

.product-card:hover .card-info {
    transform: translateY(0);
    opacity: 1;
}

.product-card:hover .holo-border {
    border-color: rgba(255,255,255,0.3);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.1);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.founders {
    font-weight: 300;
}

@media (max-width: 768px) {
    .brand-title { font-size: 2.5rem; }
    .brand-description { font-size: 0.95rem; }
    .logo-container { width: 180px; height: 180px; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
}
