/*
Theme Name: Orange Printro - Modern E-commerce Theme
Description: A modern, clean design for a printer and POS e-commerce store.
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Root Variables --- */
:root {
    --primary-dark: #1a2e1a;
    --primary-yellow: #ffd700;
    --primary-green: #204020;
    --primary-blue: #3f72af;
    --text-light: #ffd700;
    --text-dark: #1a2e1a;
    --bg-light: #1a2e1a;
    --bg-grey: #204020;
    --border-color: #ffd700;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1a2e1a 0%, #ffd700 100%);
    --gradient-secondary: linear-gradient(135deg, #204020 0%, #ffd700 100%);
}

/* --- Base Styles --- */
  .fade-in {
                opacity: 0;
                transform: translateY(30px);
                transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
            }
            .fade-in.visible {
                opacity: 1;
                transform: none;
            }
        body {
            background: #1a2e1a;
            color: #ffd700;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        .header {
            background: linear-gradient(90deg, #1a2e1a 80%, #ffd700 100%);
            color: #ffd700;
            padding: 2rem 0 1rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .header-logo {
            font-size: 2.5rem;
            font-weight: bold;
            letter-spacing: 2px;
            color: #ffd700;
        }
        .nav {
            margin-top: 1rem;
        }
        .nav a {
            color: #ffd700;
            text-decoration: none;
            margin: 0 1.5rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav a:hover {
            color: #fff;
        }
        .hero {
            background: #1a2e1a url('assets/images/index/print5.jpg') no-repeat center/cover;
            padding: 5rem 0 3rem 0;
            text-align: center;
        }
        .hero-title {
            font-size: 3rem;
            color: #ffd700;
            font-weight: 700;
        }
        .hero-sub {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 2rem;
        }
        .hero-btn {
            background: #ffd700;
            color: #1a2e1a;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: background 0.2s;
        }
        .hero-btn:hover {
            background: #e6c200;
        }
        .features {

            .btn {
                padding: 12px 30px;
                border-radius: 50px;
                font-weight: 600;
                transition: all 0.3s ease;
                border: none;
                background: #ffd700;
                color: #1a2e1a;
            }

            .btn-primary {
                background: linear-gradient(90deg,#ffd700 80%,#204020 100%);
                color: #1a2e1a;
            }

            .btn-primary:hover {
                background: #204020;
                color: #ffd700;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(26, 46, 26, 0.4);
            }

            .btn-secondary {
                background-color: transparent;
                color: #ffd700;
                border: 2px solid #ffd700;
            }

            .btn-secondary:hover {
                background-color: #ffd700;
                color: #1a2e1a;
            }

            .btn-green {
                background-color: #204020;
                color: #ffd700;
            }

            .btn-green:hover {
                background-color: #ffd700;
                color: #204020;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            }
            background: #204020;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            padding: 1.5rem;
            text-align: center;
            color: #ffd700;
        }
        .product-card img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .product-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .product-price {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .product-btn {
            background: #ffd700;
            color: #1a2e1a;
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: bold;
            border-radius: 20px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .product-btn:hover {
            background: #e6c200;
        }
        .footer {
            background: linear-gradient(90deg, #1a2e1a 80%, #ffd700 100%);
            color: #ffd700;
            padding: 2rem 0 1rem 0;
            text-align: center;
            font-size: 1rem;
            margin-top: 3rem;
        }
        .footer a {
            color: #ffd700;
            text-decoration: underline;
            margin: 0 1rem;
        }
        .footer a:hover {
            color: #fff;
        }




body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-yellow);
}

a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
}

/* --- Section Styling --- */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- Header & Navigation --- */

.navbar {
    background-color: var(--primary-green);
    padding: 1rem 0;
}

.navbar .navbar-brand {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar .nav-link {
    color: var(--primary-yellow);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: #fff;
}

.navbar .form-control {
    background-color: #2a2a4a;
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.navbar .form-control::placeholder {
    color: #a9a9a9;
}

/* --- Buttons --- */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}


.btn-primary {
    background: var(--gradient-secondary);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: #ffd700;
    color: #204020;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-green:hover {
    background-color: #00a082;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
}


/* --- Hero Section --- */
.hero-section {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.hero-section .lead {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 20px 0 30px 0;
}

/* --- Card Styles --- */
.feature-card, .product-card, .testimonial-card, .solution-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.feature-card:hover, .product-card:hover, .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* --- Product Card --- */
.product-card .card-img-top {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 20px;
    background-color: #fff;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* --- Gradient Section --- */
.gradient-section {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border-radius: 20px;
    padding: 60px;
}

.gradient-section h2, .gradient-section p {
    color: var(--text-light);
}

/* --- Custom Sections --- */
.bg-light-green {
    background-color: #e6f7f3;
}

.bg-dark-purple {
    background: linear-gradient(135deg, #432262 0%, #5e337d 100%);
    color: var(--text-light);
}

.bg-dark-purple .section-title,
.bg-dark-purple .section-subtitle {
    color: var(--text-light);
}

.business-type-card {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-decoration: none;
}

.business-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.business-type-card h5 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.4rem;
}

.solution-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-card {
    background-color: var(--bg-light);
}

.scanner-pos-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scanner-pos-card ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-light);
}

.scanner-pos-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.scanner-pos-card ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-green);
    color: var(--primary-yellow);
    padding: 60px 0 20px 0;
}

footer h5 {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: #fff;
}

footer .social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
}