	#logo
	{
		bacground-color: black;

}
/* PREMIUM TYPOGRAFIA NAGŁÓWKA */

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
    color: #2e2e2e;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 10px;
    color: #7f7a73;
}
	
/* MENU GŁÓWNE */

.main-nav {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
	
}

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

/* LINKI */
.nav-list li {
    position: relative;
}

.nav-list li a {
    text-decoration: none;
    font-size: 1.05em;
    letter-spacing: 1px;
    color: #222;
    font-weight: 500;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

/* PODKREŚLENIE HOVER */

.nav-list li a::after {
    content: "";
    position: absolute;
    left: 0;
	 bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #222;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* DROPDOWN */

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	 border-radius: 10px;
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* ELEMENTY DROPDOWN */

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 0.95em;
    color: #222;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

/* POKAŻ MENU PO HOVER */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MOBILE */

@media (max-width: 700px) {
    .nav-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
    }

    .dropdown-menu li a {
        padding: 8px 12px;
    }
}
		
	h1{
		font-family: Verdana;
		font-size: 40px;
		text-align: center;
	}	
	
	h2{
		font-family: Verdana;
		font-size: 30px;
		text-align: center;
	}
	/* ===== FIX UKŁADU O MNIE ===== */

.about-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Lewa kolumna – zdjęcie */
.about-photo {
    width: 45% !important;
    max-width: 45% !important;
}
/* Prawa kolumna – tekst */
.about-text {
    width: 55% !important;
    max-width: 55% !important;
    text-align: left !important;
}

/* Mobile */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column !important;
    }

    .about-photo,
    .about-text {
        width: 100% !important;
        max-width: 100% !important;
		text-align: center !important;
    }
}