@font-face {
    font-family: 'Josefin Sans';
    src: url('../fonts/JosefinSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #2F1718;
    --secondary-color: #9F7B3C;
    --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: -3px;
}

.site-header {
    background: #fbf7f1;
}

.site-navbar {
    padding: 18px 0;
    background: transparent;
}

.site-brand {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.site-nav .nav-link {
    font-size: 14px;
    color: var(--primary-color);
    padding-left: 14px;
    padding-right: 14px;
}

.site-nav .nav-link:hover {
    color: var(--primary-color);
}

.site-login {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.site-call-btn {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1;
}

.site-call-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

/* Hero Section */
.hero {
    background: #fbf7f1;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    height: 610px;
}

.hero .brick {
    position: absolute;
    bottom: -10%;
    left: -4%;
    width: 300px;
    height: auto;
    opacity: 0.35;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/gold-bricks.png) no-repeat left bottom;
    background-size: 520px auto;
    opacity: 0.35;
    z-index: 0;
} */

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 10px;
    position: relative;
}


.hero-kicker {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
    color: #151515;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 4px;
    color: #151515;
    line-height: 0.9;
}

.hero-title-accent {
    background: linear-gradient(180deg,
            #f5d27a 0%,
            #d4a94a 40%,
            #b88a2c 70%,
            #8a6420 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* BLACK STROKE */
    -webkit-text-stroke: 1.5px #151515;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #151515;
}

.hero-text {
    /* font-family: 'Roboto', sans-serif; */
    /* font-size: 14px; */
    /* line-height: 1.8; */
    /* color: #444; */
    /* max-width: 460px; */
    margin-bottom: 22px;
}

.btn {
    background: #b38b3a;
    border: 1px solid #b38b3a;
    color: #fff;
    border-radius: 999px;
    padding: 15px 24px;
    font-size: 15px;
    line-height: 1;
}

.hero-cta:hover {
    background: #9d7831;
    border-color: #9d7831;
    color: #fff;
}

.hero-art {
    position: relative;
    min-height: 360px;
}

.hero-books {
    position: absolute;
    right: 0;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* max-width: 100%; */
    height: auto;
}

.hero-books img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .hero {
        padding: 36px 0 54px;
        height: 100% !important;
    }

    .hero::before {
        background-size: 360px auto;
        opacity: 0.25;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-kicker {
        font-size: 22px;
    }

    .hero-books {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 28px;
        width: 100%;
    }
}

/* Awards Section */
.awards-strip {
    background: #9F7B3C;
    padding: 60px 0;
}

.awards-medals {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 56px; */
    overflow: hidden;
}

.awards-medals img {
    width: 100%;
    max-width: 230px;
}

.awards-strip-text {
    color: #fff;
}

.awards-strip-text h6 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
}


.awards-strip-text a {
    font-size: 15px;
    text-decoration: none;
    opacity: 0.95;
}

.awards-main {
    background: #F9F3EE;
    padding: 80px 0 70px;
}

.heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 26px;
}

.heading h2 {
    color: #2F1718;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -3px;
}


.awards-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px;
    /* max-width: 820px; */
    margin: 0 auto;
}

.awards-stat-meta{
    width: 100%;
    text-align: center;
}
.awards-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 35px;
    border: 2px dotted rgb(0 0 0);
}

.awards-stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #9F7B3C;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.awards-stat-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.awards-stat-value {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 43px;
    font-weight: 400;
    color: #2F1718;
    line-height: 1;
}

.awards-stat-label {
    font-size: 16px;
    color: #6a5a5a;
    margin-top: 2px;
}

