/*
Theme Name: Perfect Print Design
Theme URI: https://perfectprintdesign.com/
Author: Tim Ludwig
Author URI: https://perfectprintdesign.com/
Description: A clean, professional business theme for Perfect Print Design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: perfectprintdesign
*/

/* Global Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #333;
}

header, footer, main, section {
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1B1F23;
    color: white;
}

header a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    background: #f2f2f2;
    text-align: center;
    padding: 100px 20px;
}

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

.button {
    background: #00CFFF;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 4px;
}

section {
    border-bottom: 1px solid #eee;
    padding: 60px 20px;
}

footer {
    background: #1B1F23;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Portfolio Preview */
.portfolio-preview {
    text-align: center;
}

/* CTA Sections */
.cta-banner, .contact-cta {
    text-align: center;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}