@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #002855;
    --primary-light: #004085;
    --secondary: #9c824a;
    --accent: #f8fbff;
    --text-main: #1a1a1a;
    --text-muted: #666;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 40, 85, 0.08);
    --radius: 16px;
    --glass: rgba(255, 255, 255, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--accent);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, .culture-title {
    font-family: 'Playfair Display', serif;
}

/* Header */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    height: 52px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.logo-name {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-moj {
    background: linear-gradient(135deg, #002855 0%, #0077cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-martin {
    background: linear-gradient(90deg, #c9a84c 0%, #e87520 28%, #cc2e5d 55%, #7c3fc0 78%, #1e8fd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sk {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.35;
    letter-spacing: 0;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Redesign Banner */
.redesign-banner {
    margin-top: 82px;
    z-index: 900;
    background: linear-gradient(135deg, #002855, #004085);
    padding: 44px 5%;
    border-bottom: 3px solid var(--secondary);
}

.redesign-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.redesign-icon {
    width: 50px;
    height: 50px;
    background: rgba(156, 130, 74, 0.2);
    border: 1px solid var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.redesign-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.redesign-text strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.redesign-text strong::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(156, 130, 74, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(156, 130, 74, 0); }
}

.redesign-text span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* Hero */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 40, 85, 0.4), rgba(0, 40, 85, 0.6)), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 10%;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Container */
.main-wrapper {
    max-width: 1400px;
    margin: -150px auto 100px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* Feature Section */
.card-group-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-group-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.news-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary);
}

.news-img {
    height: 180px;
    background: #e9eff5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.news-body {
    padding: 25px;
}

.news-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

.news-body h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.news-body p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Sidebar Sections */
.sidebar-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 15px;
}

.inzercia-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.inzercia-row:last-child { border: none; }

.inzercia-row a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
}

.inzercia-row .price {
    color: var(--secondary);
    font-weight: 700;
}

/* Ad Banners */
.banner-premium {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 30px;
}

.banner-premium h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.banner-premium p {
    font-size: 13px;
    opacity: 0.8;
}

/* Culture Highlight */
.culture-banner {
    grid-column: span 2;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.culture-content { flex: 1; }
.culture-content h2 { font-size: 40px; margin-bottom: 20px; color: var(--primary); }

@media (max-width: 1024px) {
    .main-wrapper { grid-template-columns: 1fr; margin-top: -50px; }
    .culture-banner { grid-column: span 1; flex-direction: column; text-align: center; padding: 40px; }
}
