:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c5f8d;
    --accent-color: #c8102e;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0d2f4a;
    text-transform: uppercase;
    font-style: italic;
    transform: skew(-5deg, 0);
    -webkit-text-stroke: 0.5px #0d2f4a;
    text-stroke: 0.5px #0d2f4a;
    text-shadow: 3px 3px 0 rgba(26, 77, 122, 0.1), 
                 6px 6px 12px rgba(0, 0, 0, 0.15),
                 0 0 20px rgba(26, 77, 122, 0.1);
    position: relative;
    word-break: keep-all;
    max-width: 100%;
    overflow-wrap: break-word;
}

h1 .pacmin-bold {
    font-weight: 900;
    -webkit-text-stroke: 1.5px #0d2f4a;
    text-stroke: 1.5px #0d2f4a;
    text-shadow: 2px 2px 0 #0d2f4a,
                 3px 3px 0 rgba(26, 77, 122, 0.1), 
                 6px 6px 12px rgba(0, 0, 0, 0.15),
                 0 0 20px rgba(26, 77, 122, 0.1);
}

@media (min-width: 992px) {
    h1 {
        font-size: clamp(2.5rem, 4vw, 4.5rem);
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: -0.015em;
    }
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-section {
        align-items: flex-start;
        padding-top: 2rem;
    }
}

.hero-section .col-lg-6 {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .hero-section .col-lg-6.order-lg-1 {
        padding-right: 2rem;
    }
    
    .hero-section .col-lg-6.order-lg-2 {
        padding-left: 2rem;
    }
}

.book-cover-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.book-cover-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover-container img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}


.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-content {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 1.25rem;
}

.closing-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.01em;
}

footer {
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -0.01em;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 2rem 0;
        min-height: 100vh;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .hero-content {
        font-size: 0.95rem;
    }
    
    .closing-statement {
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Coming Soon Badge */
.coming-soon-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
    transform: skew(-5deg, 0);
}

.coming-soon-badge-lg {
    display: block;
    margin-bottom: 1.5rem;
    text-align: left;
}

.coming-soon-badge-sm {
    display: none;
}

@media (max-width: 991px) {
    .coming-soon-badge-lg {
        display: none;
    }
    
    .coming-soon-badge-sm {
        display: block;
        text-align: center;
        margin: 1.5rem auto;
    }
}

