/* ============================================
   CEO UNFILTERED - COMING SOON WEBSITE
   Color Palette from Book Cover:
   - Dark Green: #1a3a2a (primary background)
   - Gold/Tan: #c9a961 (accent)
   - Sage Green: #7a9b6f (accent)
   - Teal/Cyan: #5fa8a0 (accent)
   - Light Text: #f0f0f0 (primary text)
   ============================================ */

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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Cabin', sans-serif;
    background-color: #1a3a2a;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradient */
body {
    background: linear-gradient(135deg, #1a3a2a 0%, #0f2a1f 50%, #1a3a2a 100%);
}

/* Top Bar Header */
.top-bar {
    width: 100%;
    background-color: #10314B;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.coming-soon-header {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #c9a961 0%, #7a9b6f 50%, #5fa8a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    margin: 0;
    flex-shrink: 0;
}

/* Main Content */
.main-content {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px 60px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 50px;
    width: 100%;
    align-items: center;
}

/* Left Section - Author Portrait */
.left-section {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInLeft 1s ease-out;
}

.author-image-container {
    width: 100%;
    max-width: 400px;
}

.author-image-large {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.author-image-large:hover {
    transform: translateY(-10px);
}

/* Center Section - Book Cover */
.center-section {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.book-cover {
    width: 100%;
    max-width: 320px;
}

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

.cover-image:hover {
    transform: translateY(-10px);
}

/* Right Section - Description */
.right-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 1s ease-out 0.4s both;
}

/* Book Description */
.book-description {
    font-size: 15px;
    line-height: 1.5;
    color: #e0e0e0;
}

.book-description p {
    margin-bottom: 10px;
    text-align: justify;
}

.book-description strong {
    color: #c9a961;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #0f2a1f;
    padding: 30px 40px;
    text-align: center;
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .coming-soon-header {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .center-section {
        grid-column: 1 / -1;
        max-width: 350px;
        justify-self: center;
    }

    .book-cover {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .top-bar {
        padding: 12px 0;
    }

    .top-bar-container {
        padding: 0 30px;
    }

    .logo-section {
        gap: 30px;
    }

    .logo {
        max-width: 350px;
    }

    .coming-soon-header {
        font-size: 36px;
    }

    .main-content {
        padding: 50px 30px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .author-image-container {
        max-width: 350px;
    }

    .book-cover {
        max-width: 300px;
    }

    .book-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .book-description p {
        margin-bottom: 14px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar-container {
        padding: 0 20px;
    }

    .logo-section {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        max-width: 280px;
    }

    .coming-soon-header {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .main-content {
        min-height: auto;
        padding: 40px 20px;
    }

    .author-image-container {
        max-width: 280px;
    }

    .book-cover {
        max-width: 250px;
    }

    .book-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .book-description p {
        margin-bottom: 12px;
        text-align: left;
    }

    .footer {
        padding: 25px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-container {
        padding: 0 15px;
    }

    .logo-section {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        max-width: 220px;
    }

    .coming-soon-header {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .content-grid {
        gap: 25px;
    }

    .author-image-container {
        max-width: 220px;
    }

    .book-cover {
        max-width: 200px;
    }

    .book-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .book-description p {
        margin-bottom: 10px;
    }

    .footer {
        padding: 20px 15px;
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .coming-soon-header {
        font-size: 20px;
    }

    .logo {
        max-width: 180px;
    }

    .author-image-container {
        max-width: 180px;
    }

    .book-cover {
        max-width: 160px;
    }

    .book-description {
        font-size: 11px;
    }
}
