@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Poiret+One&family=Cormorant+SC:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---------- 1. BACKGROUND (icy white with blue hue) ---------- */
.book-white{
background:linear-gradient(180deg,
#D7E2F2 0%,
#DEE8F4 28%,
#E6EEF7 55%,
#EDF3F9 80%,
#F3F7FC 100%);
background-attachment:fixed;
background-size:cover;
background-repeat:no-repeat;
}

/* ---------- 2. TEXT COLOR (by font) ---------- */
.book-white .cinzel { color:#3A3A3A; }
.book-white .poiret { color:#C9971E; }
.book-white .csc { color:#5A5A5A; }
.book-white .garamond { color:#5A5A5A; }
.book-white .fine { color:#8A8A8A; }

/* ---------- 3. LINKS ---------- */
.book-white a, .book-white .link { color:#86591F; text-decoration:none; transition:color .25s ease; }
.book-white a:hover, .book-white .link:hover { color:#B5894E; }

/* ---------- 4. CARD ---------- */
.book-white .card{
background:#D8DCE1;
border:1px solid #F2D98A;
border-radius:0; box-shadow:none; transition:.3s;
}
.book-white .card:hover{
background:#C7EBD5;
border-color:#F7E6CD;
transform:translateY(-3px);
}

/* ---------- 5. CITY LINKS (inside a card) ---------- */
.book-white .card .city-names a:hover,
.book-white .card .city:hover { color:#FFFFFF; }

/* ---------- 6. CORE HEADER ---------- */
.book-white .site-header{
background:transparent;
border-bottom:.8px solid #D6D2CB;
}