/*DESKTOP*/
@media (min-width: 701px) {
  .navbar {
    padding: 30px 0;
  }

    body {
        background-color: lab(59.41% 1.48 2.91);
        position: relative;
    }
    * {
        margin: 0;
        padding: 0;
        font-family: serif;
        background-repeat: no-repeat;
        background-size: cover;
        box-sizing: border-box;
    }
    html, body {
        height: 100%;
        min-height: 100%;
        overflow-x: hidden;
    }

    h3 {
        text-align: center;
    }
    h4 {
        text-align: center;
        color: #8B4513;
        font-size: 19px;
    }
    .navbar {
        width: 100%;
        margin: auto;
        padding: 11px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        background-color: #442a16;
        border-bottom: 2px solid #ffffff;
    }

    .navbar ul li {
        list-style: none;
        display: inline-block;
        margin: 0 25px;
        position: relative;
        margin-top: 25px;
    }

    .navbar ul li a {
        text-decoration: none;
        color: #f2dab2;
        text-transform: uppercase;
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
        position: relative;
        top: -10px;
    }

    @media only screen and (max-width: 700px) {
        .navbar ul li a {
            font-size: 15px;
        }
    }

    .navbar ul li a:hover {
        color: #ffffff;
        cursor: pointer;
    }

    .navbar ul li ::after {
        content: "";
        height: 2px;
        width: 0;
        background: #FFC0CB;
        position: absolute;
        left: 0;
        bottom: -2px;
        transition: 0.5s;
    }

    .navbar ul li:hover ::after {
        width: 100%;
    }

    .logo {
        width: 40%;
    }

    .content {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        color: #000000;
    }
    .content h1 {
        margin-top: 80px;
        font-size: 60px;
    }
    .content p {
        margin: 20px auto;
        margin-left: 80px;
        margin-right: 80px;
        font-weight: 100;
        line-height: 25px;
        font-size: 20px;
    }

    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: #8B4513;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    span {
        background: #ffffff;
        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: none;
    }

    .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: 50px;
        font-size: 26px;
        transition: 0.2s linear;
    }

    .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%;
    }

    @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: 200;
        padding: 10px;
        background: #ffffff00;
        object-fit: contain;
        position: relative;
    }

    @media only screen and (max-width: 750px) {
        .gallery {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    .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;
    }

    .gallery-container {
        background-color: #442a16;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        margin: 40px 10px;
        border: 2px solid #ffffff;
    }

    h1 {
        color: #f2dab2;
        text-align: center;
        font-size: 60px;
        text-transform: uppercase;
        font-weight: lighter;
        font-family: serif;
    }

    .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;
        max-width: 190px;
    }

    .footer a:hover {
        color: #ffffff;
    }

    .footer i {
        font-size: 24px;
        margin-right: 10px;
    }

    .social-icons {
        display: flex;
        align-items: center;
        max-width: 150px;
        justify-content: flex-start;
        margin-top: -10px;
        margin-bottom: 5px;
        width: auto;
        margin-left: -5px;
    }

    .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: 50px;
        font-size: 26px;
        transition: 0.2s linear;
        position: relative;
        z-index: 1;
    }

    .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%;
        z-index: 0;
    }

    .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%;
        }
    }

    .page-container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    .main-content-wrapper {
        flex-grow: 1;
    }

    .left-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding-right: 5px;
        margin-right: 15px;
    }

    .contact-info span {
        color: #f2dab2;
        font-size: 16px;
        margin-bottom: 5px;
        margin-right: 50px;
        background-color: transparent;
        position: relative;
        z-index: 2;
    }

    .contact-info a {
        color: #f2dab2;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
    }

    .contact-info a:hover {
        color: #ffffff;
    }

    .right-column {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .footer-logo {
        margin-top: 0x;
        width: 100px;
        height: auto;
        margin-right: -20px;
    }

    .location-link {
        margin-left: 0px;
    }
}

