/* Masonry gallery styles */
.gallery-container {
    column-count: 3;
    column-gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
}
.gallery-img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    display: block;
    transition: box-shadow 0.2s, transform 0.2s;
}
.gallery-img:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: scale(1.03);
}
@media (max-width: 900px) {
    .gallery-container {
        column-count: 2;
    }
}
@media (max-width: 600px) {
    .gallery-container {
        column-count: 1;
    }
}
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}
.gallery-modal.active {
    display: flex;
}
.gallery-modal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
}
.nav-side nav-left {
    text-align: right;
}
.nav-side nav-right {
    text-align: left;
}
/* Navigation row with side 'a' divs */
.nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.nav-side {
    width: 120px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 120px;
    color: #fff;
    user-select: none;
    flex-shrink: 0;
    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-center {
    width: 220px; /* Adjust as needed for your nav */
    min-width: 220px;
    max-width: 220px;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-center nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Crop rabbit.png visually */
.rabbit-crop {
    width: 280px; /* Adjust as needed */
    /*height: 500px; */
    overflow: hidden;
    display: inline-block;
    border-radius: 16px; /* Optional: rounded corners */
}

.rabbit-img {
    width: 540px;
    height: auto;
    object-fit: cover;
    object-position: 80%;
    display: block;
    padding: 0 0 0 15px;
}
@font-face {
    font-family: 'LEMONMILK';
    src: url('stuff/LEMONMILK-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LEMONMILK';
    src: url('stuff/LEMONMILK-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'LEMONMILK', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    background-attachment: fixed;
    background-size: full;
    background-repeat: repeat-y;
    background-position: center center;
    background-image: url('stuff/main-bg.png');
    color: #333;
    text-align: center;
}

header {
    padding: 0px 20px 0 20px;
   //** background-color: #fff;**/
}

h1 {
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 0.11em;
}

h2 {
    font-size: 1.5em;
    margin: 10px 0 40px;
    font-weight: normal;
}

nav {
    max-width: 540px;
    margin: 0 auto;
}

nav a {
    height:25px;
    display: block;
    font-size: 1.2em;
    margin: 0px 0;
    color: #e7e5dc;
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover {
    text-decoration: underline;
    font-weight: bold;
    
}


    a {
    height:25px;
    display: block;
    font-size: 1.2em;
    margin: 0px 0;
    color: #e7e5dc;
    text-decoration: none;
    text-transform: uppercase;
}

    a:hover {
    text-decoration: underline;
    color: #333;
    
}


section.contact {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin: 10px 0 5px;
}

input, textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}