/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at center, #2c4a3a 0%, #1e3d2f 30%, #0f2419 70%, #0a1a11 100%);
    color: #e8f5e8;
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    letter-spacing: 0.005em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: #50c878;
    color: #0a1a11;
    border: 2px solid #50c878;
}

.btn-primary:hover {
    background-color: transparent;
    color: #50c878;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(80,200,120,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #50c878;
    border: 2px solid #50c878;
}

.btn-secondary:hover {
    background-color: #50c878;
    color: #0a1a11;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(80,200,120,0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    object-fit: contain;
}

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

/* Purchase Section */
.purchase {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.purchase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a3d2a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 60px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.purchase-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.purchase-link {
    text-decoration: none;
    color: inherit;
}

.retailer-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.retailer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.retailer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1a3d2a;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.08);
    letter-spacing: 0.01em;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: keep-all;
    hyphens: none;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

    .retailer-card p {
        color: #2d5a3d;
        font-size: 0.95rem;
        font-weight: 500;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.03);
    }

/* Social Media Section */
.social-media {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c4a3a 0%, #1e3d2f 100%);
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: nowrap;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 90px;
    height: 90px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.social-icon {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.social-link:hover .social-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Social Media Brand Colors */
.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.5);
}

.social-link.facebook:hover .social-icon {
    color: #1877f2;
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.5);
}

.social-link.instagram:hover .social-icon {
    color: #e1306c;
}

.social-link.tiktok:hover {
    background: rgba(255, 0, 80, 0.2);
    border-color: rgba(255, 0, 80, 0.5);
}

.social-link.tiktok:hover .social-icon {
    color: #ff0050;
}

.social-link.x:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.5);
}

.social-link.x:hover .social-icon {
    color: #1da1f2;
}

/* Author Section */
.author {
    padding: 100px 0;
    background-color: white;
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.author-image {
    display: flex;
    justify-content: center;
}

.author-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.author-photo:hover {
    transform: scale(1.05);
}

.author-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a3d2a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.01em;
}

.author-quote {
    position: relative;
    background: #f8f9fa;
    padding: 40px 30px 30px 60px;
    border-left: 5px solid #2d5a3d;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #2d5a3d;
    font-family: Georgia, serif;
    opacity: 0.3;
    line-height: 1;
}

.author-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 500;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.03);
}

.author-quote p:last-of-type {
    margin-bottom: 0;
}

.quote-attribution {
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    color: #1a3d2a;
    margin-top: 25px;
    font-style: normal;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #50c878;
    text-decoration: underline;
}

/* Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .hero-content {
        gap: 80px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .book-cover {
        max-height: 80vh;
    }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .book-cover {
        max-height: 75vh;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 18px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1.05rem;
    }
    
    .book-cover {
        max-height: 65vh;
    }
    
    .purchase-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .retailer-card h3 {
        font-size: 1.4rem;
        line-height: 1.15;
        word-break: keep-all;
        hyphens: none;
    }
    
    .social-links {
        gap: 45px;
        flex-wrap: nowrap;
    }
    
    .social-link {
        width: 80px;
        height: 80px;
        padding: 18px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .author-content {
        gap: 50px;
    }
    
    .author-photo {
        width: 280px;
        height: 280px;
    }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .hero {
        padding: 10px 0 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        order: 1;
        margin-bottom: 35px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        order: 3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        display: none;
    }
    
    .hero-buttons {
        display: none;
    }
    
    .book-cover {
        max-height: 55vh;
        order: 2;
    }
    
    .hero-image {
        order: 2;
    }
    
    .purchase-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .retailer-card h3 {
        font-size: 1.3rem;
        line-height: 1.1;
        word-break: keep-all;
        hyphens: none;
    }
    
    .social-links {
        gap: 35px;
        flex-wrap: nowrap;
    }
    
    .social-link {
        width: 75px;
        height: 75px;
        padding: 16px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .author-photo {
        width: 220px;
        height: 220px;
    }
    
    .purchase h2,
    .author-text h2 {
        font-size: 2.2rem;
    }
}

/* Mobile Large (375px - 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 5px 0 35px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        order: 3;
    }
    
    .hero-description {
        font-size: 0.9rem;
        display: none;
    }
    
    .hero-buttons {
        display: none;
    }
    
    .book-cover {
        max-height: 45vh;
        order: 2;
    }
    
    .hero-image {
        order: 2;
    }
    
    .purchase-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .retailer-card {
        padding: 18px;
        min-height: 100px;
    }
    
    .retailer-card h3 {
        font-size: 1.2rem;
        line-height: 1.1;
        word-break: keep-all;
        hyphens: none;
    }
    
    .social-media {
        padding: 50px 0;
    }
    
    .social-links {
        gap: 30px;
        flex-wrap: nowrap;
    }
    
    .social-link {
        width: 70px;
        height: 70px;
        padding: 14px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .author-photo {
        width: 200px;
        height: 200px;
    }
    
    .purchase h2,
    .author-text h2 {
        font-size: 1.8rem;
    }
    
    .purchase,
    .author {
        padding: 50px 0;
    }
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional hover effects */
.retailer-card:hover h3 {
    color: #667eea;
}

/* Loading animation for images */
.book-cover,
.author-photo {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 