:root {
    --primary-red: #E53A30;
    --dark-bg: #111111;
    --light-bg: #f9f9f9;
    --text-dark: #222222;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-white {
    color: var(--text-light) !important;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass.dark {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-red);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 58, 48, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 5%;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.logo img {
    height: 50px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background-color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('images/hero.png') no-repeat center center/cover;
}

.hero::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(229, 58, 48, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #eee;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-visual {
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: white;
    text-align: center;
}

.about-visual h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
}

.divider {
    height: 2px;
    width: 50px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto;
}

/* Services */
.services {
    padding: 8rem 0;
    background: url('images/services.png') no-repeat center center/cover;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(17,17,17,0.85); /* Dark overlay */
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(229, 58, 48, 0.3);
    border-color: var(--primary-red);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Printing */
.printing {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.printing-content {
    background: white !important;
    border-color: #eee !important;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}

.printing-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.printing-list li {
    font-size: 1.1rem;
    color: #444;
    position: relative;
    padding-left: 2rem;
}

.printing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Stats */
.stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg), #222);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 3rem 2rem;
    flex: 1;
    min-width: 200px;
    background: rgba(229, 58, 48, 0.1) !important;
    border-color: rgba(229, 58, 48, 0.2) !important;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-red);
    display: inline-block;
}
.stat-item span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
}

.stat-item p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #ccc;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--primary-red);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
    }
    
    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li a {
        color: var(--text-dark);
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-grid, .printing-list {
        grid-template-columns: 1fr;
    }
}
