﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.container .body-content {
    width: 100% !important;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
}



/*Custom Styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b6f47;
    --accent-color: silver;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --background-light: #f8f8f8;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    background: var(--white);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    header.scrolled {
        padding: 1rem 0;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .logo img {
        width: 275px;
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    nav a:hover {
        color: var(--accent-color);
    }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: url("../../Content/images/Hero2.jpg");
    /*background-color: black;*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 200px 0px 150px 0px;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.2s both;
    color: black;
}

.cta-button {
    display: inline-block;
    background-color: rgb(50,50,50);
    color: white;
    border-radius: 10px;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s both;
    font-size: 0.9rem;
}

    .cta-button:hover {
        background: var(--white);
        color: black;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    }

/* Featured Book Section */
.featured-book {
    padding: 100px 3rem;
    background: var(--white);
    margin: 0 auto;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem; /* adjust spacing as needed */
    align-items: center;
}

.book-image {
    flex: 0 0 auto;
    /* add any sizing constraints for the book cover */
}

.book-details {
    flex: 1;
}

.book-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 5px;
}

/* Mobile responsive - book-details on top, book-image on bottom */
@media (max-width: 768px) {
    .featured-container {
        flex-direction: column; /* stacks vertically in HTML order */
    }

    .book-image {
        width: 100%;
        text-align: center; /* optional: centers the book cover */
    }
        /*
        .book-image img {
            max-width: 300px; 
        }
        */
}

/*
.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 1rem;
    align-items: center;
}

.book-image {
    position: relative;
    margin: 0 auto;
}

    .book-image img {
        width: 100%;
        border-radius: 5px;
    }

.book-details {
    padding: 2rem 0;
}
    */

.book-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.book-details h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.book-details p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.book-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

    .book-cta:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

/* About Section */
.about-section {
    padding: 100px 3rem;
    background: var(--background-light);
}

.about-container {
    display: flex;
    gap: 2rem; /* adjust spacing as needed */
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 auto;
    /* add any sizing constraints for the image */
}

.about-content {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse; /* reverses order: content first, image second */
    }

    .about-image {
        width: 100%;
        text-align: center; /* optional: centers the image */
    }
}

/*
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

    .about-image img {
        border-radius: 5px;
        max-width: 600px;
    }

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}
    */

.about-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Contact Section */
.contact-section {
    padding: 100px 3rem;
    background: var(--white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        border: 2px solid #e0e0e0;
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s;
        background: var(--background-light);
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 180px;
    }

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    padding: 1.2rem 3rem;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

    .submit-button:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    position: fixed;
    bottom: 0px;
    width: 100%;
    /*padding: 4rem 3rem 2rem;*/
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

    .footer-section a:hover {
        color: var(--accent-color);
    }

.copyright {
    /*border-top: 1px solid rgba(255,255,255,0.1);*/
    padding-top: 1rem;
    /*padding-bottom: 2rem;*/
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animations */
@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@@media (max-width: 1024px) {
    .featured-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        padding: 0 2rem;
    }

        nav ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

            nav ul.active {
                display: flex;
            }

    .hero {
        padding: 150px 2rem 100px;
    }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.1rem;
            text-shadow: 1px 1px 3px white;
        }

    .featured-book,
    .about-section,
    .contact-section {
        padding: 60px 2rem;
    }

    .book-details h2,
    .about-content h2,
    .contact-header h2 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-cta{
        width:100%;
        text-align:center;
    }
}

.form-control {
    width: 100%;
}
.dream {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 3rem;
}

.dream p{
    padding-top: 50px;
    padding-bottom: 20px;
}

.dream .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 200px;
    height: 0;
    overflow: hidden;
}

    .dream .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 450px;
    }

.main-content{
    margin-top: 110px;
}



/* Download Section */
.download-section {
    padding: 100px 3rem;
    background: var(--white);
}

.download-container {
    max-width: 400px;
    margin: 0 auto;
}

.download-header {
    text-align: center;
    margin-bottom: 2rem;
}

.download-label {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 2rem;
}

.download-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.download-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.alert-success{
    margin-top: 1rem;
    color: green;
}