/* =====================================
   L.A. MOGLIÉ WEBSITE
   Main Stylesheet
===================================== */

/* =====================================
   FONTS
===================================== */

	@font-face {
		font-family: "Book Antiqua";
		src: url("../fonts/Book Antiqua Regular.ttf") format("truetype");
		font-weight: normal;
		font-style:  normal
}

	@font-face {
		font-family: "Book Antiqua Bold";
		src: url("../fonts/book-antiqua-bold.ttf") format("truetype");
		font-weight: bold;
		font-style:  normal
}

	@font-face {
		font-family: "Book Antiqua Italic";
		src: url("../fonts/Book Antiqua Italic.ttf") format("truetype");
		font-weight: normal;
		font-style:  italic
}

	@font-face {
		font-family: "Sinoreta Alternate";
		src: url("../fonts/SinoretaAlternate-Bold.otf") format("opentype");
		
}

/* =====================================
   GLOBAL STYLES/BODY
===================================== */

body {

    margin: 0;
    padding: 0;
	 
	font-family: "Book Antiqua", serif;

    background-color: #000000;
    background-image: url("../images/bg3674612292.jpg");
    background-repeat: no-repeat;
    background-position: top right;
	background-size: 45%;
    background-attachment: fixed;

    color: #FFFFFF;
    
}

	strong {
		font-weight: bold;
	}


/* =====================================
   HEADER
===================================== */

header {

    display: flex;
    align-items: center;
	
	padding: 22px 40px;

}

.logo img {

    width: 450px;
    height: auto;

}

.main-nav {

    flex: 1;
    text-align: center;
	font-size: 1.6rem;
	margin-top: 20px;
	display: flex;
    justify-content: center;
    gap: 10px;


}

.main-nav a {

    position: relative;

    color: #FFFFFF;

    text-decoration: none;

    padding: 14px 14px;
    
    z-index: 1;
 
 }


.main-nav a::before {

 content: "";

    position: absolute;

    top: -10px;
    bottom: -10px;
    left: -15px;
    right: -15px;
    
    filter: blur(25px);

      background: rgba(255,0,0,.35);



    opacity: 0;

    transition: opacity .4s ease;
    
    z-index: -1;
 
 }




.main-nav a:hover {

    color: #ffffff;
	
}

.main-nav a:hover::before {

    opacity: 1;

}


/* =====================================
   LANDING SECTION
===================================== */

	.landing-section {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
}

	.tagline {
		max-width: 650px;
		margin: 40px auto 15px;
}

	.tagline p {
		font-size: 2rem;
		font-weight: normal;
		line-height: 1.4;
		color: white;
}

	.decorative-initial {
		font-family: "Sinoreta Alternate";
		font-size: 4rem;
		line-height: 0;
		position: relative;
		top: -6px;
}

	.books-showcase {
		position: relative;
		display: flex;
		justify-content: center;
		margin-top: 5px;
}

	.books-showcase::before {
		content: "";
		position: absolute;

		width: 1000px;
		height: 450px;

		left: 50%;
		top: 50%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        ellipse at center,
        rgba(170,0,0,.55) 0%,
        rgba(170,0,0,.30) 35%,
        rgba(170,0,0,.12) 70%,
        transparent 100%
    );

    z-index: 0;
    pointer-events: none;
}



	.books-showcase img {
		position: relative;
		z-index: 1;

		width: 700px;
		height: auto;
		max-width: 80%;
    
}

/* =====================================
   ABOUT PAGE
===================================== */

	.about-heading {
		text-align: center;
		margin: 40px 0 50px;
}

	.about-heading p {
		font-family: "Book Antiqua", serif;
		font-size: 2rem;
		line-height: 1.4;
		color: white;
}

	.about-initial {
		font-family: "Sinoreta Alternate";
		font-size: 4rem;
		line-height: 0;
		position: relative;
		top: 12px;    /* Adjust until it looks right */
}	
	
	.bookshelf-showcase {
		display: flex;
		justify-content: center;
		margin-top: 20px;
}

	.bookshelf-showcase img {
		width: 400px;
		max-width: 70%;
		height: auto;
}

