@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg: #f6f4f2;
    --text: #1f1f1f;
    --accent: #a85a3a;
    /* fired clay */
    --soft: #dddddd;
}




* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.6rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    border-bottom: 1px solid var(--soft);
    background: rgba(247, 242, 236, 0.9);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 150px;
}

.nav a,
.back-link {
    margin-right: 25px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav a:hover,
.back-link:hover {
    color: var(--accent);
}

.lang-switch button {
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    margin-left: 8px;
    color: var(--text);
}

.lang-switch button:hover {
    color: var(--accent);
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
}

.section {
    max-width: 1150px;
    margin: auto;
    padding: 90px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    /* optional */
    object-fit: cover;
    /* keeps aspect ratio and fills the box */
}


.masonry {
    column-count: 3;
    column-gap: 25px;
    margin-top: 50px;
}

.tile {
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.tile img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.tile span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    background: rgba(247, 242, 236, 0.8);
    padding: 6px 12px;
}

.tile:hover img {
    transform: scale(1.05);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.fade {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.9s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-box {
    margin-top: 20px;
    font-size: 15px;
}

.footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid var(--soft);
    font-size: 14px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry {
        column-count: 1;
    }

    .site-header {
        padding: 15px 25px;
    }
}

/* Footer external link logo */
.footer a {
    display: inline-block;
    margin-top: 15px;
    /* space between text and image */
}

.footer-logo {
    height: 80px;
    /* adjust size as needed */
    width: auto;
    transition: transform 0.3s ease;
    vertical-align: middle;
    /* aligns nicely with text if side by side */
}

.footer-logo:hover {
    transform: scale(1.1);
    /* subtle hover effect */
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}