/* Simple Jobs Resources - Blue-Toned Feminine Theme */

:root {
    --primary-blue: #4A7C7E;
    --soft-blue: #7BA3A5;
    --light-blue: #B8D4D6;
    --pale-blue: #E8F4F5;
    --accent-teal: #5B9A8B;
    --warm-white: #FDFCFB;
    --soft-cream: #F5F0EB;
    --text-dark: #2C3E4A;
    --text-medium: #5A6B75;
    --text-light: #8A9AA3;
    --wood-brown: #8B6F4E;
    --wood-light: #A68B6A;
    --amazon-orange: #FF9900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--pale-blue) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--soft-blue) 100%);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.logo-container {
    position: relative;
    z-index: 1;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-simple {
    color: var(--warm-white);
}

.logo-jobs {
    color: var(--light-blue);
}

.logo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--light-blue);
    font-weight: 400;
    letter-spacing: 4px;
    margin-top: 5px;
    text-transform: uppercase;
}

.logo-subtitle::before {
    content: '✦';
    margin-right: 12px;
    color: var(--light-blue);
    font-size: 0.8em;
}

.logo-subtitle::after {
    content: '✦';
    margin-left: 12px;
    color: var(--light-blue);
    font-size: 0.8em;
}

.tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 30px;
    background: var(--warm-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(74, 124, 126, 0.08);
    border: 1px solid var(--light-blue);
}

.intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Bookshelf */
.bookshelf {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.shelf-row {
    position: relative;
}

.shelf-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-teal);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 25px;
}

.shelf-wood {
    height: 12px;
    background: linear-gradient(180deg, var(--wood-light) 0%, var(--wood-brown) 50%, #6B5639 100%);
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.shelf-wood::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    right: 10%;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    filter: blur(4px);
}

/* Book Cards */
.book-card {
    background: var(--warm-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(74, 124, 126, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(184, 212, 214, 0.3);
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(74, 124, 126, 0.2);
}

.book-cover {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A7C7E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.book-cover img {
    max-height: 180px;
    width: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.book-card:hover .book-cover img {
    transform: scale(1.05);
}

.books-grid.single-book {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.featured-card {
    max-width: 400px;
    margin: 0 auto;
}

.featured-card .book-cover {
    height: 350px;
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 50%, #F48FB1 100%);
}

.featured-card .book-cover::before {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E91E63' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.featured-card .book-cover img {
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.book-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.book-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.author {
    color: var(--accent-teal);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-amazon {
    display: inline-block;
    background: linear-gradient(135deg, var(--amazon-orange) 0%, #E8890C 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.btn-amazon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

/* Disclaimer */
.disclaimer {
    margin-top: 60px;
    padding: 30px;
    background: var(--soft-cream);
    border-radius: 16px;
    text-align: center;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.disclaimer strong {
    color: var(--primary-blue);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .logo-subtitle {
        font-size: 1.3rem;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .book-cover {
        height: 180px;
    }
    
    .book-cover img {
        max-height: 140px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
