/* SPLARP INC - Mobile Accessories Retailer */
/* Style: Fresh Minimal - Coral & Mint Color Scheme */
/* Navigation: Left Sidebar Vertical Menu */
/* Color Scheme: Coral Pink + Mint Green + Cream */

:root {
    --primary: #ff7e7e;
    --secondary: #7ecbbd;
    --accent: #ffd93d;
    --dark: #2d3436;
    --light: #fdf6f0;
    --card-bg: #ffffff;
    --text: #2d3436;
    --text-light: #636e72;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Quicksand', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout with Left Sidebar */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Left Sidebar Navigation */
.nav-sidebar_left {
    width: 260px;
    background: white;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo-area {
    padding: 30px 25px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    flex: 1;
    padding: 30px 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 126, 126, 0.1);
    border-left-color: var(--primary);
    color: var(--primary);
}

.nav-links a .icon {
    width: 24px;
    margin-right: 12px;
    font-size: 18px;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
}

/* Hero Section */
.hero-bento {
    padding: 80px 60px 60px;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fff9 100%);
    position: relative;
}

.hero-bento::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content .tagline {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content .description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-outline {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 126, 126, 0.3);
}

.btn-outline {
    background: white;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

/* Page Hero */
.page-hero {
    padding: 100px 60px 60px;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fff9 100%);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
}

.page-hero h1 span {
    color: var(--primary);
}

/* Features Section */
.features {
    padding: 80px 60px;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* About Section */
.about-content {
    padding: 80px 60px;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.values-list {
    list-style: none;
    margin-top: 25px;
}

.values-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.values-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 12px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fff9 100%);
}

.team-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 18px;
    color: var(--dark);
}

.team-member p {
    padding: 0 20px 20px;
    color: var(--primary);
    font-size: 14px;
}

/* Products Section */
.products-section {
    padding: 80px 60px;
}

.products-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-shop {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-shop:hover {
    background: #ff6b6b;
}

/* Cases Section */
.cases-section {
    padding: 80px 60px;
    background: white;
}

.cases-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.case-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-info {
    padding: 25px;
}

.case-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Contact Section */
.contact-section {
    padding: 80px 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-info h2 span {
    color: var(--primary);
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: var(--light);
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 126, 126, 0.3);
}

/* Footer */
.footer-cute {
    background: var(--dark);
    color: white;
    padding: 50px 60px 30px;
    margin-left: 260px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

@media (max-width: 900px) {
    .nav-sidebar_left {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .footer-cute {
        margin-left: 0;
    }
    
    .nav-links {
        display: flex;
        padding: 10px;
        overflow-x: auto;
    }
    
    .nav-links a {
        padding: 10px 15px;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}