/* =====================================
   ABOUT CONTENT
===================================== */

	.about-content {

		max-width: 850px;
		margin: 50px auto;
		padding: 0 20px;

}

	.about-intro {
		margin-left: 23px;
		margin-bottom: 40px;
		font-size: 1.5rem;
}

	.about-bio {

		font-family: "Book Antiqua", serif;
		font-size: 1.2rem;
		line-height: 1.9;
		color: white;

}

	.about-bio p {

		margin-bottom: 28px;

}

	.author-photo {

		float: left;

		width: 150px;
		height: auto;

		margin: 40px 15px 20px 25px;

		border-radius: 4px;

}

/* =====================================
   WORKS PAGE
===================================== */

	.works-heading {
		text-align: center;
		margin: 40px 0 50px;
}

	.works-heading p {
		font-family: "Book Antiqua", serif;
		font-size: 2rem;
		line-height: 1.4;
		color: white;
}

	.works-initial {
		font-family: "Sinoreta Alternate";
		font-size: 4rem;
		line-height: 0;
		position: relative;
		top: 12px;    /* Adjust until it looks right */
}	
	
	.woman-reading {
		display: flex;
		justify-content: center;
		margin-top: 20px;
}

	.woman-reading img {
		width: 400px;
		max-width: 70%;
		height: auto;
}

/* =====================================
   WORKS CONTENT
===================================== */

	.works-content {

		max-width: 850px;
		margin: 70px auto;
		padding: 0 20px;

}

	.works-text {

		font-family: "Book Antiqua", serif;
		font-size: 1.2rem;
		line-height: 1.9;
		color: white;

}

	.works-text p {

		margin-bottom: 28px;

}

/* =====================================
   WORKS BOOK MENU
===================================== */

	.works-directory {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    max-width: 900px;
    margin: 70px auto;
}

	.published,
	.in-the-works {
		text-align: center;
}

	.published img {
		height: 200px;
		width: auto;
		display: block;
		margin: 0 auto 18px;

}

	.works-books {
		display: flex;
		justify-content: center;
		gap: 70px;
}

	


	.future-book {
		text-align: center;
}

	.published h2,
	.in-the-works h2 {
		color: #c8a24d;
}

	.in-the-works h2 {
		position: relative;
		left: -20px;
}
	
	

	.published h4,
	.future-book h4 {
		color: white;
		font-size: 1.4rem;
		font-weight: normal;
		min-height: 60px;
		margin-bottom: 12px;
}
	

	.published img,
	.future-book img {
		height: 220px;
		width: auto;
		display: block;
		margin: 0 auto 18px;
}


	.book-link {
		color: #c8a24d;
		text-decoration: none;
		font-size: 1.1rem;
}

	.book-link:visited {
		color: #c8a24d;
}

	.book-link:hover,
	.book-link:focus {
		color: #f2d27a;
}

/* =====================================
   WELCOME SECTION
===================================== */

	.welcome {
		max-width: 950px;
		margin: 40px auto 30px;
		padding: 0 20px;
}

	.heading {
		font-size: 2rem;
		color: #c8a24d;
		text-align: left;
		margin-bottom: 40px;
}

	.message {
		font-size: 1.4rem;
		line-height: 1.9;
		color: white;
		text-align: left;
}

	.message p {
		margin-bottom: 25px;
}
	.author-link {
		color: #c8a24d;
		text-decoration: none;
		margin-left: 20px;
		transition: color 0.3s ease;
}

	.author-link:hover {
		color: #f2d27a;
}

