/*DESKTOP*/
@media (min-width: 701px) {
  .navbar {
    padding: 30px 0;
  }

    body {
        background-image: url(pozadie.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        margin: 0;
        padding: 0;
        font-family: serif;
        box-sizing: border-box;
    }

    * {
        margin: 0;
        padding: 0;
        font-family: serif;
        background-repeat: no-repeat;
        box-sizing: border-box;
    }

    .background {
        width: 100%;
        height: 100vh;
        background-image: url(pozadie.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }

    .overlay {
    position: relative !important;
    inset: unset !important;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0,0,0,.3);
    }


    .banner {
    min-height: 70vh;
    display: grid;
    align-content: center;
    justify-items: center;
    padding-bottom: var(--space);
    }

    h3 {
        text-align: center;
    }

    h2 {
        color: #000000ee;
    }

    h4 {
        text-align: center;
        color: #8B4513;
        font-size: 19px;
    }

    .navbar {
        width: 100%;
        margin: auto;
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        background-color: #442a16;
        border: solid 2px #442a16;
        border-bottom: 2px solid #ffffff;
        flex-wrap: wrap;
        gap: 12px var(--space);
    }

    .navbar ul {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 20px);
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    }

    .navbar ul li {
        list-style: none;
        display: inline-block;
        margin: 0 20px;
        position: relative;
        z-index: 1000;
    }

    .navbar ul li a {
        text-decoration: none;
        color: #f2dab2;
        text-transform: uppercase;
        font-size: 20px;
        z-index: 1000;
        font-family: Arial, Helvetica, sans-serif;
    }

    .navbar ul li a:hover {
        color: #ffffff;
        cursor: pointer;
    }

    .navbar ul li::after {
        content: "";
        height: 2px;
        width: 0;
        background: #f2dab2;
        position: absolute;
        left: 0;
        bottom: -2px;
        transition: 0.5s;
    }

    .navbar ul li:hover::after {
        width: 100%;
    }

    .logo {
    width: clamp(120px, 22vw, 220px);
    height: auto;
    }

    .myphoto {
        max-width: 20%;
        height: auto;
        margin-top: 400px;
    }

    .content {
    width: 100%;
    position: static;
    transform: none;
    text-align: center;
    color: #000000;
    display: grid;
    gap: clamp(16px, 3vw, 28px);
    justify-items: center;
    padding: var(--space);
    }


    .content h1 {
    width: var(--wrap);
    margin: var(--space) auto;
    font-size: clamp(28px, 6vw, 60px);
    padding: var(--space);
    border-radius: 20px;
    border: 2px solid #fff;
    background-color: #442a16;
    color: #f2dab2;
    text-transform: uppercase;
    font-weight: 400;
    font-family: serif;
    }


    .content h2 {
        color: #f2dab2;
    }

    .content p {
    width: var(--wrap);
    margin: var(--space) auto;
    line-height: 1.6;
    font-size: clamp(16px, 2.2vw, 20px);
    color: #f2dab2;
    font-family: 'Lora', serif;
    background-color: #442a16;
    padding: var(--space);
    border-radius: 20px;
    border: 2px solid #ffffff;
    }


    .phone-number {
        color: #f2dab2;
        text-decoration: underline;
        font-weight: bold;
    }

    button {
        width: 200px;
        padding: 15px 0;
        text-align: center;
        margin: 20px 10px;
        border-radius: 25px;
        font-weight: bold;
        border: solid 2px #ffffff;
        background: transparent;
        color: #ffffff;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        font-size: 15px;
    }

    button span {
        background: #653e21;
        height: 100%;
        width: 0;
        border-radius: 25px;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
        transition: 0.75s;
    }

    button:hover span {
        width: 100%;
    }

    button:hover {
        border: solid 2px transparent;
    }

    .btn {
        display: inline-block;
        width: 50px;
        height: 50px;
        background: #f1f1f1;
        margin: 10px;
        border-radius: 30%;
        box-shadow: 0 5px 15px -5px #00000070;
        color: #FFC0CB;
        overflow: hidden;
        position: relative;
    }

    .btn i {
        line-height: 70px;
        font-size: 26px;
        transition: 0.2s linear;
        position: relative;
        z-index: 1;
    }

    .btn i.fab {
        font-size: 26px !important;
    }

    .footer a i.fas {
        font-size: 26px !important;
    }

    .btn:hover i {
        transform: scale(1.3);
        color: #f1f1f1;
    }

    .btn::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #A0522D;
        transform: rotate(45deg);
        left: -110%;
        top: 90%;
    }

    .btn:hover::before {
        animation: aaa 0.7s 1;
        top: -10%;
        left: -10%;
    }

    .facebook:hover::before {
        background: #3B5998;
    }

    .instagram:hover::before {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    @keyframes aaa {
        0% {
            left: -110%;
            top: 90%;
        }
        50% {
            left: 10%;
            top: -30%;
        }
        100% {
            top: -10%;
            left: -10%;
        }
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
        max-width: 1500px;
        margin: 0 auto;
        margin-top: 5%;
        overflow: hidden;
    }

    .gallery img {
        width: 100%;
        height: 200px;
        padding: 10px;
        background: #ffffff00;
        object-fit: contain;
        position: relative;
    }

    .gallery img:hover {
        z-index: 9;
        transform: scale(1.3);
        transition: ease 0.5s;
    }

    .gallery img.full {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100vw;
        height: 100vh;
        object-fit: fit;
        background: rgba(0, 0, 0, 0.7);
    }

    .gallery img.full:hover {
        z-index: 999;
        transform: none;
    }

    @media only screen and (max-width: 750px) {
        .gallery {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media only screen and (max-width: 700px) {
        .navbar ul li a {
            font-size: 15px;
        }
        .myphoto {
            max-width: 30%;
            margin-top: 500px;
        }
        .content h1 {
            margin-top: 100px;
            font-size: 6vw;
            font-weight: bold;
            background-color: #442a16;
        }
        .content p {
            margin-left: 50px;
            margin-right: 50px;
        }
    }

    .footer {
        width: 100%;
        margin-top: 50px;
        padding: 15px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        background-color: #442a16;
        border-top: 2px solid #ffffff;
        overflow-x: hidden;
    }

    .footer a {
        color: #f2dab2;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: color 0.3s;
        padding-left: 10px;
        justify-content: center;
    }

    .footer a:hover {
        color: #ffffff;
    }

    .footer i {
        font-size: 24px;
        margin-right: 10px;
    }

    .footer p {
        margin: 0;
        font-size: 16px;
        font-family: Arial, sans-serif;
    }

    .main-footer {
        width: 100%;
        margin-top: 50px;
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #442a16;
        border-top: 2px solid #ffffff;
    }

    .main-footer a {
        color: #f2dab2;
        text-decoration: none;
        font-size: 24px;
    }

    .main-footer a:hover {
        color: #ffffff;
        cursor: pointer;
    }

    .social-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -10px;
        margin-bottom: 5px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding-right: 20px;
    }

    .contact-info span {
        color: #f2dab2;
        font-size: 16px;
        margin-bottom: 5px;
        background-color: transparent;
    }

    .contact-info a {
        color: #f2dab2;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
    }

    .contact-info a:hover {
        color: #ffffff;
    }

    .footer-logo {
        margin-top: 0x;
        width: 100px;
        height: auto;
        display: block;
        float: right;
        margin-right: -20px;
    }

    .location-link {
        padding-left: -10px; 
        margin-left: -45px;  
    }


    :root { --space: clamp(12px, 2.5vw, 24px); --wrap: min(1100px, 100% - 2*var(--space)); }
    * { box-sizing: border-box; }
    .container { width: var(--wrap); margin-inline: auto; }
    img, video { max-width: 100%; height: auto; display: block; }

    @media (max-width: 700px) {

    .navbar { justify-content: center; }
    .navbar ul li { margin: 0; }
    .navbar ul li a { font-size: 16px; padding: 8px 10px; }


    .myphoto { max-width: 30%; margin-top: var(--space) !important; }


    .content h1 { margin-top: var(--space); font-size: 6vw; }
    .content p  { margin-left: auto !important; margin-right: auto !important; }
    }

}

/*MOBIL*/
@media (max-width: 700px) {
  .navbar {
    padding: 30px 0;
  }

    body {
    background-image: url(pozadie.jpg);
    background-size: cover !important;        
    background-position: 87% center !important; 
     background-position-y: -24px !important;
    background-attachment: fixed;
    background-repeat: no-repeat !important;
    margin: 0;
    padding: 0;
    font-family: serif;
    box-sizing: border-box;
    }

    * {
        margin: 0;
        padding: 0;
        /*font-family: serif;*/
        background-repeat: no-repeat;
        box-sizing: border-box;
    }

    .background {
    width: 100%;
    height: 100vh;
    background-image: url(pozadie.jpg);
    background-size: 115%;       
    background-position: center; 
    background-attachment: scroll; 
    background-repeat: no-repeat;
    }

    .overlay {
    position: relative !important;
    inset: unset !important;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0,0,0,.3);
    }


    .banner {
    min-height: 70vh;
    display: grid;
    align-content: center;
    justify-items: center;
    padding-bottom: var(--space);
    }

    h3 {
        text-align: center;
    }

    h2 {
        color: #000000ee;
    }

    h4 {
        text-align: center;
        color: #8B4513;
        font-size: 19px;
    }

    .navbar {
        width: 100%;
        margin: auto;
        padding: 30px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: clamp(100px, 18vh, 140px);
        background-color: #442a16;
        border: solid 2px #442a16;
        border-bottom: 2px solid #ffffff;
        flex-wrap: wrap;
        gap: 12px var(--space);
    }

    .navbar ul {
    display: flex;
    flex-wrap: nowrap;       
    justify-content: center;
    align-items: center;
    gap: 6px;              
    white-space: nowrap;        
    margin: 0;
    padding: 0;
    list-style: none;
    }

    .navbar ul li {
        list-style: none;
        display: inline-block;
        flex-wrap: nowrap;
        margin: 0 20px;
        position: relative;
        z-index: 1000;
    }

    .navbar ul li a {
    text-decoration: none;
    color: #f2dab2;
    text-transform: uppercase;
    font-size: 13px !important;  
    /*font-family: Arial, Helvetica, sans-serif;*/
    position: relative;
    top: 19px;                  
    letter-spacing: 0.5px;    
    }

    .navbar ul li a:hover {
        color: #ffffff;
        cursor: pointer;
    }

    .navbar ul li::after {
        content: "";
        height: 0.1px;
        width: 0;
        background: #f2dab2;
        position: absolute;
        left: 0;
        bottom: -20px;
        transition: 0.5s;
    }

    .navbar ul li:hover::after {
        width: 90%;
    }

    .logo {
    width: clamp(120px, 22vw, 220px);
    height: auto;
    }

    .myphoto {
        max-width: 20%;
        height: auto;
        margin-top: 400px;
    }

    .content {
    width: 100%;
    position: static;
    transform: none;
    text-align: center;
    color: #000000;
    display: grid;
    gap: clamp(16px, 3vw, 28px);
    justify-items: center;
    padding: var(--space);
    }


    .content h1 {
    width: var(--wrap);
    margin: var(--space) auto;
    font-size: clamp(28px, 6vw, 60px);
    padding: var(--space);
    border-radius: 20px;
    border: 2px solid #fff;
    background-color: #442a16;
    color: #f2dab2;
    text-transform: uppercase;
    font-weight: 400;
    /*font-family: serif;*/
    }


    .content h2 {
        color: #f2dab2;
    }

    .content p {
    width: var(--wrap);
    margin: var(--space) auto;
    line-height: 1.6;
    font-size: clamp(16px, 2.2vw, 20px);
    color: #f2dab2;
    font-family: 'Lora', serif;
    background-color: #442a16;
    padding: var(--space);
    border-radius: 20px;
    border: 2px solid #ffffff;
    }


    .phone-number {
        color: #f2dab2;
        text-decoration: underline;
        font-weight: bold;
    }

    button {
        width: 200px;
        padding: 15px 0;
        text-align: center;
        margin: 20px 10px;
        border-radius: 25px;
        font-weight: bold;
        border: solid 2px #ffffff;
        background: transparent;
        color: #ffffff;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        font-size: 15px;
    }

    button span {
        background: #653e21;
        height: 100%;
        width: 0;
        border-radius: 25px;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
        transition: 0.75s;
    }

    button:hover span {
        width: 100%;
    }

    button:hover {
        border: solid 2px transparent;
    }

    .btn {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: #f1f1f1;
        margin: 10px;
        border-radius: 30%;
        box-shadow: 0 5px 15px -5px #00000070;
        color: #FFC0CB;
        overflow: hidden;
        position: relative;
    }

    .btn i {
        line-height: 70px;
        font-size: 26px;
        transition: 0.2s linear;
        position: relative;
        z-index: 1;
    }

    .btn i.fab {
        font-size: 26px !important;
    }

    .footer a i.fas {
        font-size: 26px !important;
    }

    .btn:hover i {
        transform: scale(1.3);
        color: #f1f1f1;
    }

    .btn::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #A0522D;
        transform: rotate(45deg);
        left: -110%;
        top: 90%;
    }

    .btn:hover::before {
        animation: aaa 0.7s 1;
        top: -10%;
        left: -10%;
    }

    .facebook:hover::before {
        background: #3B5998;
    }

    .instagram:hover::before {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    @keyframes aaa {
        0% {
            left: -110%;
            top: 90%;
        }
        50% {
            left: 10%;
            top: -30%;
        }
        100% {
            top: -10%;
            left: -10%;
        }
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
        max-width: 1500px;
        margin: 0 auto;
        margin-top: 5%;
        overflow: hidden;
    }

    .gallery img {
        width: 100%;
        height: 200px;
        padding: 10px;
        background: #ffffff00;
        object-fit: contain;
        position: relative;
    }

    .gallery img:hover {
        z-index: 9;
        transform: scale(1.3);
        transition: ease 0.5s;
    }

    .gallery img.full {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100vw;
        height: 100vh;
        object-fit: fit;
        background: rgba(0, 0, 0, 0.7);
    }

    .gallery img.full:hover {
        z-index: 999;
        transform: none;
    }

    @media only screen and (max-width: 750px) {
        .gallery {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media only screen and (max-width: 700px) {
        .navbar ul li a {
            font-size: 15px;
        }
        .myphoto {
            max-width: 30%;
            margin-top: 500px;
        }
        .content h1 {
            margin-top: 100px;
            font-size: 6vw;
            font-weight: bold;
            background-color: #442a16;
        }
        .content p {
            margin-left: 50px;
            margin-right: 50px;
        }
    }

        .footer {
    width: 100%;
    margin-top: 40px;         
    padding: 10px 12px;         
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #442a16;
    border-top: 2px solid #ffffff;
    }

    .footer a {
      color: #f2dab2;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.3s;
      padding-left: 6px;
      justify-content: center;
      font-size: 13px !important;
    }

    .footer a:hover {
        color: #ffffff;
    }

    .footer i {
        font-size: 18px;
        margin-right: 6px;
    }

    .footer p {
        margin: 0;
        font-size: 13px;
        /*font-family: Arial, sans-serif;*/
    }

    .main-footer {
        width: 100%;
        margin-top: 50px;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #442a16;
        border-top: 2px solid #ffffff;
    }

    .main-footer a {
        color: #f2dab2;
        text-decoration: none;
        font-size: 18px;
    }

    .main-footer a:hover {
        color: #ffffff;
        cursor: pointer;
    }

    .social-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -10px;
        margin-bottom: 5px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding-right: 20px;
    }

    .contact-info span {
        color: #f2dab2;
        font-size: 16px;
        margin-bottom: 5px;
        background-color: transparent;
    }

    .contact-info a {
        color: #f2dab2;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
    }

    .contact-info a:hover {
        color: #ffffff;
    }

    .footer-logo {
        margin-top: 0x;
        width: 82px;
        height: auto;
        display: block;
        float: right;
        margin-right: -7px;
    }

    .location-link {
        padding-left: -10px; 
        margin-left: -35px;  
    }


    :root { --space: clamp(12px, 2.5vw, 24px); --wrap: min(1100px, 100% - 2*var(--space)); }
    * { box-sizing: border-box; }
    .container { width: var(--wrap); margin-inline: auto; }
    img, video { max-width: 100%; height: auto; display: block; }

    @media (max-width: 700px) {

    .navbar { justify-content: center; }
    .navbar ul li { margin: 0; }
    .navbar ul li a { font-size: 16px; padding: 8px 10px; }


    .myphoto { max-width: 30%; margin-top: var(--space) !important; }


    .content h1 { margin-top: var(--space); font-size: 6vw; }
    .content p  { margin-left: auto !important; margin-right: auto !important; }
    }
    


}

