/* Reset browser defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto Serif;
    background-color: #DBEAFE; /* soft blue */
}

/* Site Title (above navbar) */
.site-title {
    text-align: center;
    padding: 10px 0 10px 0;
    background-color: #EFF6FF; /* light background */
}

.site-title h1 {
    color: #E36414;      /* your orange color */
    font-size: 30px;
        font-weight: bold;
    margin: 0;
    letter-spacing: 2px; /* optional: makes it stylish */
}


/* Navbar */
.navbar {
    background-color: #1E3A8A; /* deep blue */
    display: flex;             /* flex layout */
    justify-content: right;   /* center links horizontally */
    align-items: right;       /* center vertically */
    gap: 20px;                 /* space between links */
    padding: 10px 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s;
    margin-right:20px;
}

.navbar a:hover,
.navbar a.active {
    color: #FED987; /* same as hover */
}
/* Quotation(about) Section */
.quote-wrapper {
    display: flex;
    align-items: flex-start; /* align top */
    gap: 30px;
    max-width: 1200px;
    margin: 5px auto;
}

.quote-wrapper h2 {
    font-size: 11px;
    color: #1E3A8A;
}
.quote {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.quote-pic {
    margin-top: 40px;
    width: 100%;
    max-width: 400px;
}

.image-block {
        display: flex;
    flex-direction: column;
    align-items: center;

}

.image-block h2 {
    font-size: 16px;
    color: #1E3A8A;
    text-align: center;
    margin-top: 5px;
    font-family: Roboto Sans-Serif;
}

.quote-container {
    display: flex;
    flex-direction: column;   /* stack items vertically */
    gap: 5px;                /* space between articles */
    max-width: 900px;
    margin: 0 auto;
}

.quote-card {
    background-color: #EFF6FF;
    padding: 10px 10px;
    border-radius: 10px;
    border-left: 6px solid #E36414; /* side accent instead of top */
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    text-align: left;  /* important for readability */
    transition: transform 0.2s;
    margin-bottom: 8px;
}

.quote-card:hover {
    transform: translateX(5px); /* subtle move right */
}

.quote-card p {
    color: #1F2933;
    font-size: 19px;
    margin-bottom: 0px;
}

.quote-card a {
    text-decoration: none;
    color: #E36414;
    font-weight: bold;
}

.quote-card a:hover {
    color: #064E3B;
    font-size: 20px;

}

/* Hover effect */
.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}



/* About Me Section */
.about {
    max-width: 1200px;           /* keeps content from stretching too wide */
    margin: 0px auto;           /* centers section horizontally with space top/bottom */
    padding: 2px 2px;
    background-color: #EFF6FF;   /* light blue background for contrast */
    border-left: 8px solid #E36414; /* orange accent bar */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* subtle shadow */
    text-align: center;           /* center text */
}

.about h2 {
    font-size: 19px;
    color: #1E3A8A;               /* dark blue heading */
    margin-bottom: 5px;
}

.about p {
    font-size: 19px;
    color: #1F2933;               /* dark text */
    line-height: 1.6;
    font-family: Times New Roman;
}

.about-container {
    display: flex;
    align-items: center;        /* vertically center image and text */
    justify-content: center;    /* center the whole container horizontally */
    gap: 10px;                  /* space between image and text */
    max-width: 900px;
    margin: 20px auto;          /* center section on page */
    padding: 10px;
    background-color: #EFF6FF;  /* light blue */
    border-left: 8px solid #E36414; /* orange accent */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;          /* center text inside container */
}

.about-text h2 {
    font-size: 19px;
    color: #1E3A8A;
    margin-bottom: 5px;
}

.about-text p {
    font-size: 19px;
    line-height: 1.6;
    color: #1F2933;
}

.about-pic {
    width: 140px;            /* adjust size as needed */
    height: 140px;
    border-radius: 30%;      /* circular image */
    object-fit: cover;       /* crop to fill circle */
    border: 4px solid #1E3A8A; /* optional border accent */
}

@media (max-width: 700px) {
    .about-container {
        flex-direction: column; /* image above text */
        text-align: center;
    }
    .about-pic {
        margin-bottom: 20px;
    }
}


/* Contact Section */
.contact {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px 10px;
    background-color: #EFF6FF;       /* soft blue */
    border-left: 8px solid #E36414;  /* orange accent */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact h2 {
    font-size: 20px;
    color: #1E3A8A;
    margin-bottom: 15px;
}


.contact-container {
    display: flex;
    align-items: center;        /* vertical alignment */
    justify-content: center;    /* center horizontally */
    gap: 30px;                  /* increased gap between image and text */
    flex-wrap: wrap;            /* stack on smaller screens */
}


.contact-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1E3A8A;  /* optional border */
}

.contact-info p {
    font-size: 17px;
    color: #1F2933;
    line-height: 1.5;
}