/* =====================================
   TBT HERO
===================================== */

	.tbt-hero {

		display: flex;
		justify-content: center;
		align-items: center;

		gap: 80px;

		max-width: 1200px;

		margin: 20px auto;

}

	.tbt-book img {

		width: 380px;
		height: auto;
		margin: 20px auto;

}

	.tbt-heading {
		position: relative;
		top: -15px;
		text-align: center;

}

	.tbt-heading h1 {

		color: white;
		font-size: 3.2rem;
		font-weight: normal;

		margin-bottom: 10px;

}

	.tbt-heading h2 {

		color: #c8a24d;

		font-size: 1.8rem;
		font-weight: italic;

		margin-bottom: 35px;

}

	.tbt-tagline {

		color: white;

		font-size: 1.35rem;
		font-style: normal;

		margin-bottom: 40px;

}

	.tbt-mary-story {
		
		color: #c8a24d;
		font-size: 1.4rem;
		font-style: normal;
		
		margin-bottom: 30px;
	}

/* =====================================
   TBT AWARD
===================================== */


	.award-image img {

		width: 950px;
		height: auto;

}

/* =====================================
   STORY SECTION
===================================== */

	.story-wrapper {

		width: 78%;
		max-width: 1000px;

		margin: 40px auto;
}

	.story-heading {

		color: #c8a24d;

		font-size: 1.8rem;
		font-weight: normal;
		padding-left: -10px;

		margin-bottom: 20px;
}

	.story-panel {

		background: white;

		overflow: hidden;
		padding: 0 0 0;
}

	.story-intro {

		display: flex;

		align-items: flex-start;
}

	.grandma-panel {

		width: 240px;

		height: auto;

		display: block;

		flex-shrink: 0;
}

	.story-text {

		padding: 25px 60px 0 60px;

}

	.story-text p,
	.story-remainder p {

		color: #222;

		font-size: 1.15rem;

		line-height: 1.75;

		margin-bottom: 1.5em;

}

/* =====================================
   REVIEWS SECTION
===================================== */

	.reviews-section{
		text-align:center;
		margin:120px auto;
}

	.reviews-section h2{
		color:#c8a24d;
		font-size:2.3rem;
		font-weight:normal;
		margin-bottom:0px;
}

	.reviews-gif{
		width:800px;
		max-width:90%;
		height:auto;
}

/* ===========================
   Trailer & Buy Section
=========================== */

	.trailer-buy-section {

		display: flex;
		align-items: center;

		width: 100%;
		margin: 100px 0 10px 280px;;
		gap: 75px;

}

	.trailer-column {
		
		flex: 0 0 360px;
}

	.trailer-column video {

		width: 100%;
		max-width: 380px;
		
		max-height: 80vh;
		height: auto;

	}
	
	.buy-column {

		flex: 1;
		
}

	.buy-column h3{

		margin:40px 0 20px 0;

}

	.buy-link{

		color:#c8a24d;
		text-decoration:none;
		font-size:1.1rem;
		display:inline-block;
		margin-top:10px;
		margin-bottom:22px;

		transition:color .25s ease;
}

	.buy-link:hover{

		color:#e3bf69;
		text-decoration:none;

}

	.buy-link{
		display:block;
		color:#c8a24d;
		text-decoration:none;

		margin:20px 0;
}

.next-book-section {
    max-width: 900px;
    margin: 20px 0 0px 200px;
    padding: 10px 50px 50px;
    text-align: left;
}

.next-book-section h2 {
    margin-bottom: 25px;
}

.next-book-section p {
    max-width: 700px;
    margin: 0 0 20px;
    line-height: 1.8;
}

.next-book-section p {
    max-width: 700px;
    margin: 0 0 20px 0;
    line-height: 1.8;
}

.next-book-section .author-link {
    display: inline-block;
    margin: 10px 0 0 0;
}