@media (max-width: 991.98px) {
    .awards-strip-text {
        margin-top: 18px;
        text-align: center;
    }

    .awards-strip-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .awards-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* About Author Section */
.about-author {
    background-image: url('../images/about-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-author-media {
    position: relative;
    /* min-height: 520px; */
}

.about-author-photo {
    position: relative;
    z-index: 1;
    width: 90%;
    height: auto;
    display: block;
}

.about-author-title {
    font-size: 48px;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 10px;
    /* letter-spacing: -1px; */
}

.about-author-text {
    font-size: 14px;
    line-height: 1.9;
    color: #6a5a5a;
    max-width: 560px;
    margin-bottom: 25px;
}

.about-author-quote {
    background: #E6D4D5;
    border-radius: 12px;
    padding: 35px;
    max-width: 520px;
    position: relative;
    margin: 6px 0 14px;
}

.about-author-quote p {
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
    color: #000000;
}

.about-author-quote-mark {
    position: absolute;
    right: 18px;
    top: -27px;
}

.about-author-sign {
    /* display: flex; */
    align-items: flex-end;
    gap: 12px;
    margin-top: 6px;
}

.about-author-sign img {
    width: 200px;
    height: auto;
    display: block;
    margin-top: 25px;
}

.about-author-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-author-role {
    font-size: 14px;
    color: #6a5a5a;
    margin-top: 2px;
}

.about-author-logos {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.about-author-logo {
    font-size: 11px;
    color: #8b7a7a;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(139, 122, 122, 0.35);
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 991.98px) {
    .about-author {
        padding: 54px 0 60px;
    }

    .about-author-media {
        min-height: auto;
        margin-bottom: 22px;
    }

    .about-author-circle {
        left: -50px;
        top: -30px;
        width: 260px;
        height: 260px;
    }

    .about-author-photo {
        width: 260px;
        display: block;
        margin: auto;
    }
}

/* Book Section */
.books {
    background-image: url('../images/books-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 80px;
}

.books-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.books-heading h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.books-heading p {
    font-size: 12px;
    line-height: 1.8;
    color: #6a5a5a;
    margin: 0;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
}

.book-card {
    text-align: center;
}

.book-card-cover {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.book-card-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.book-card-rating {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 3px;
    color: #f0b429;
    font-size: 22px;
    margin-bottom: 10px;
}

@media (max-width: 991.98px) {
    .books {
        padding: 54px 0 60px;
    }

    .books-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 575.98px) {
    .books-grid {
        grid-template-columns: 1fr;
    }
}

/* Manuscripts Section */
.manuscripts {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/gold-bricks.png');
    /* background-size: cover; */
    background-position: left center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.manuscripts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(159, 123, 60, 0.82);
    z-index: 0;
    pointer-events: none;
}

.manuscripts .container {
    position: relative;
    z-index: 1;
}

.manuscripts-metrics {
    max-width: 520px;
}

.manuscripts-metric {
    margin-bottom: 35px;
}

.manuscripts-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

.manuscripts-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.35);
    position: relative;
    border-radius: 50px;
}

.manuscripts-bar-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
}

/* Cta Section */
.cta {
    background: #E3C67B;
    padding: 80px 0;
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-form {
    /* max-width: 520px; */
}

.cta-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #2F1718;
    font-size: 14px;
    /* margin-bottom: 12px; */
}

.cta-form input::placeholder {
    color: rgba(47, 23, 24, 0.6);
}

.cta-for .btn {
    width: 100%;
    padding: 12px 16px;
    background: #2F1718;
    color: #E3C67B;
    border: none;
    border-radius: 30px;
    /* font-size: 14px; */
    /* font-weight: 600; */
    cursor: pointer;
    /* transition: all 0.3s ease; */
    line-height: 0;
    height: auto;
}

.cta-form .btn:hover {
    background: #1a0f0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 23, 24, 0.3);
}

.cta-form {
    margin-top: 20px;
    display: inline-flex;
    gap: 20px;
    width: 100%;
}

.cta-form input:focus {
    outline: none;
    border-color: #E3C67B;
    box-shadow: 0 0 0 3px rgba(227, 198, 123, 0.1);
}

/* Events Section */
.events {
    background: #fbf7f1;
    padding: 80px 0;
}

.events-title {
    font-size: 40px;
    line-height: 1.05;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -2px;
}

.events-subtitle {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.8;
    color: #6a5a5a;
    max-width: 520px;
}

.events-list {
    margin-top: 26px;
    display: grid;
    gap: 26px;
}

.events-card {
    background: linear-gradient(90deg, #f0dba9, #e5c97e);
    border-radius: 22px;
    padding: 22px 22px;
    overflow: hidden;
}

.events-card--alt {
    background: linear-gradient(90deg, #f0dba9, #e5c97e);
}

.events-date {
    text-align: center;
}

.events-day {
    font-size: 41px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Josefin Sans';
}

.events-month {
    font-size: 16px;
    color: rgba(47, 23, 24, 0.7);
    margin-top: 2px;
    margin-bottom: 20px;
}

.events-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.events-point {
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
    font-size: 12px;
    color: rgba(47, 23, 24, 0.85);
}

.events-point::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.events-image {
    display: flex;
    justify-content: center;
}

.events-image img {
    width: 190px;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,0.25));
}

.events-image--left {
    justify-content: flex-start;
}

@media (max-width: 991.98px) {
    .events {
        padding: 54px 0;
    }

    .events-title {
        font-size: 32px;
    }

    .events-subtitle {
        margin-top: 12px;
    }

    .events-date {
        margin-bottom: 14px;
    }

    .events-points {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 10px 0 14px;
    }

    .events-image--left {
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials {
    background: #fbf7f1;
    padding: 80px 0;
}

.testimonials-wrap {
    position: relative;
}

.testimonials-panel {
    background: #9F7B3C;
    border-radius: 18px;
    padding: 100px 50px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-title {
    color: #fff;
    font-size: 48px;
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -1px;
}

.testimonials-stars {
    color: #f4c24f;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials-quote {
    color: rgba(255, 255, 255, 0.75);
    font-size: 38px;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonials-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.9;
    max-width: 420px;
    margin: 0 0 18px;
}

.testimonials-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.testimonials-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.testimonials-name {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    font-family: 'Josefin Sans';
}

.testimonials-role {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.testimonials-image {
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-left: -40px;
    margin-top: 18px;
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22); */
}

.testimonials-image img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

.testimonials-slide {
    display: none;
}

.testimonials-slide.is-active {
    display: block;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.testimonials-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    padding: 0;
}

.testimonials-dot.is-active {
    width: 18px;
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
    .testimonials {
        padding: 54px 0;
    }

    .testimonials-panel {
        border-radius: 18px;
        padding: 34px 26px;
        min-height: auto;
    }

    .testimonials-image {
        border-radius: 18px;
        margin-top: 16px;
        margin-left: 0;
        height: 280px;
    }
}

/* Footer Section */
.footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 70px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background 0.2s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.footer-nav-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: #9F7B3C;
}

.footer-cta-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.footer-cta-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.footer-cta-form {
    display: flex;
    gap: 10px;
}

.footer-cta-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 14px;
}

.footer-cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-cta-form button {
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    background: #9F7B3C;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-cta-form button:hover {
    background: #8a6a35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
}

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-cta-form {
        flex-direction: column;
    }

    .footer-cta-form button {
        width: 100%;
    }
}
