/* style.css */
html, body {
    margin: 0;
    min-height: 100%;
    height: 100%;
    font-family: "Crimson Text", serif;
}

body {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.page-background {
    position: fixed;
    inset: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    grid-template-rows: repeat(4, minmax(120px, 1fr));
    gap: 8px;
    z-index: 0;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    padding: 8px;
    background: rgba(255,255,255,0.15);
}

.tile {
    min-height: 100%;
    background-repeat: repeat;
    background-size: 500px 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.tile-a { background-image: url('https://ik.imagekit.io/daeplio/d9fb2e5e-2ff8-44b3-b68f-bb2a707af6d9.jpg'); }
.tile-b { background-image: url('https://ik.imagekit.io/daeplio/88cd5e03-baf3-4d82-a9a2-fc7871fba76c.jpg'); }
.tile-c { background-image: url('https://ik.imagekit.io/daeplio/4e9760f6-927c-491a-b92f-794d3c29b78d.jpg'); }
.tile-d { background-image: url('https://ik.imagekit.io/daeplio/1ebc9d19-18ba-45aa-8c02-d0abe83f746d.jpg'); }
.tile-e { background-image: url('https://ik.imagekit.io/daeplio/cd5b24d1-9bbc-4f22-b539-3d00ffb2ad56.jpg'); }
.tile-f { background-image: url('https://ik.imagekit.io/daeplio/e2338e95-6c3c-4c21-986f-f22011ba45d5.jpg'); }



.page-background .tile:nth-child(odd) {
    filter: saturate(1.1);
}

.quote-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 24px;
    box-sizing: border-box;
}

.quote-container {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(2px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

#quote-text {
    font-family: "Crimson Text", serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
}

#quote-author {
    font-size: 1rem;
    font-weight: bold;
    color: #666;
}