/* ===========================
   In The Works
=========================== */

	.hero {
		max-width: 1000px;
		margin: 60px auto;
		padding: 0 30px;
}

	.hero h1 {
		text-align: center;
}

	.hero p {
		font-family: "Book Antiqua", serif;
		font-size: 1.4rem;      /* 32px */
		line-height: 1.7;
		color: #fff;
		text-align: left;
		max-width: 900px;
		margin: 0 auto 35px;
}

	.presence-section {
		width: 78%;
		
		max-width: 900px;
		margin: 90px auto;
		padding: 0 30px;
}

	.presence-section h2 {
		color: #c9a227;   /* Rich gold */
		font-size: 1.8rem;
		margin-bottom: 30px;
}

/* ==========================
   PRESENCE
========================== */
	
	.presence-panel {
		background: #fdfdfb;
		color: #222;
		padding:  45px 20px 25px;
		border-radius: 12px;
		box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

	.hook {
		font-size: 1.7rem;      /* keep the current size */
		font-style: italic;
		font-weight: bold;
		line-height: 1.5;
		text-align: left;
		margin: 0 0 35px 0;
}

	.presence-content {
		display: flex;
		align-items: flex-start;
		gap: 40px;
}

	.presence-images {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
}
	
	.presence-book {
		width: 240px;
		flex-shrink: 0;
		margin-top: 43px;   /* Adjust until it lines up perfectly */
}

	.reader-photo {
		width: 80%;
		max-width: 205px;
		height: auto;
		margin-top: 15px;
		border-radius: 8px;
		box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

	.presence-text {
		flex: 1;
		max-width: 640px;
}

	.presence-text p {
		font-size: 1.2rem;
		line-height: 1.4;
		color: #000000;
		margin-bottom: 28px;
		text-align: left;
}

	.question {
		font-style: italic;
		font-size: 1.5rem;
}

/* ==========================
   THE THREADS BETWEEN US
========================== */

	.threads-section {
		margin-top: 100px;
}

	.threads-section h2 {
		color: #c9a227;   
		max-width: 900px;
		margin: 0 auto 40px auto;
		text-align: left;
		padding-left: 30px;
}


	.threads-panel {
		background: #fdfdfb;
		color: #222;
		padding: 45px 20px 45px;
		border-radius: 12px;
		box-shadow: 0 10px 30px rgba(0,0,0,.35);

		max-width: 850px;
		margin: 0 auto;
}

	.threads-content {
		display: flex;
		align-items: flex-start;
		gap: 20px;
}

	.threads-text {
		flex: 1;
		max-width: 640px;
		padding-left: 30px;
}

	.threads-image {
		flex-shrink: 0;
}

	.threads-book {
		width: 240px;
		margin-top: 10px;
}

.works-contact {
    background: #000;
    color: #fff;
    text-align: left;

    max-width: 1080px;    /* match the white panel */
    margin: 50px auto 20px;
    padding: 0;
}

.works-contact p,
.works-contact a {
    margin-left: 95px;    /* adjust until it lines up with the text above */
}

.works-contact p {
    max-width: 700px;
    margin-bottom: 28px;
}

.works-contact a {
    display: inline-block;
    color: #c9a227;
    font-size: 1.0rem;
    font-weight: bold;
    text-decoration: none;
}

	

.works-contact a:hover {
    color: #e3c75f;
}

/*=========================================================
    CONTACT FORM
=========================================================*/

	.form-group {
		margin-bottom: 25px;
}

	.form-group label {
		display: block;
		margin-bottom: 8px;
		font-size: 1.1rem;
		font-weight: 600;
		color: #d4af37;
}

	.required {
		color: #d4af37;
}

	.form-group input,
	.form-group textarea {
		background: #ffffff;
		color: #000000;
}
	
	.form-group input,
	.form-group textarea {
		width: 100%;
		padding: 12px;
		font-size: 1rem;
		font-family: inherit;
		color: #ffffff;
		background: #ffffff;
		color: #000000;
		border: 1px solid #555;
		border-radius: 4px;
		box-sizing: border-box;
}

	.form-group input:focus,
	.form-group textarea:focus {
		outline: none;
		border-color: #d4af37;
}

	.form-group textarea {
		resize: vertical;
		min-height: 180px;
}

	.checkbox-group {
		margin: 25px 0;
		color: #ffffff;
}

	.checkbox-group label {
		display: flex;
		align-items: center;
		gap: 10px;
}

	.checkbox-group input[type="checkbox"] {
		width: auto;
}

	.button-group {
		margin-top: 30px;
		display: flex;
		justify-content: flex-end;
}

	.gold-button {
		background-color: #d4af37;
		color: #000000;
		border: none;
		padding: 14px 0;
		font-size: 1.1rem;
		font-weight: bold;
		cursor: pointer;
		border-radius: 4px;
		transition: background-color 0.3s ease;
		width: 180px;
		
}

	.gold-button:hover {
		background-color: #f2d675;
}

	.success-message {

		margin-bottom: 30px;
		padding: 18px 22px;

		background: rgba(176, 140, 48, 0.12);
		border: 1px solid #b08c30;

		border-radius: 6px;
		color: #ffffff;

}

	.success-message strong {

		color: #d4af37;

}

/*=========================================================
    CONTACT PAGE LAYOUT
=========================================================*/

.intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

	.contact-container {
		max-width: 900px;
		margin: 50px auto;
		padding: 0 20px;
}

	.content-panel {
		background: rgba(0, 0, 0, 0.65);
		padding: 40px;
		border: 1px solid rgba(212, 175, 55, 0.35);
		border-radius: 10px;
}

.direct-contact {
    margin-top: 0px;
    padding-top: 35px;
    border-top: 1px solid rgba(212,175,55,.35);
}
}

.direct-contact h2 {
    color: #d4af37;
    margin-bottom: 0px;
}

.direct-contact a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.15rem;
}

