﻿/* Pixel Prana Web Solutions - Custom Styles */

:root {
    --primary-pink: #d84315;
    --primary-blue: #0d47a1;
    --dark: #2c2c2c;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-family: sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.brand-pixel {
    color: var(--primary-pink);
}

.brand-prana {
    color: var(--primary-blue);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light);
}

.services h2 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
}

.portfolio h2 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light);
}

.contact h2 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
}

.contact form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact .form-control {
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

.contact .btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    border: none;
    color: white;
}

.contact .btn-primary:hover {
    opacity: 0.9;
}

.contact a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services, .portfolio, .contact {
        padding: 3rem 0;
    }
}
