/* Puggelz Website Styles */

:root {
    --primary-color: #4A90A4;
    --primary-dark: #357082;
    --text-color: #333;
    --text-light: #666;
    --background: #fff;
    --background-alt: #f8f9fa;
    --border-color: #e0e0e0;
    --max-width: 960px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

nav a {
    margin-left: 25px;
    color: var(--text-light);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: var(--background-alt);
}

.hero .app-icon {
    width: 128px;
    height: 128px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero .description {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

/* App Store Button */
.app-store-button {
    display: inline-block;
}

.app-store-button img {
    height: 50px;
}

.app-store-placeholder {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 20px;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-light);
}

/* Page Content */
.page-content {
    padding: 60px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
}

.page-content p {
    margin-bottom: 15px;
}

.page-content ul {
    margin: 15px 0 15px 25px;
}

.page-content li {
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    text-align: center;
}

footer nav {
    margin-bottom: 20px;
}

footer nav a {
    margin: 0 15px;
    color: var(--text-light);
}

footer .copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 50px 20px;
    }

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

    .hero .app-icon {
        width: 100px;
        height: 100px;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .features {
        padding: 50px 20px;
    }
}
