/* NULLIMINE - Eemaldame vaikimisi ääred */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* "Open Sans" on hea loetavusega tekstifont */
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8; /* Tekstiridade vahe on suurem, et oleks mugav lugeda */
    color: #2c2c2c; /* Tumehall on silmale pehmem kui must */
    background-color: #fdfbf7; /* "Paberi valge" taustavärv */
}

/* TÜPOGRAAFIA (PEALKIRJAD) */
h1, h2, h3 {
    /* "Merriweather" annab klassikalise raamatu tunde */
    font-family: 'Merriweather', serif;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* NAVIGATSIOONIRIBA */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    text-transform: uppercase; /* Teeb lingid SUURTÄHTEDEKS */
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* PÄIS (HERO SECTION) */
.hero {
    height: 60vh; /* 60% ekraani kõrgusest */
    background-color: #2c3e50; /* Tume ja elegantne taust */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    font-style: italic;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
}

.dates {
    margin-top: 10px;
    font-family: 'Merriweather', serif;
    color: #ccc;
}

/* SISU SEKSIOONID */
.container {
    padding: 80px 10%;
}

.content-wrapper {
    max-width: 800px; /* Piirab laiust, et tekst oleks nagu raamatus */
    margin: 0 auto;
    font-size: 1.1rem;
}

.alt-bg {
    background-color: #eae8e3; /* Veidi tumedam paberitoon eristamiseks */
}

/* RAAMATUTE RUUDUSTIK */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.book-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    text-align: center;
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px); /* Tõuseb hiirega peale minnes veidi üles */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.book-cover {
    font-size: 3rem;
    margin-bottom: 15px;
}

.book-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* JALUS */
footer {
    text-align: center;
    padding: 40px;
    background: #1a1a1a;
    color: #888;
    font-size: 0.9rem;
}

h3 {
    font-family: 'Merriweather', serif;
    color: #444;
    border-bottom: 2px solid #eae8e3;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}