/* SOLUTIONS INC - Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;700&display=swap');

:root {
    --primary-orange: #f15a24;
    --dark-bg: #111111;
    --light-text: #ffffff;
    --gray-text: #aaaaaa;
    --section-width: 100vw;
    --section-height: 100vh;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .brand-title {
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Layout Containers */
.main-container {
    display: flex;
    flex-direction: column;
}

.vertical-section {
    width: 100%;
    min-height: var(--section-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Horizontal Scroll Container */
.horizontal-flow-container {
    width: 100%;
    height: var(--section-height);
    display: flex;
    flex-direction: row;
    overflow-x: hidden; /* Managed by JS for the wheel effect */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.horizontal-slide {
    flex: 0 0 100vw;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px;
    background-size: cover;
    background-position: center;
}

/* Typography & UI Elements */
.title-large {
    font-size: 5.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    line-height: .9;
}

.content-box {
    max-width: 900px;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-left: 6px solid var(--primary-orange);
    backdrop-filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1; /* Default to visible if JS fails, but we'll use fade-in */
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.content-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.logo-icon-box {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
}

.logo-icon-img {
    height: 100%;
    position: absolute;
    left: 0;
    transform: scale(1.1); /* Slight zoom to focus on the icon */
}

.brand-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: var(--light-text);
    letter-spacing: 2px;
}

/* Navigation Arrows (Visual only in CSS, functionality in JS) */
.nav-arrow {
    position: absolute;
    bottom: 40px;
    cursor: pointer;
    font-size: 2rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    transform: scale(1.2);
}

.nav-arrow-left { left: 40px; }
.nav-arrow-right { right: 40px; }

/* Utility Classes */
.orange-text { color: var(--primary-orange); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-large { font-size: 3rem; }
    .content-box { padding: 20px; }
}