.direct-contact a:hover {
    text-decoration: none;
}

/* =====================================
   FOOTER
===================================== */

.footer {

    margin-top: 10px;

    padding: 22px 40px;

}

	.footer-bar {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 90px;

    width: 95%;
    max-width: 1200px;

    margin: 40px auto 0;
    padding: 20px 0;
}

	.footer-logo img {

		width: 165px;
		height: auto;

}

	.footer-menu {

		display: flex;
		gap: 30px;

}

	.footer-menu a {
		font-size: 1.15rem;
}

	.footer-social {

		display: flex;
		align-items: center;

		gap: 18px;

}

	.footer-social img {

		width: 22px;
		height: auto;

		transition: .2s ease;

}

	.footer-social img:hover {
		transform: scale(1.1);
}

	.footer-copyright {

		text-align: center;

		margin: 4px 0 20px;

		color: white;

		font-size: .8rem;

}

	.footer-menu a {

		color: white;
		text-decoration: none;

}

	.footer-menu a:hover {

		color: #c8a24d;

}


/* =====================================
   COPYRIGHT
===================================== */

	.footer-copyright {
	
		font-size: 0.7rem;
		color: #FFFFFF;

}

/*=========================================================
    MOBILE PHONES
=========================================================*/

@media (max-width: 768px) {

/*=========================================================
    HEADER
=========================================================*/

    header {

        display: flex;
		flex-direction: column;
		align-items: center;

		padding: 20px 15px;

}
	
/*=========================================================
    HOME PAGE
=========================================================*/	
	
	.logo {

		width: 100%;
		text-align: center;

}

	.logo img {

		width: 320px;
		max-width: 90%;
		height: auto;
		margin-bottom: 5px;

}

    .main-nav {

        justify-content: center;
        flex-wrap: wrap;
		
		margin-top: 0px;
		margin-bottom: 15px;


        gap: 15px;

        font-size: 1.35rem;

    }

    .main-nav a {

        padding: 10px 8px;

    }

	.tagline {

		max-width: 650px;
		margin: 5px auto 5px;

}

	.tagline p {

		font-size: 1.6rem;
		line-height: 1.4;

}

	.decorative-initial {

		font-size: 3rem;
		top: -4px;

}

	.welcome {

		max-width: 92%;
		margin-top: 0px auto;

}

	.heading {

		font-size: 1.2rem;
		text-align: normal;

}

	.heading h2 {
		margin: 0 0 10px 0;
}

	.message {

		font-size: 1.1rem;
		line-height: 1.6;
		text-align: left;

}

	.books-showcase {
		
		margin-top: 5px;
}

/*=========================================================
    WORKS.HTML
=========================================================*/

.works-directory{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.published,
.in-the-works {
    width: 100%;
    text-align: center;
}

.works-books {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.published,
.future-book {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.published img,
.future-book img{
    width:170px;
    height:auto;
}

.published h4,
.future-book h4{
    margin:15px 0 12px;
}

.book-link {
    display: inline-block;
    margin: 0 auto;
}

/*=========================================================
    TBT.HTML
=========================================================*/

.tbt-hero {
    flex-direction: column;
    gap: 15px;
    margin: 10px auto;
}

.tbt-book {
    margin-bottom: 20px;
}

.tbt-book img {
    width: 220px;
    margin: 0 auto;
}

.tbt-heading {
    top: 0;
}

.tbt-heading h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.tbt-heading h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.award-image img {

    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;

}

.tbt-tagline,
.tbt-mary-story {
    text-align: center;
}

.story-wrapper {
    width: 94%;
}

.story-intro {
    flex-direction: column;
    align-items: center;
}

.grandma-panel {
    width: 100%;
    max-width: 260px;
    margin-bottom: 20px;
}

.story-text {
    padding: 20px;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.reviews-section h2 {
    font-size: 1.4rem;
}

.trailer-buy-section {
    flex-direction: column;
    align-items: center;

    margin: 40px auto;
    gap: 40px;
}

.trailer-column {
    flex: none;
    width: 100%;
	margin-top: 25px;
    max-width: 360px;
}

.trailer-column video {
    width: 100%;
    max-width: 100%;
}

.buy-column {
    flex: none;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.next-book-section {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
    box-sizing: border-box;
}

.next-book-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.next-book-section p {
    max-width: 100%;
    margin: 0 0 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.next-book-section .author-link {
    display: inline-block;
    margin: 15px 0 0;
}

/*=========================================================
    INTHEWORKS.HTML
=========================================================*/

.presence-content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.presence-section h2 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.presence-panel {
    width: 92%;
    margin: 0 auto;
}

.presence-images {
    width: 100%;
}

.presence-book {
    width: 200px;
    margin-top: 0;
}

.reader-photo {
    width: 180px;
    max-width: 100%;
}

.question {
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 28px;
}

.presence-text {
    max-width: 100%;
}

.presence-text p {
    font-size: 1.1rem;
    line-height: 1.55;
}

.threads-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
}

.threads-panel {
    width: 76%;
	max-width: 290px;
    margin: 0 auto;
	padding: 45px 25px;
}

.threads-book {
    width: 180px;
    margin: 10px auto 20px;
    display: block;
}

.threads-text {
    max-width: 100%;
    padding: 0 15px;
}

.threads-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
}

.threads-section h2 {
    color: #c9a227;
    font-size: 1.5rem;
    line-height: 1.25;

    width: 90%;
    max-width: 340px;

    margin: 0 auto 20px;
    padding: 0;
    text-align: left;
}

/*=========================================================
    FOOTER
=========================================================*/

	.footer-bar {

		flex-direction: column;
		align-items: center;

		gap: 15px;

}

	.footer-logo img {

		width: 130px;
		margin-bottom: -8px;

}

	.footer-menu {

		justify-content: center;
		flex-wrap: wrap;

		gap: 15px;

}

	.footer-social {

		justify-content: center;

		gap: 18px;

}