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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFFFFF; /* Clean white background */
}

/* Header */
.header {
    background: #FFFFFF;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #E0E0E0; /* Subtle border for separation */
}

.header-content h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.header-content p {
    font-size: 18px;
    color: #666;
    margin-top: 0.5rem;
}

.header-content .subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 0.25rem;
}

.nav {
    background: #FFFFFF;
    padding: 1rem;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #E0E0E0;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.nav a {
    color: #1E90FF; /* Soft blue for links */
    text-decoration: none;
    font-size: 16px;
}

.nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    background: #FFFFFF; /* Ensure white background */
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust based on desired image width */
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Dark overlay */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 18px;
    margin-bottom: 1.5rem;
}
/* General Section Styles */
.section {
    padding: 3rem 1rem;
    text-align: center;
    background: #FFFFFF;
}

.section h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    color: #000;
    margin-bottom: 1.5rem;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    font-size: 16px;
}

.content p {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: #FFFFFF;
}

.about img {
    float: right;
    margin-left: 1.5rem;
    max-width: 300px;
    height: auto;
    border: 1px solid #E0E0E0;
}
/* Video Trailer Section */
.trailer {
    background: #FFFFFF;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: auto;
    border: 1px solid #E0E0E0;
    border-radius: 3px;
}
/* Author Section */
.author {
    background: #FFFFFF;
}

.author-photo {
    border-radius: 50%;
    margin-bottom: 1rem;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 1px solid #E0E0E0;
}

.author blockquote {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid #1E90FF;
}

/* Excerpt Section */
.excerpt {
    background: #FFFFFF;
}

.excerpt-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    border: 1px solid #E0E0E0;
}

.excerpt-box p {
    text-align: justify;
    font-size: 16px;
}

/* Buy Section */
.buy {
    background: #FFFFFF;
}

.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.buy img {
    margin-top: 1.5rem;
    max-width: 300px;
    height: auto;
    border: 1px solid #E0E0E0;
}

/* Contact Section */
.contact {
    background: #FFFFFF;
}

.contact form {
    max-width: 600px;
    margin: 1.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input, .contact textarea {
    padding: 0.5rem;
    border: 1px solid #E0E0E0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #FFFFFF;
}

.contact input:focus, .contact textarea:focus {
    border-color: #1E90FF;
    outline: none;
}

.contact textarea {
    height: 150px;
}

.contact .social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    color: #1E90FF;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
}

.social-icon:hover {
    background: #F0F0F0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #1E90FF;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border-radius: 3px;
}

.btn:hover {
    background: #187BCD; /* Slightly darker blue */
}

/* Footer */
.footer {
    background: #FFFFFF;
    color: #666;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #E0E0E0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 36px;
    }

    .header-content p {
        font-size: 16px;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding-bottom: 100%;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .section h2 {
        font-size: 24px;
    }

    .content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .content img {
        float: none;
        margin: 0 auto 1rem;
        display: block;
        max-width: 100%;
    }

    .author-photo {
        width: 150px;
        height: 150px;
    }
}