.contact-info a {
    color: #E36414;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #064E3B;
}

/* Contact Form */
.contact-form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid #1E3A8A;
    border-radius: 8px;
    font-size: 13px;
    resize: none;
}

.contact-form button {
    background-color: #E36414;
    color: white;
    border: none;
    padding: 8px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #064E3B;
}

/* Responsive for mobile */
@media (max-width: 700px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-pic {
        margin-bottom: 10px;
    }
}


/* Articles Section */
.articles {
    max-width: 1100px;
    margin: 20px auto;
    text-align: center;
}

.articles h2 {
    font-size: 16px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.articles-container {
    display: flex;
    flex-direction: column;   /* stack items vertically */
    gap: 5px;                /* space between articles */
    max-width: 900px;
    margin: 0 auto;
}

.article-card {
    background-color: #EFF6FF;
    padding: 10px 10px;
    border-radius: 10px;
    border-left: 6px solid #E36414; /* side accent instead of top */
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    text-align: left;  /* important for readability */
    transition: transform 0.2s;
}

.article-card:hover {
    transform: translateX(5px); /* subtle move right */
}

.article-card p {
    color: #1F2933;
    font-size: 17px;
    margin-bottom: 0px;
}

.article-card a {
    text-decoration: none;
    color: #E36414;
    font-weight: bold;
}

.article-card a:hover {
    color: #064E3B;
}

/* Hover effect */
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


.author-name {
    font-size: 18px;
    color: #1E3A8A;
    text-align: center;
    font-weight: bold;
}



/* Journal Section */
.journal {
    max-width: 1100px;
    margin: 20px auto;
    text-align: center;
}

.journal h2 {
    font-size: 16px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.journal-container {
    display: flex;
    flex-direction: column;   /* stack items vertically */
    gap: 5px;                /* space between articles */
    max-width: 900px;
    margin: 0 auto;
}

.journal-card {
    background-color: #EFF6FF;
    padding: 10px 10px;
    border-radius: 10px;
    border-left: 6px solid #E36414; /* side accent instead of top */
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    text-align: left;  /* important for readability */
    transition: transform 0.2s;
}

.journal-card:hover {
    transform: translateX(5px); /* subtle move right */
}

.journal-card p {
    color: #1F2933;
    font-size: 13px;
    margin-bottom: 0px;
}

.journal-card a {
    text-decoration: none;
    color: #E36414;
    font-weight: bold;
}

.journal-card a:hover {
    color: #064E3B;
}

/* Hover effect */
.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}





/* Blog Section */
.blog {
    max-width: 1100px;
    margin: 20px auto;
    text-align: center;
}

.blog h2 {
    font-size: 16px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.blog-container {
    display: flex;
    flex-direction: column;   /* stack items vertically */
    gap: 5px;                /* space between articles */
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    background-color: #EFF6FF;
    padding: 10px 10px;
    border-radius: 10px;
    border-left: 6px solid #E36414; /* side accent instead of top */
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    text-align: left;  /* important for readability */
    transition: transform 0.2s;
}

.blog-card:hover {
    transform: translateX(5px); /* subtle move right */
}

.blog-card p {
    color: #1F2933;
    font-size: 13px;
    margin-bottom: 0px;
}

.blog-card a {
    text-decoration: none;
    color: #E36414;
    font-weight: bold;
}

.blog-card a:hover {
    color: #064E3B;
}

/* Hover effect */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}




/* Books Section */
.books {
    max-width: 1100px;
    margin: 20px auto;
    text-align: center;
}

.books h2 {
    font-size: 16px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.books-container {
    display: flex;
    flex-direction: column;   /* stack items vertically */
    gap: 5px;                /* space between articles */
    max-width: 900px;
    margin: 0 auto;
}

.book-card {
    background-color: #EFF6FF;
    padding: 10px 10px;
    border-radius: 10px;
    border-left: 6px solid #E36414; /* side accent instead of top */
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    text-align: left;  /* important for readability */
    transition: transform 0.2s;
}

.book-card:hover {
    transform: translateX(5px); /* subtle move right */
}

.book-card p {
    color: #1F2933;
    font-size: 13px;
    margin-bottom: 0px;
}

.book-card a {
    text-decoration: none;
    color: #E36414;
    font-weight: bold;
}

.book-card a:hover {
    color: #064E3B;
}

/* Hover effect */
.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* videos */
.videos {
    max-width: 900px;
    margin: 40px 0; /* left aligned like your about section */
    margin-left:300px;
}

.videos h2 {
    color: #1E3A8A;
    margin-bottom: 15px;
}

.videos p {
    color: black;
    font-size:25px;
    font-weight:bold;
    margin-bottom: 20px;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item iframe {
    width: 100%;
    height: 415px;
    border-radius: 10px;
}
