@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "EB Garamond", serif;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}
  


h1,
h2,
h3,
h4,
h5,
h6,p {
  padding: 0;
  margin: 0;
}

:root {
  --c1: rgb(235, 227, 183); /* Black */
  --c2: #fff; /* White */
  --c3: #171717; /* Red */
  --c4: #0b0b0b; /* Background Color */
  --c5: #6b6b6b; /* Background Color */
  --c6: #8e8e8e;
  --f1: arima_madurairegular;
}

.nav>ul {
    display: flex;
    gap: 30px;
}

.navbar {
    justify-content: center;
    gap: 30px;
    padding: 0px;
}

.nav ul li a {
    font-size: 17px;
    color: var(--c1);
    text-transform: uppercase;
    font-weight: 600;
}

.social-links ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.social-links ul li a {
    font-size: 17px;
    color: #000000;
    background: var(--c1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    transition: .3s all;
}
body {
    background: #0f1624;
}
.nav>ul>li {
    color: var(--c1);
    position: relative;
    padding: 30px 0px 30px;
}

.social-links ul li a:hover {/* transform: scale(1.1); */transform: translateY(-3px);}
.page-template-home header.header {
    /* border-bottom: 0.5px solid #e9e3b55c; */
    position: absolute;
    width: 100%;
    top: 0px;
}

.home-banner{
	background-image:url(/wp-content/uploads/2025/06/homeimage_desktop.jpg);
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-banner-main img {
    width: unset;
}

.home-banner-main {
    text-align: center;
}

.home-banner-main h1 {text-transform: uppercase;font-size: 55px;letter-spacing: 2px;text-shadow: 0em 0em 0.3em #000000;color: var(--c1);}

.home-banner-main h4 {
    text-transform: uppercase;
    font-size: 30px;
    color: #ECE3B7 !important;
    letter-spacing: 2px;
    text-shadow: 0em 0em 0.3em #000000;
    margin-top: 5px;
}
.nav ul li a:hover {
    text-decoration: underline;
}
.book-cover-img img {
    width: 80%;
    margin: 0 auto;
}

.spacer {
    padding: 120px 0px 120px;
}

.Box-content h2 {
    color: var(--c1);
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 10px;
}

.Box-content p {
    color: #9b7a3e;
    font-size: 20px;
    font-weight: 500;
    padding-top: 10px;
}

.primary-btn a {
    color: #091219;
    background-image: linear-gradient(106deg, #f9f2c5 0%, #7c6434 100%);
    padding: 4px 0px;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
}

.primary-btn a:hover {
    background: linear-gradient(314deg, #f9f2c5 0%, #7c6434 100%);
}
.Box-content p strong {
    font-weight: 900;
}
.Box-content .social-links {
    margin-top: 30px;
}

.bio-img img {
    width: 75%;
    margin: 0 auto;
    height: 700px;
    object-fit: cover;
    border: 2px solid var(--c1);
}
.newsletter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* responsive on mobile */
  background-image: linear-gradient(106deg, #f9f2c5 0%, #7c6434 100%);
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgb(235 227 183);
}

.newsletter-left {
  flex: 1;
  min-width: 280px;
}

.newsletter-title {
  font-size: 46px;
  margin-bottom: 10px;
  font-weight: 700;
}

.newsletter-text {
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.newsletter-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background-color: #2563eb;
}

.newsletter-right {
  flex: 1;
  display: flex;
  justify-content: end;
}

.book-image {
  width: 50%;
  border-radius: 12px;
}
.spacer-bottom {
    padding-bottom: 120px;
}
.contact-wrapper {
}

.contact-info h2 {
  font-size: 50px;
  color: var(--c1);
  font-weight: 600;
}

.contact-info .subtitle {
  font-size: 22px;
  color: #9b7a3e;
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-info .info p {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--c1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid var(--c1);
  font-size: 20px;
  background: unset;
  color: var(--c1);
}

.contact-form button {}

.contact-form button:hover {
  background-color: #0056b3;
}
.contact-form label {
    color: var(--c1);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border: 1px solid var(--c1);
}
.contact-info .info p a {
    color: var(--c1);
    text-decoration: underline;
}

.contact-info .info p a:hover {
    text-decoration: auto;
}
footer.footer {
    background-image: linear-gradient(106deg, #f9f2c5 0%, #7c6434 100%);
    text-align: center;
    padding: 25px 0px 25px;
}

footer.footer p {
    font-weight: 600;
    font-size: 17px;
}

footer.footer p a {
    color: var(--c1);
    text-decoration: underline;
}

footer.footer p a:hover {
    text-decoration: auto;
}
.nav ul li a i {
    font-size: 15px;
    margin-left: 3px;
}
ul.sub-menu {
    position: absolute;
    top: 100px;
    width: 350px;
    visibility: hidden;
    opacity: 0;
    transition: .4s all;
}

.nav ul li:hover .sub-menu {
    top: 70px;
    visibility: visible;
    opacity: 1;
}
.home-banner-main img {
    width: 20%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.mebile-navbar {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #0f1624;
    top: 0px;
    text-align: center;
    padding-top: 150px;
    left: -100em;
    transition: .8s all;
}

.mebile-navbar ul li a {
    font-size: 22px;
    color: var(--c1);
    text-transform: uppercase;
    font-weight: 600;
}

.mebile-navbar ul li {
    position: relative;
}

.close-icon i {
    color: var(--c1);
    font-size: 32px;
    position: absolute;
    top: 20px;
    right: 30px;
}

.mobile-menu {padding-top: 30px;}

.mobile-icon {
    text-align: end;
}

.mobile-icon span i {
    color: var(--c1);
    font-size: 28px;
}
.mebile-navbar.active{
	left:0px;
}
.mebile-navbar ul.sub-menu {
    position: unset;
    width: unset;
    visibility: visible;
    opacity: 1;
    padding: 10px 20px 0px 20px;
}
.wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    color: white;
}

.wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block.is-large {
    color: white;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {color: #091219;background-image: linear-gradient(106deg, #f9f2c5 0%, #7c6434 100%);padding: 4px 0px;width: 100%;text-align: center;font-size: 22px;font-weight: 500;margin-top: 30px;}