@font-face {
    font-family: Lora;
    src: url(Lora.ttf);
}

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

body {
    font-family:"Lora";
    background-color: #f5f0e8;
    color: #1a1a1a;
}

header{
   background-color: #e09641; 
   text-align: center;
   padding: 25px;
}
/* GŁÓWNY UKŁAD */
.layout {
    display: flex;
    min-height: 100vh;
}

h2 {
    font-size: 1.5em;
}

/* LEWA KOLUMNA */
.lewa {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 20px;
    border-right: 1px solid #ccc;
}

#search{
    display: block;
    margin: 0 auto;
}
#hello {
    text-align: center;
    width: 100%;
}
.photo img{
    width: 150px;
    margin-left: 5px;
}
nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    text-align: center;
}

nav a:hover {
    text-decoration: underline;
}



/* ŚRODEK */
.srodek {
    flex: 1;
    padding: 30px 40px;
    width: 650px;
}

#mail{
    text-decoration: none;
    text-align: center;
    color: #1a1a1a;
}

#mail:hover{
    text-decoration: underline;
}
li {
    margin-left: 20px;
    margin-top: 5px;
}
.srodek h3 {
    margin-bottom: 30px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}

article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

article h4 {
    font-size: 1.2em;
    margin-bottom: 8px;
}

article h4 a {
    text-decoration: none;
    color: #1a1a1a;
}

article h4 a:hover {
    text-decoration: underline;
}

article p {
    color: #555;
    line-height: 1.6;
}

/* PRAWA KOLUMNA */
.prawa {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 20px;
    border-left: 1px solid #ccc;
}

.cytat {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}