/* ========================================
   VARIABLES
======================================== */

:root {
    --bg: #0f172a;
    --card: #1e293b;
    --accent: #38bdf8;
    --text: #e2e8f0;
    --muted: #94a3b8;
}

/* ========================================
   RESET / BASE
======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    padding: 20px;
    min-height: 100vh;
}

img {
    max-width: 100%;
    border-radius: 10px;
}

/* Remove bullets from lists */
ul, ol {
    list-style: none;
    padding-left: 0; /* remove default indentation */
    margin-left: 0;
}

/* ========================================
   GENERAL LAYOUT
======================================== */
header {
    padding: 15px 20px;
    background: #0f172a; /* or your page header color */
}

header img {
    display: block;
}

.logo-home {
    display: block;
    margin: 0 auto;
    height: 80px; /* or whatever size you prefer */
    width: auto;
}

.container {
    max-width: 1000px;
    margin: auto;
    width: 100%;
}

footer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ========================================
   HERO SECTION (Homepage)
======================================== */

.hero {
    margin-bottom: 50px;
    text-align: center;
}

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

.tagline {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ========================================
   BADGES / BUTTONS
======================================== */

.badge {
    display: inline-block;
    background: var(--accent);
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    background: var(--accent);
    color: #0f172a;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.cta:hover {
    opacity: 0.85;
}

/* ========================================
   SERVICE CARDS (Homepage)
======================================== */

.services {
    display: grid;
    gap: 20px;
}

.service-card {
    display: block;
    background: var(--card);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-decoration: none;
    color: var(--text);
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.service-card h2 {
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
}

/* ========================================
   CATALOG PAGE
======================================== */

.products {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
    display: block;
    background: var(--card);
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
}

.product-card img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 10px;
}

/* ========================================
   PRODUCT DETAIL PAGE
======================================== */

.product-page {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.specs {
    margin-top: 20px;
    background: var(--card);
    padding: 15px;
    border-radius: 10px;
}

/* ========================================
   INFO PAGES
======================================== */

.info-page {
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}

.info-page h1 {
    margin-bottom: 10px;
}

.info-page h2 {
    margin-top: 25px;
}

.info-page p {
    margin: 10px 0;
}

/* ========================================
   LINKS
======================================== */

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

/* ========================================
   DESKTOP ENHANCEMENTS
======================================== */

@media (min-width: 768px) {

    .services {
        grid-template-columns: repeat(3, 1fr);
    }

    body {
        padding: 40px;
    }
}
