:root { --header-height: 120px; --nav-height: 50px; --accent-color: #d41317; --gold-color: #f6a500; }
* { margin: 0; padding: 0; box-sizing: border-box; }
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap');
body { color: #fff; font-family: 'Cabin', sans-serif; overflow-x: hidden; padding-top: calc(var(--header-height) + var(--nav-height)); line-height: 1.4; }
oldbody { background: #100f0d; color: #fff; font-family: "Poppins", sans-serif; overflow-x: hidden; padding-top: calc(var(--header-height) + var(--nav-height)); }
oldbody2 { background: #100f0d; color: #fff; font-family: 'Roboto Slab', serif; overflow-x: hidden; padding-top: calc(var(--header-height) + var(--nav-height)); }
.main-header { width: 100%; background: #fff; padding: 30px 0; position: fixed; top: 0; left: 0; z-index: 100; opacity: 1; height: var(--header-height); display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease, opacity 0.5s ease; }
.main-header.hide { transform: translateY(-100%); opacity: 0; }
.container { width: 1200px; max-width: 95%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 1400px) { .logo-container, .right-side { transform: translateX(0px)!important; } }
.logo-container { transform: translateX(-150px); animation: slideInLeft 1s ease forwards; }
.logo { height: 90px; transition: filter 0.6s ease, transform 0.4s ease; }
.logo-link:hover .logo { transform: scale(1.05); }
.right-side { display: flex; align-items: center; gap: 25px; transform: translateX(150px); animation: slideInRight 1s ease forwards 0.2s; }
.circle { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-color); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background 0.3s ease; }
.circle img { width: 18px; height: 18px; transition: filter 0.3s ease; }
.circle:hover { transform: scale(1.1); background: var(--gold-color); }
.socials .circle:hover img { filter: brightness(0) invert(0); }
.socials { display: flex; align-items: center; gap: 12px; }
.flags { display: flex; align-items: center; gap: 12px; }
.flags .circle { display: flex; justify-content: center; align-items: center; width: 32px; height: 32px; border-radius: 50%; transition: all 0.3s ease; text-decoration: none; }
.flags .circle img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; display: block; }
.active-flag { background: var(--gold-color); cursor: default; pointer-events: none; box-shadow: 0 0 10px rgba(232, 195, 135, 0.5); opacity: 1; }
.inactive-flag { background: transparent; opacity: 0.5; cursor: pointer; }
.inactive-flag:hover { opacity: 1; background: rgba(255, 255, 255, 0.1); }
.separator { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.4); }
.join-btn { background: var(--accent-color); color: #fff !important; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; padding: 10px 20px; border-radius: 30px; text-decoration: none; transition: all 0.3s ease; }
.join-btn:hover { background: var(--gold-color); color: #100f0d; box-shadow: 0 0 12px rgba(232, 195, 135, 0.6); transform: scale(1.05); }
.ssp-requirements { background-color: #fbfaf9; padding: 40px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); margin: 40px 0; font-family: inherit; }
.ssp-req-title { color: #6b1427; text-align: center; margin-bottom: 35px; font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.ssp-req-list { list-style-type: none; counter-reset: ssp-counter; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px 30px; }
.ssp-req-list li { position: relative; padding: 16px 20px 16px 55px; background: #ffffff; border: 1px solid #eee; border-radius: 6px; font-size: 14.5px; line-height: 1.6; color: #444; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; counter-increment: ssp-counter; display: flex; align-items: center; }
.ssp-req-list li:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(107, 20, 39, 0.08); border-color: #d1b3b9; }
.ssp-req-list li::before { content: counter(ssp-counter); position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; background-color: #6b1427; color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; box-shadow: 0 2px 5px rgba(107, 20, 39, 0.3); }
.main-nav { width: 100%; background: var(--gold-color); position: fixed; top: var(--header-height); left: 0; z-index: 90; display: flex; justify-content: center; transition: top 0.5s ease; box-sizing: border-box; }
.main-nav.sticky { top: 0; }
.main-nav ul { display: flex; flex-wrap: nowrap; gap: 1px; list-style: none; margin: 0; padding: 0; }
.main-nav ul li { position: relative; display: flex; flex-direction: column; flex: 0 0 auto; }
.main-nav ul li.has-dropdown > a::after { content: '\25BE'; font-size: 14px; margin-left: 8px; display: inline-block; transition: transform 0.3s ease; }
.main-nav ul li:hover.has-dropdown > a::after, .main-nav ul li.active-dropdown > a::after { transform: rotate(180deg); }
.main-nav ul li a { color: #000; text-decoration: none; position: relative; transition: color 0.3s ease, padding 0.3s ease; font-size: 14px; text-transform: uppercase; padding: 16px 18px; display: flex; align-items: center; justify-content: center; overflow: hidden; height: 100%; white-space: nowrap; font-weight: bold; }
.main-nav ul li a::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--accent-color); transform: translateY(100%); transition: transform 0.4s ease; z-index: -1; }
.main-nav ul li a:hover::before, .main-nav ul li a:active::before { transform: translateY(0); }
.main-nav ul li a:hover, .main-nav ul li a:active { color: #fff; }
.main-nav ul li.active a { color: #fff; }
.main-nav ul li.active a::before { transform: translateY(0); }
.main-nav ul li menu { position: absolute; top: 100%; left: 0; background: #fff; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease; box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-radius: 0 0 6px 6px; padding: 0; margin: 0; min-width: 260px; z-index: 100; border-top: 3px solid var(--accent-color); }
.main-nav ul li:hover menu, .main-nav ul li.active-dropdown menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav ul li menu a { color: #333; padding: 14px 22px; border-bottom: 1px solid #f0f0f0; text-transform: uppercase; font-size: 13px; font-weight: 700; transition: all 0.3s ease; white-space: normal; display: flex; justify-content: flex-start; line-height: 1.4; letter-spacing: 0.5px; height: auto; }
.main-nav ul li menu a::before { display: none; }
.main-nav ul li menu a:hover, .main-nav ul li menu a:active { background: #fafafa; color: var(--accent-color); padding-left: 28px; }
.main-nav ul li menu a:last-child { border-bottom: none; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 15px; }
.hamburger span { width: 30px; height: 3px; background: #000; transition: 0.3s; }
.hero { position: relative; width: 100%; height: 85vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: #000; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease-in-out; }
.hero-slider .slide.active { opacity: 1; }
.hero-slider img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.55); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 30px; display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge { display: inline-block; border: 1px solid #fff; border-radius: 30px; padding: 6px 18px; font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 25px; }
.hero-title { font-size: 54px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; max-width: 900px; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.hero-date { font-size: 14px; color: #ddd; margin-bottom: 40px; font-weight: 600; letter-spacing: 1px; }
.hero-buttons { display: flex; gap: 20px; }
.btn-hero-main { display: inline-flex; align-items: center; justify-content: center; padding: 14px 35px; background: #fff; color: #100f0d; font-size: 13px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; border-radius: 30px; text-decoration: none; transition: all 0.3s ease; }
.btn-hero-main:hover { background: var(--gold-color); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn { text-decoration: none; padding: 12px 30px; border-radius: 30px; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; transition: all 0.4s ease; }
.btn-outline { border: 2px solid #f6a500; color: #f6a500; background: #fff; }
.btn-outline:hover { background: #f6a500; color: #100f0d; }
.btn-filled { background: #f6a500; color: #100f0d; border: 2px solid #f6a500; }
.btn-filled:hover { background: #d41317; color: #fff; border: 2px solid #d41317; }
.three-boxes { display: flex; justify-content: center; align-items: stretch; gap: 50px; padding: 60px; }
.box { flex: 1; max-width: 350px; background: rgba(255, 255, 255, 0.05); text-align: center; color: #fff; padding: 60px 30px; text-decoration: none; position: relative; overflow: hidden; transition: all 0.4s ease; }
.box-icon { width: 80px; height: 80px; opacity: 0.5; margin-bottom: 25px; transition: opacity 0.4s ease; }
.box h3 { color: #f6a500; font-size: 22px; margin-bottom: 15px; letter-spacing: 1px; transition: color 0.4s ease; }
.box p { font-size: 15px; line-height: 1.6; color: #000; transition: color 0.4s ease; }
.box::after { content: ""; position: absolute; top: 20px; right: 20px; bottom: 20px; left: 20px; border: 1px solid #fff; opacity: 0; transform: scale(1.1); transition: all 0.5s ease; }
.box:hover { background: #d41317; }
.box:hover::after { opacity: 1; transform: scale(1); }
.box:hover .box-icon { opacity: 1; }
.box:hover h3 { color: #fff; }
.box:hover p { color: #fff; }
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 1.2s ease, transform 1.2s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); border: 1px solid #d41317; }
.three-boxes .box:nth-child(1) { transition-delay: 0s; }
.three-boxes .box:nth-child(2) { transition-delay: 0.2s; }
.three-boxes .box:nth-child(3) { transition-delay: 0.4s; }
.about-section { background: #fff; color: #100f0d; padding: 50px 0; overflow: hidden; }
.about-container { width: 1200px; max-width: 95%; margin: 0 auto; display: flex; align-items: stretch; gap: 60px; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.about-container.visible { opacity: 1; transform: translateY(0); }
.about-container2 { width: 1200px; max-width: 95%; margin: 0 auto; display: flex; align-items: stretch; gap: 60px; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.about-container2.visible { opacity: 1; transform: translateY(0); }
.about-content { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; text-align: right; opacity: 0; transform: translateX(-60px); transition: opacity 1s ease, transform 1s ease; }
.about-container.visible .about-content { opacity: 1; transform: translateX(0); }
.about-image { flex: 1; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.15); opacity: 0; transform: translateX(60px); transition: opacity 1s ease, transform 1s ease; }
.about-container.visible .about-image { opacity: 1; transform: translateX(0); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s ease; }
.about-image:hover img { transform: scale(1.05); }
.about-content h5 { text-transform: uppercase; font-size: 14px; letter-spacing: 2px; color: #888; margin-bottom: 10px; }
.about-content h2 { font-size: 40px; color: #d41317; margin-bottom: 20px; }
.about-content p { font-size: 16px; line-height: 1.7; margin-bottom: 15px; max-width: 90%; }
.about-content .btn-outline { display: inline-block; border: 2px solid #f6a500; color: #100f0d; text-decoration: none; text-transform: uppercase; font-size: 12px; padding: 10px 20px; border-radius: 30px; letter-spacing: 1px; transition: all 0.3s ease; }
.about-content .btn-outline:hover { background: #f6a500; color: #100f0d; transform: translateY(-3px); }
.partners-section { background: #fff; padding: 80px 0 120px 0; text-align: center; overflow: hidden; }
.partners-section h2 { font-size: 28px; margin-bottom: 50px; color: #d41317; text-transform: uppercase; letter-spacing: 2px; }
.partners-slider { position: relative; width: 100%; overflow: hidden; }
.partners-track { display: flex; width: max-content; animation: scroll 90s linear infinite; }
.partner { display: flex; align-items: center; justify-content: center; min-width: 250px; transition: all 0.3s ease; min-height: 140px; }
.partner img { max-width: 140px; filter: grayscale(100%); opacity: 0.7; transition: all 0.4s ease; display: block; }
.partner:hover img { filter: grayscale(0%) brightness(1); opacity: 1; transform: scale(1.15); }
.partner:hover { z-index: 2; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partners-slider:hover .partners-track { animation-play-state: paused; }
.footer { background: #100f0d; color: #fff; position: relative; overflow: visible; margin-top: 0px; }
.footer::before { content: ""; position: absolute; top: -10px; left: 25px; width: calc(100% - 50px); height: 20px; background: #f6a500; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); z-index: 2; }
.footer-top { display: flex; justify-content: space-between; align-items: stretch; margin: 0 auto; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 300px; }
.footer-map-wide { flex: 1; z-index: 3; }
.footer-map-wide iframe { width: 100%; height: 100%; min-height: 500px; border: none; border-radius: 0; filter: grayscale(100%); transition: transform 0.4s ease, filter 0.8s ease; }
.footer-map-wide iframe:hover { filter: grayscale(0%); }
.footer-info { position: relative; overflow: hidden; flex: 1; min-width: 300px; padding: 60px 20px 40px; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15; z-index: 0; filter: blur(3px) grayscale(60%); pointer-events: none; }
.footer-info::before { content: ""; position: absolute; top: 0; left: 0; width: 35%; height: 100%; background: linear-gradient(to right, rgba(16, 15, 13, 0.85), rgba(16, 15, 13, 0)); z-index: 0; }
.footer-contact, .footer-affiliate { position: relative; z-index: 2; color: #fff; }
.footer-contact h4 { color: #f6a500; font-size: 16px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.footer-contact p { color: #ccc; font-size: 14px; line-height: 1.7; }
.footer-contact a { color: #f6a500; text-decoration: none; }
.footer-contact a:hover { color: #d41317; }
.footer-socials { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 25px; }
.footer-affiliate { margin-top: 60px; }
.footer-subtitle { color: #f6a500; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.footer-logo { margin-top: 10px; transition: all 0.3s ease; }
.footer-logo:hover { opacity: 0.5; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; padding: 20px; font-size: 13px; color: #aaa; }
.footer-bottom a { color: #aaa; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.fade-up { opacity: 0; transform: translateY(40px); transition: all 1s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 10000; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-click-blocker { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.modal-content { background-color: #fff; padding: 40px; border-radius: 8px; width: 100%; max-width: 400px; position: relative; z-index: 1; box-shadow: 0 10px 25px rgba(0,0,0,0.5); transform: translateY(-20px); transition: transform 0.3s ease; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: bold; color: #aaa; cursor: pointer; transition: color 0.2s; }
.close-modal:hover { color: #000; }
.modal-header h3 { margin: 0 0 10px 0; color: #333; font-size: 24px; }
.modal-header p { margin: 0 0 25px 0; color: #666; font-size: 14px; }
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: bold; color: #333; text-transform: uppercase; }
.input-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; font-size: 16px; }
.input-group input:focus { border-color: #4CAF50; outline: none; }
.btn-submit { width: 100%; padding: 15px; background-color: #333; color: white; border: none; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background 0.3s; }
.btn-submit:hover { background-color: #000; }
.join-btn.logged-in { background-color: #4CAF50 !important; border-color: #4CAF50 !important; color: #fff !important; }
.logout-link { font-size: 12px; margin-left: 10px; color: #333; text-decoration: underline; font-weight: bold; }
.spinner { border: 4px solid #f3f3f3; border-top: 4px solid #4CAF50; border-radius: 50%; width: 30px; height: 30px; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
#wcag-widget { position: fixed; bottom: 20px; right: 20px; z-index: 99999; display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
#wcag-panel { background: #fff; display: flex; flex-direction: column; padding: 15px; gap: 8px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; pointer-events: none; }
#wcag-panel.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.wcag-btn { background: #f8f9fa; border: 1px solid #ddd; padding: 10px 15px; cursor: pointer; border-radius: 5px; font-size: 14px; text-align: left; transition: 0.2s; white-space: nowrap; color: #333; font-family: "Poppins", sans-serif; display: flex; gap: 10px; align-items: center; width: 100%; }
.wcag-btn:hover { background: #e9ecef; }
.wcag-btn.active { background: #000; color: #fff; border-color: #000; }
.wcag-btn.reset { background: var(--accent-color, #d41317); color: #fff; border: none; margin-top: 5px; }
#wcag-toggle { background: var(--gold-color, #f6a500); color: #100f0d; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 24px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); display: flex; justify-content: center; align-items: center; transition: transform 0.3s ease; }
#wcag-toggle:hover { transform: scale(1.1); }
body.high-contrast, body.high-contrast header, body.high-contrast nav, body.high-contrast footer, body.high-contrast section, body.high-contrast div { background: #000 !important; color: #ffcc00 !important; border-color: #ffcc00 !important; }
body.high-contrast a, body.high-contrast h1, body.high-contrast h2, body.high-contrast h3, body.high-contrast p, body.high-contrast span { color: #ffcc00 !important; }
body.high-contrast img { filter: grayscale(100%) contrast(120%); }
body.highlight-links a { text-decoration: underline !important; text-underline-offset: 4px; font-weight: bold !important; }
.sommelier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 20px 0; font-family: 'Helvetica', 'Arial', sans-serif; }
.somm-card { display: flex; align-items: center; background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 15px; text-decoration: none; transition: all 0.3s ease; color: #333; }
.somm-icon { flex-shrink: 0; width: 40px; height: 40px; margin-right: 15px; background-color: #f9f2f4; border-radius: 50%; background-repeat: no-repeat; background-position: center; background-size: 20px; background-image: url("/grafika/glass.svg"); transition: all 0.3s ease; }
.somm-info { display: flex; flex-direction: column; }
.somm-name { font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 2px; color: #222; transition: color 0.3s ease; }
.somm-title { font-size: 12px; color: #666; font-style: italic; transition: color 0.3s ease; }
.somm-card:hover { background: var(--accent-color); border-color: var(--accent-color) !important; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.somm-card:hover .somm-name, .somm-card:hover .somm-title { color: #fff; }
.somm-card:hover .somm-icon { background-color: rgba(255,255,255,0.2); filter: brightness(0) invert(1); }
.asi-container { max-width: 1200px; margin: 0 auto; padding: 0px; color: #333; }
.asi-featured { display: flex; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); margin-bottom: 50px; text-decoration: none; transition: all 0.3s ease; border: 1px solid #eee; }
.asi-featured:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: var(--accent-color); }
.asi-featured-img { flex: 1; min-height: 350px; position: relative; overflow: hidden; }
.asi-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.asi-featured:hover .asi-featured-img img { transform: scale(1.05); }
.asi-featured-content { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%); }
.asi-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--accent-color); text-transform: uppercase; margin-bottom: 15px; }
.asi-featured-title { font-size: 32px; font-weight: 800; margin: 0 0 20px 0; color: #1a1a1a; line-height: 1.2; }
.asi-btn { align-self: flex-start; padding: 12px 25px; background: #1a1a1a; color: #fff; text-transform: uppercase; font-size: 13px; font-weight: bold; border-radius: 30px; transition: background 0.3s ease; display: flex; align-items: center; gap: 10px; }
.asi-btn::before { content: ''; display: block; width: 20px; height: 20px; background: url("/grafika/pdf.svg") no-repeat center/contain; filter: brightness(0) invert(1); }
.asi-featured:hover .asi-btn { background: var(--accent-color); }
.asi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; }
.asi-item { background: #fff; border-radius: 8px; overflow: hidden; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; border: 1px solid #eee; display: flex; flex-direction: column; }
.asi-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: var(--accent-color); }
.asi-item-img { height: 390px; overflow: hidden; position: relative; background: #f0f0f0; }
.asi-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.asi-item:hover .asi-item-img img { transform: scale(1.05); }
.asi-item-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.asi-item-title { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 10px; }
.asi-download { font-size: 13px; color: #555; display: flex; align-items: center; gap: 8px; font-weight: 600; margin-top: auto; }
.asi-download::before { content: ''; display: block; width: 18px; height: 18px; background: url("/grafika/pdf.svg") no-repeat center/contain; }
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 30px; align-items: center; justify-items: center; }
.logo-item { display: flex; justify-content: center; align-items: center; width: 100%; height: 200px; background: #fff; border: 1px solid #eee; border-radius: 8px; transition: all 0.3s ease; padding: 20px; box-sizing: border-box; }
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s ease; }
.logo-item:hover { border-color: var(--accent-color); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); background: #fff; }
.logo-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; padding: 20px 0; }
.news-card { background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); border-color: var(--accent-color); }
.news-card a { text-decoration: none; color: inherit; display: block; height: 100%; }
.news-img { width: 100%; height: 220px; overflow: hidden; background: #f8f8f8; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-img img { transform: scale(1.08); }
.news-img-placeholder { display: flex; align-items: center; justify-content: center; color: #ddd; font-weight: 800; font-size: 24px; letter-spacing: 2px; }
.news-body { padding: 25px; display: flex; flex-direction: column; gap: 12px; }
.news-date { font-size: 12px; color: #999; font-weight: 600; text-transform: uppercase; }
.news-title { font-size: 20px; line-height: 1.3; font-weight: 700; color: #111; margin: 0; }
.news-desc { font-size: 14px; color: #666; line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-more { font-size: 13px; font-weight: 700; color: var(--accent-color); text-transform: uppercase; margin-top: 10px; display: inline-flex; align-items: center; gap: 5px; }
.news-more::after { content: '›'; transition: transform 0.2s ease; }
.news-card:hover .news-more::after { transform: translateX(4px); }
.text ul { list-style-position: outside; padding-left: 25px; margin: 20px 0; }
.text ul li { margin-bottom: 12px; line-height: 1.6; font-size: 15px; }
.text ul li::marker { color: var(--gold-color, #f6a500); font-size: 1.1em; }
.text ul li strong { color: var(--gold-color, #f6a500); font-weight: 600; margin-right: 4px; }
.btn_kr { display: inline-block; padding: 14px 28px; background: transparent; border: 2px solid var(--gold-color, #f6a500); color: var(--gold-color, #f6a500) !important; text-transform: uppercase; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-decoration: none; border-radius: 4px; position: relative; overflow: hidden; transition: all 0.4s ease; cursor: pointer; margin-top: 20px; z-index: 1; }
.btn_kr::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: var(--gold-color, #f6a500); transition: all 0.4s ease; z-index: -1; }
.btn_kr:hover::before { width: 100%; }
.btn_kr:hover { color: #100f0d !important; box-shadow: 0 0 20px rgba(232, 195, 135, 0.4); transform: translateY(-3px); }
.pro-article { max-width: 1000px; margin: 0px auto; padding: 0 20px; font-family: "Cabin", sans-serif; }
.pro-header-wrapper { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.pro-back-btn { color: #888; text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.pro-back-btn:hover { color: var(--gold-color, #f6a500); }
.pro-date { color: var(--gold-color, #f6a500); font-size: 14px; font-weight: bold; letter-spacing: 1px; }
.pro-main-title { font-size: 46px; line-height: 1.2; color: #fff; margin-bottom: 40px; font-weight: 700; text-align: center; }
.pro-hero-image { width: 100%; max-height: 550px; overflow: hidden; border-radius: 12px; margin-bottom: 50px; }
.pro-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pro-article-content { max-width: 760px; margin: 0 auto; }
.pro-text-body { font-size: 17px; line-height: 1.8; color: #777; }
.pro-text-body p { margin-bottom: 30px; text-align: justify; }
.pro-text-body h2 { font-size: 28px; color: #fff; margin: 50px 0 20px; font-weight: 700; line-height: 1.3; }
.pro-text-body h3 { font-size: 22px; color: var(--gold-color, #f6a500); margin: 40px 0 15px; font-weight: 700; }
.pro-inline-photo { display: block; margin: 50px 0; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.5); transition: transform 0.4s ease; cursor: zoom-in; }
.pro-inline-photo:hover { transform: scale(1.02); }
.pro-inline-photo img { width: 100%; height: auto; display: block; }
.pro-gallery-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
.pro-gallery-container a { display: block; border-radius: 8px; overflow: hidden; }
.pro-gallery-container a img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pro-gallery-container a:hover img { transform: scale(1.1); }
@media (max-width: 1024px) { .hero-title { font-size: 40px; max-width: 100%; } }
@media (max-width: 1000px) { .three-boxes { flex-direction: column; align-items: center; gap: 40px; } .box { max-width: 90%; } }
@media (max-width: 900px) { .about-container { flex-direction: column; text-align: center; } .about-content { align-items: center; text-align: center; } .about-image, .about-content { width: 100%; transform: none !important; opacity: 1 !important; } .about-image img { height: auto; } .footer-top { flex-direction: column; align-items: center; text-align: center; } .footer-map-wide iframe { width: 100%; height: 280px; } .footer-info { align-items: center; padding: 60px 20px; } .footer-affiliate { margin-top: 30px; } .footer-info::before { display: none; } .footer-bg-video { filter: blur(5px) grayscale(70%); opacity: 0.2; } }
@media (max-width: 868px) { .main-nav { justify-content: flex-end; padding-right: 15px; } .hamburger { display: flex; } .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--gold-color); gap: 0; box-shadow: 0 10px 15px rgba(0,0,0,0.3); } .main-nav ul.active { display: flex; } .main-nav ul li { width: 100%; } .main-nav ul li a { justify-content: flex-start; padding: 15px 20px; border-bottom: 1px solid rgba(0,0,0,0.1); width: 100%; box-sizing: border-box; } .main-nav ul li.has-dropdown > a { justify-content: space-between; } .main-nav ul li menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; border-top: none; background: rgba(0,0,0,0.05); display: none !important; min-width: 100%; height: auto; } .main-nav ul li.active-dropdown menu { display: flex !important; flex-direction: column; height: auto; } .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger.active span:nth-child(2) { opacity: 0; } .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .main-nav ul li.has-dropdown > menu { display: none !important; transition: none !important; opacity: 1 !important; visibility: visible !important; transform: none !important; position: static !important; width: 100% !important; background: rgba(0,0,0,0.05) !important; box-shadow: none !important; border: none !important; padding: 0 !important; margin: 0 !important; } .main-nav ul li.has-dropdown.menu-opened-mobile > menu { display: flex !important; flex-direction: column !important; } .main-nav ul li.has-dropdown > a { display: flex !important; justify-content: space-between !important; align-items: center !important; } .main-nav ul li.has-dropdown > a::after { content: '\25BE'; font-size: 16px; transition: transform 0.3s ease; } .main-nav ul li.has-dropdown.menu-opened-mobile > a::after { transform: rotate(180deg); } .main-nav ul li.has-dropdown.menu-opened-mobile > menu > a { padding-left: 40px !important; font-size: 12px !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; background: transparent !important; } .main-nav ul li.has-dropdown.menu-opened-mobile > menu > a:hover { background: rgba(0,0,0,0.08) !important; color: var(--accent-color) !important; } :root { --header-height: 80px; } .main-header { padding: 10px 0 !important; } .main-header .container { display: flex !important; flex-direction: row !important; justify-content: space-between !important; align-items: center !important; width: 100% !important; padding: 0 20px !important; } .main-header .logo-container { margin: 0 !important; transform: none !important; } .main-header .logo { height: 55px !important; margin: 0 !important; } .main-header .socials, .main-header .separator, .main-header .flags { display: none !important; } .main-header .right-side { position: static !important; transform: none !important; margin: 0 !important; } .main-header .right-side .join-btn { width: 42px !important; height: 42px !important; padding: 0 !important; border-radius: 50% !important; font-size: 0 !important; color: transparent !important; overflow: hidden !important; background-color: var(--accent-color, #d41317) !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23ffffff'%3E%3Cpath d='M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z'/%3E%3C/svg%3E") !important; background-size: 20px !important; background-position: center center !important; background-repeat: no-repeat !important; display: block !important; border: none !important; box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important; } .main-header .right-side .join-btn.logged-in { background-color: #4CAF50 !important; } .main-header .right-side .logout-link { display: none !important; } }
@media (max-width: 768px) { .ssp-requirements { padding: 25px 15px; } .ssp-req-list { grid-template-columns: 1fr; } .hero { height: 75vh; min-height: 500px; } .hero-content { align-items: center; text-align: center; padding: 0 20px; } .hero-title { font-size: 34px; margin-bottom: 25px; } .hero-badge { margin-bottom: 20px; } .partner { min-width: 180px; } .partner img { max-width: 100px; } .asi-featured { flex-direction: column; } .asi-featured-img { min-height: 250px; } .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 15px; } .logo-item { height: 100px; padding: 15px; } .pro-article { margin: 30px auto; } .pro-main-title { font-size: 32px; margin-bottom: 25px; } .pro-hero-image { max-height: 300px; margin-bottom: 30px; border-radius: 8px; } .pro-text-body { font-size: 15px; } .pro-text-body h2 { font-size: 24px; } .pro-inline-photo { margin: 30px 0; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

.u2_foto { float: left; margin: 0 30px 20px 0; max-width: 400px; }
.u2_foto img { width: 100%; border-radius: 12px; transition: transform 0.4s ease; display: block; }
.u2_foto img:hover { transform: scale(1.03); }
@media (max-width: 768px) { .u2_foto { float: none; margin: 0 auto 20px auto; width: 100%; } }
