/*
Theme Name: Prolabel Coming Soon
Theme URI: https://prolabel.pl
Author: Antigravity
Author URI: https://google.com
Description: A premium, modern placeholder theme for Prolabel (Full Homepage Port).
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prolabel-come-soon
*/

:root {
    --brand-dark: #001a35;
    --brand-primary: #002e5d;
    --brand-accent: #00aeef;
    --brand-light: #f0f9ff;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
    --text-slate-600: #475569;
    --text-slate-700: #334155;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8fafc;
    color: var(--brand-dark);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Header --- */
.top-bar {
    background-color: var(--brand-dark);
    color: #cbd5e1;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .top-bar {
        font-size: 0.875rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.top-info-item:hover {
    color: var(--brand-accent);
}

.main-header {
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--text-slate-600);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--brand-primary);
}

.btn-contact-header {
    background-color: var(--brand-primary);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.2);
}

.btn-contact-header:hover {
    background-color: var(--brand-dark);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background-color: var(--brand-dark);
    height: 500px;
    overflow: hidden;
    color: #fff;
}

@media (min-width: 1024px) {
    .hero {
        height: 600px;
    }
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 26, 53, 0.4);
    z-index: 10;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--brand-dark), transparent);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 174, 239, 0.2);
    color: var(--brand-accent);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 174, 239, 0.3);
    backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-desc {
    font-size: 1.125rem;
    color: #f1f5f9;
    max-width: 42rem;
    margin: 0 auto 2rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.5rem;
    }
}

.btn-hero {
    background-color: var(--brand-accent);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 174, 239, 0.3);
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background-color: #38bdf8;
    transform: translateY(-2px);
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
    opacity: 0;
}

.hero:hover .hero-nav-btn {
    opacity: 1;
}

.hero-nav-prev {
    left: 1rem;
}

.hero-nav-next {
    right: 1rem;
}

.hero-nav-btn:hover {
    background-color: var(--brand-accent);
}

/* Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 30;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    transform: scale(1.2);
}


/* --- Category Selector --- */
.category-selector {
    background-color: #f8fafc;
    position: relative;
    z-index: 30;
    margin-top: -2.5rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .category-selector {
        margin-top: -4rem;
    }
}

.cat-container {
    max-width: 1280px;
    margin: 0 auto;
}

.cat-grid {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .cat-grid {
        grid-template-columns: repeat(5, 1fr);
        padding: 1rem;
        gap: 1rem;
    }
}

.cat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    border-radius: 0.75rem;
    border: none;
    background-color: #f8fafc;
    color: var(--text-slate-600);
    cursor: pointer;
    transition: all 0.3s;
}

.cat-btn:hover {
    background-color: #f1f5f9;
    color: var(--brand-primary);
}

.cat-btn.active {
    background-color: var(--brand-primary);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cat-icon-wrapper {
    padding: 0.75rem;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    background-color: #fff;
    transition: all 0.3s;
}

.cat-btn.active .cat-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
}

.cat-icon {
    width: 2rem;
    height: 2rem;
    color: var(--brand-accent);
}

.cat-btn.active .cat-icon {
    color: #fff;
}

.cat-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
}

@media (max-width: 767px) {
    .cat-title {
        font-size: 0.75rem;
    }
}

/* --- Details Section --- */
.details-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.details-header {
    text-align: center;
    margin-bottom: 4rem;
}

.details-label {
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.details-title-main {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-top: 0.5rem;
}

.details-divider {
    width: 5rem;
    height: 0.375rem;
    background-color: var(--brand-accent);
    margin: 1.5rem auto 0;
    border-radius: 9999px;
    opacity: 0.5;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.details-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.5s;
}

.details-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 174, 239, 0.3);
}

.card-header {
    background-color: var(--brand-primary);
    padding: 1rem 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title svg {
    color: var(--brand-accent);
}

.card-list {
    padding: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.card-item svg {
    color: var(--brand-accent);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.item-name {
    display: block;
    color: var(--text-slate-700);
    font-weight: 600;
    font-size: 1.125rem;
}

.item-desc {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-style: italic;
}

/* --- Contact Bottom --- */
.contact-bottom {
    background-color: var(--brand-dark);
    color: #fff;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-bottom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), transparent);
    pointer-events: none;
}

/* --- Footer --- */
footer {
    background-color: #020617;
    color: #94a3b8;
    padding: 4rem 1rem 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.875rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-about {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-about {
        text-align: left;
    }
}

.footer-nav {
    text-align: center;
}

.footer-contact-col {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-contact-col {
        text-align: right;
    }
}

.footer h4 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--brand-accent);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-contact-item {
        justify-content: flex-end;
    }
}

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgb(30 41 59 / 0.5);
    text-align: center;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
}

/* Utility to hide/show elements via JS */
.hidden {
    display: none !important;
}