* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    position: relative;
}

body::before {
    content: "";
    position: fixed;   /* ← KLUCZOWE */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("dramera-background-v3.png");
    background-repeat: repeat;
    background-size: auto;

    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;

    z-index: -1;       /* POD treścią */
}

.page-wrapper {
    padding-left: 50px;
    padding-right: 50px;
}



.top-banner {
    width: 100%;
    height: 250px; /* wysokość bannera */
	display:flex;
	justify-content: center;
}

/* MENU */


/* GŁÓWNY UKŁAD */
.main-container {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* BOCZNE SEKCJE */
.sidebar {
    width: 350px;
    height: 500px;
    background-size: cover;
    background-position: center;
}

/* LEWA */
.sidebar.left {
    position: relative;
    width: 220px;
    height: 500px;
    border: solid 1px #094654;
    overflow: hidden;
	flex-shrink: 0; /* nie kurczy się */
}

.sidebar.left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("navbar-background8.png") center / cover no-repeat;
    opacity: 0.8;
    filter: blur(5px);
    z-index: 0;
}

.sidebar.left > * {
    position: relative;
    z-index: 1;
}


/* PRAWA */
.sidebar.right {
    position: relative;
    width: 220px;
    height: 600px;
    overflow: hidden;
	flex-shrink: 0; /* nie kurczy się */
}

.second-section {
	position: relative;
    width: 220px;
    height: 300px;
    border: solid 1px #094654;
    overflow: hidden;
	flex-shrink: 0; /* nie kurczy się */
}

.sidebar.right::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.8;
    filter: blur(5px);
    z-index: 0;
}

.second-section::before {
	content: "";
    position: absolute;
    inset: 0;
    background: url("navbar-background8.png") center / cover no-repeat;
    opacity: 0.8;
    filter: blur(5px);
    z-index: 0;
}
.sidebar.right > * {
    position: relative;
    z-index: 1;
}

.second-section > * {
    position: relative;
    z-index: 1;
}


.content {
    position: relative;       /* konieczne dla pseudo-elementu */
    flex: 1;
    margin: 0 10px;
	padding: 10px;
	min-width: 500px;
    min-height: 500px;
    border: solid 1px #094654;
    overflow: hidden;          /* zabezpieczenie */
	color: white;
}

.content::before {
    content: "";
    position: absolute;
    inset: 0;                  /* top:0; left:0; right:0; bottom:0; */
    background: url("navbar-background8.png") center / cover no-repeat;
    opacity: 0.8;              /* <--- tu regulujesz przezroczystość */
    z-index: 0;                /* poniżej treści */
}

/* tekst i elementy w content */
.content > * {
    position: relative;
    z-index: 1;
}



/* FOOTER */
.footer {
    position: relative;
    padding: 15px 20px;
    border: solid 1px #094654;
    background: #0a2a35; /* ciemne tło */
    color: #ffffff;
    text-align: center;    /* wyśrodkowanie treści */
    overflow: hidden;
	min-width:1220px;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("navbar-background8.png") center / cover no-repeat;
    opacity: 0.8;
    filter: blur(5px);
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1; /* wszystko nad pseudo-elementem */
}

.footer-links {
    display: flex;
    flex-wrap: wrap;        /* jeśli okno jest węższe, linki przechodzą do nowego wiersza */
    justify-content: center; /* wyśrodkowanie poziome linków */
    gap: 15px;               /* odstęp między linkami */
    margin-bottom: 5px;
}

.footer-links a {
    color: #ffffff;          /* biały kolor */
    text-decoration: none;   /* usuwa podkreślenie */
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0bb8f5;          /* efekt hover */
}

.footer-copyright {
    font-size: 12px;
    color: #ffffff;          /* biały tekst */
}



.menu {
    position: relative;
    height: 60px;
    border: solid 1px #094654;
    display: flex;
    justify-content: center;
    align-items: center;
	min-width:1220px;
    overflow: visible;
    z-index: 1000;
}


.menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("navbar-background8.png") center / cover no-repeat;
    opacity: 0.8;
    filter: blur(1px);
    z-index: 0;
}

.menu > * {
    position: relative;
    z-index: 1;
}


.menu nav {
    height: 100%;
}

.menu-list {
    list-style: none;
    display: flex;
    align-items: center;      /* wyśrodkowanie w pionie */
    height: 100%;
    margin: 0;
    padding: 0 20px;
}

.menu-list li {
    margin-right: 30px;
}

.menu-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 400; /* normal */
}


.menu-list a:hover,
.submenu a:hover {
    color: #0bb8f5;          /* Twój kolor hover */
    text-decoration: none;    /* usuwa podkreślenie */
    transform: translateY(-2px); /* przesuwa w górę o 2px */
    transition: transform 0.2s ease, color 0.2s ease; /* płynne przejście */
}



.menu-list a,
.submenu a {
    display: flex;
    align-items: center;   /* 🔥 KLUCZ */
    gap: 6px;              /* odstęp ikona–tekst */
	color: #C4CFDE;
	font-weight: 500;
}

/* ===== DROPDOWN MENU ===== */

.menu-list li {
    position: relative; /* wymagane dla submenu */
}

.has-submenu > a::after {
    content: " ▼";
    font-size: 10px;
}

/* SUBMENU */
.submenu {
    position: absolute;
    top: 100%;
    left: 15px;
	list-style: none;
    min-width: 180px;
    padding: 5px 0;

    background-image: url("navbar-background8.png");
    background-size: cover;
    background-position: center;

    display: none;
    z-index: 10000;
}


.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 8px 12px;
    font-weight: normal;
    color: #fff;
}

.submenu a:hover {
    background: #0946a4;
	color: white !important;
    text-decoration: none;
}

/* aktywne po kliknięciu */
.submenu.open {
    display: block;
}

.sidebar.left h4, .sidebar.right h2, .content h2 {
    color: #C4CFDE;
    text-align: center;
    font-weight: normal;

    display: flex;
    align-items: center;    /* wyrównanie ikony i tekstu w pionie */
    justify-content: center; /* wyśrodkowanie całego wiersza */
    gap: 5px;               /* odstęp między ikoną a tekstem */
    margin-top: 15px;
}

.sidebar.right .right-buttons {
    display: flex;
    flex-direction: column;  /* przyciski pionowo */
    align-items: center;
    margin-top: 0px;
    gap: 10px;
}

/* wspólne style dla wszystkich przycisków */


/* indywidualne tła */
.sidebar.right .btn1 {
    background: url("icons/download-btn-v2.png") center / cover no-repeat;
}

.sidebar.right .btn2 {
    background: url("icons/join-us-dc-btn-v2.png") center / cover no-repeat;
}

/* efekt hover */
.sidebar.right .sidebar-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

table,
td,
tr,
.BoxContent {
    background-color: transparent !important;
}

/* Wszystkie linki w div.content */
.content a {
    color: #ffffff;          /* biały kolor */
    text-decoration: none;   /* usuwa podkreślenie */
    font-size: 14px;
    transition: color 0.2s;
}

.content a:hover {
    color: #0bb8f5;          /* efekt hover */
}


