/* JL Boss Website - Mobile-First CSS */
/* Color Palette: #273746 (dark bg), #DA70D6 (primary), #9400D3 (secondary), #BAFFC9 (accent) */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px base for rem calculations */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #273746;
    color: #BAFFC9;
    line-height: 1.5;
    font-size: 1.4rem;
    min-height: 100vh;
    padding-bottom: 6rem; /* Space for bottom navigation */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #DA70D6;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.4rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5rem;
}

/* Container */
.container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #273746 0%, #1a252f 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #9400D3;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 430px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #DA70D6;
}

.logo-section img {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    background: linear-gradient(135deg, #DA70D6 0%, #9400D3 100%);
    color: #273746;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 112, 214, 0.4);
}

.nav-toggle {
    background: none;
    border: none;
    color: #DA70D6;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

/* Mobile Navigation Menu */
.nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: #273746;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    max-height: 0;
    overflow: hidden;
    border-top: 2px solid #9400D3;
}

.nav-menu.active {
    transform: translateY(0);
    max-height: 50rem;
}

.nav-menu ul {
    list-style: none;
    padding: 2rem 1rem;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    color: #BAFFC9;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    display: block;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #9400D3;
    color: #273746;
}

/* Main Content */
.main-content {
    margin-top: 8rem; /* Account for fixed header */
    padding-bottom: 2rem;
}

/* Carousel */
.carousel-container {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-slide {
    display: none;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(148, 0, 211, 0.3), rgba(218, 112, 214, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.carousel-text {
    color: #BAFFC9;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Promotional Links */
.promo-link {
    background: linear-gradient(135deg, #DA70D6 0%, #9400D3 100%);
    color: #273746;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 2.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(218, 112, 214, 0.3);
}

.promo-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(218, 112, 214, 0.5);
}

.promo-link.secondary {
    background: linear-gradient(135deg, #BAFFC9 0%, #7FFFD4 100%);
    color: #273746;
}

/* Game Grid */
.game-section {
    margin-bottom: 3rem;
}

.game-category-title {
    text-align: center;
    color: #DA70D6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.game-item {
    background: rgba(186, 255, 201, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-item:hover {
    transform: translateY(-5px);
    background: rgba(218, 112, 214, 0.2);
    border-color: #DA70D6;
    box-shadow: 0 8px 25px rgba(218, 112, 214, 0.3);
}

.game-item img {
    width: 100%;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.game-item-name {
    font-size: 1rem;
    color: #BAFFC9;
    font-weight: 600;
    line-height: 1.2;
}

/* Content Sections */
.content-section {
    background: rgba(186, 255, 201, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(218, 112, 214, 0.2);
}

.section-title {
    color: #DA70D6;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li:before {
    content: "★";
    color: #DA70D6;
    position: absolute;
    left: 0;
    font-size: 1.6rem;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 2rem;
    background: rgba(186, 255, 201, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid #DA70D6;
}

.faq-question {
    color: #DA70D6;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #BAFFC9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #273746 100%);
    padding: 3rem 1rem 8rem;
    margin-top: 4rem;
    border-top: 3px solid #9400D3;
}

.footer-content {
    max-width: 430px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #BAFFC9;
    text-decoration: none;
    padding: 1rem;
    background: rgba(186, 255, 201, 0.1);
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-links a:hover {
    background: #9400D3;
    color: #273746;
}

.partners-section {
    margin: 2rem 0;
}

.partners-title {
    color: #DA70D6;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.partner-logo {
    width: 100%;
    height: 4rem;
    object-fit: contain;
    background: rgba(186, 255, 201, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.copyright {
    text-align: center;
    color: #BAFFC9;
    font-size: 1.2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 112, 214, 0.3);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #273746 0%, #1a252f 100%);
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 2px solid #9400D3;
    z-index: 1000;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #BAFFC9;
    text-decoration: none;
    font-size: 1rem;
    min-width: 4.4rem;
    min-height: 4.4rem;
    justify-content: center;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover {
    color: #DA70D6;
    transform: translateY(-2px);
}

.bottom-nav-item i {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

/* Responsive Design */
@media (min-width: 480px) {
    .game-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: #DA70D6;
}

.text-accent {
    color: #BAFFC9;
}

.bg-primary {
    background-color: #DA70D6;
}

.bg-secondary {
    background-color: #9400D3;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
} 