body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(111, 89, 70, 1);
}

.logo {
    font-size: 24px;
    color: #ffffff;
    font-family: "Mea Culpa", cursive;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s ease-out;
}

.logo a:hover {
    color: #e9bc88;
    transition: color 0.2s ease-in;
}

.nav-list {
    margin-right: 30px;
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    display: flex;
    gap: 20px;
    list-style: none;
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.2s ease-out;
}

.nav-list a:hover {
    color: #e9bc88;
    transition: color 0.2s ease-in;
}

.welcome {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.welcome h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2.5rem;
    margin: 0;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-content: center;
  }
  
  .image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;      
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-container img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

.description {
    max-width: 700px;
    margin: 2rem auto;
    text-align: center;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.description p + p {
    margin-top: 1rem;
}

footer {
    background-color: #fafafa;
    padding: 2.5rem 1rem;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

.social-media {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 0.5rem;
    padding: 0;
}

.social-media li {
    margin: 0;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.social-media-icons li {
    text-decoration: none;
}

.social-media-icons img {
    width: 30px;
    height: auto;
}

.book-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid transparent;
    overflow: hidden;
}

.book-table thead {
    background-color: #f4f4f4;
}

.book-table thead th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    transition: background-color 0.2s ease;
}

.book-table thead th:hover {
    background-color: #f0f8ff;
}

.book-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.book-table tbody tr:hover {
    background-color: #f0f8ff;
}

.book-table tbody td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #eee;
}

@media (max-width: 640px) {
    .book-table thead {
        display: none;
    }

    .book-table,
    .book-table tbody,
    .book-table tr,
    .book-table td {
        display: block;
        width: 100%;
    }

    .book-table tr {
        margin-bottom: 1rem;
    }

    .book-table td {
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    .book-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: calc(50% - 2rem);
        font-weight: 600;
        text-align: left;
    }
}