/*MOBIL*/
@media (max-width: 700px) {
    body {
        background-color: lab(59.41% 1.48 2.91);
        position: relative;
    }
    * {
        margin: 0;
        padding: 0;
        /*font-family: serif;*/
        background-repeat: no-repeat;
        background-size: cover;
        box-sizing: border-box;
    }
    html, body {
        height: 100%;
        min-height: 100%;
        overflow-x: hidden;
    }

    h3 {
        text-align: center;
    }
    h4 {
        text-align: center;
        color: #8B4513;
        font-size: 19px;
    }

    .navbar {
    width: 100%;
    margin: auto;
    padding: 17px 0;          
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #442a16;
    border-bottom: 2px solid #ffffff;
    }

    .navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    transform: translateX(30px);
    padding: 15px 0;             
    gap: 0px;                     
    }

    .navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 15px;              
    position: relative;
    }

    .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: 20px;                   
    transition: color 0.3s ease;
    }

    @media only screen and (max-width: 700px) {
        .navbar ul li a {
            font-size: 15px;
        }
    }

    .navbar ul li a:hover {
    color: #ffffff;
    cursor: pointer;
    }

    .navbar ul li ::after {
        content: "";
        height: 2px;
        width: 0;
        background: #FFC0CB;
        position: absolute;
        left: 0;
        bottom: -2px;
        transition: 0.5s;
    }
    .navbar ul li:hover ::after {
        width: 100%;
    }
    .logo {
        width: 40%;
    }

    .content {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        color: #000000;
    }
    .content h1 {
        margin-top: 80px;
        font-size: 60px;
    }
    .content p {
        margin: 20px auto;
        margin-left: 80px;
        margin-right: 80px;
        font-weight: 100;
        line-height: 25px;
        font-size: 20px;
    }

    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: #8B4513;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    span {
        background: #ffffff;
        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: none;
    }

    .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: 50px;
        font-size: 26px;
        transition: 0.2s linear;
    }

    .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%;
    }

    @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: 200;
        padding: 10px;
        background: #ffffff00;
        object-fit: contain;
        position: relative;
    }

    @media only screen and (max-width: 750px) {
        .gallery {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    .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;
    }

    .gallery-container {
        background-color: #442a16;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        margin: 40px 10px;
        border: 2px solid #ffffff;
    }

    h1 {
        color: #f2dab2;
        text-align: center;
        font-size: 60px;
        text-transform: uppercase;
        font-weight: lighter;
        font-family: serif;
    }

    .footer {
    width: 100%;
    margin-top: 40px;          
    padding: 15px 12px;        
    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;
    font-size: 13px;   
    }

    .footer a:hover {
        color: #ffffff;
    }

    .footer i {
        font-size: 22px;
        margin-right: 10px;
    }

    

    .social-icons {
        display: flex;
        align-items: center;
        max-width: 150px;
        justify-content: flex-start;
        margin-top: -10px;
        margin-bottom: 5px;
        width: auto;
        margin-left: -5px;
    }

    .btn {
        display: inline-block;
        width: 34px;
        height: 34px;
        background: #f1f1f1;
        margin: 10px;
        border-radius: 30%;
        box-shadow: 0 5px 15px -5px #00000070;
        color: #FFC0CB;
        overflow: hidden;
        position: relative;
    }

    .btn i {
        line-height: 50px;
        font-size: 20px;
        transition: 0.2s linear;
        position: relative;
        z-index: 1;
    }

    .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%;
        z-index: 0;
    }

    .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%;
        }
    }

    .page-container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    .main-content-wrapper {
        flex-grow: 1;
    }

    .left-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding-right: 5px;
        margin-right: 15px;
    }

    .contact-info span {
        color: #f2dab2;
        font-size: 16px;
        margin-bottom: 5px;
        margin-right: 50px;
        background-color: transparent;
        position: relative;
        z-index: 2;
    }

    .contact-info a {
        color: #f2dab2;
        text-decoration: none;
        font-size: 13px;
        font-weight: bold;
    }

    .contact-info a:hover {
        color: #ffffff;
    }

    .right-column {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .footer-logo {
        margin-top: 0x;
        width: 82px;
        height: auto;
        margin-right: -7px;
    }

    .location-link {
        margin-left: 0px;
    }
}