/*
Theme Name: Sweet Gallery QR Theme
Description: Minimalistyczny motyw dla systemu QR Sweet Gallery - Bafra Kebab, Lodolandia, Kołacz na okrągło
Version: 1.0.0
Author: Sweet Gallery
Text Domain: sweet-gallery
*/

/* === RESET I PODSTAWY === */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* === KONTENER GŁÓWNY === */
.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === NAGŁÓWEK === */
.site-header {
    background-color: #ffffff;
    border-bottom: 2px solid #000000;
    padding: 20px 0;
    position: relative;
}

.site-header::before,
.site-header::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background-color: #000000;
}

.site-header::before {
    top: 10px;
}

.site-header::after {
    bottom: 10px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.site-logo {
    display: inline-block;
    margin-bottom: 10px;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
}

.site-description {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    font-weight: 300;
}

/* === NAWIGACJA === */
.main-navigation {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #000000;
    border-bottom-color: #000000;
}

/* === TREŚĆ GŁÓWNA === */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.content-area {
    background-color: #ffffff;
}

/* === STRONA SKANOWANIA === */
.qr-scanner-wrapper {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
}

.qr-scanner-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.qr-scanner-title h1 {
    font-size: 2rem;
    margin: 0 0 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.qr-scanner-title p {
    color: #666666;
    margin: 0;
    font-size: 1.1rem;
}

/* === STOPKA === */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: auto;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background-color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    filter: invert(1);
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brands {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

/* === QR SCANNER OVERRIDES === */
.qr-scanner-app {
    background: none !important;
    font-family: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
}

.qr-scanner-header {
    display: none !important;
}

.qr-status-bar {
    display: none !important;
}

.qr-scanner-main {
    padding: 0 !important;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-brands {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .qr-scanner-wrapper {
        margin: 10px;
        padding: 20px;
    }
    
    .main-content {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .site-header::before,
    .site-header::after {
        width: 150px;
    }
    
    .qr-scanner-wrapper {
        padding: 15px;
    }
}

/* === WYDRUK === */
@media print {
    .site-header,
    .main-navigation,
    .site-footer {
        display: none;
    }
    
    .main-content {
        margin: 0;
        padding: 0;
        max-width: none;
    }
}
