/* AMISTIKA Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif !important;
    background-color: #F5F1EA;
    /* Warm ivory parchment */
    color: #2c2a29;
    /* Dark, soft text color for optimal readability */
    line-height: 1.8;
    font-size: 19px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
li {
    font-family: "Times New Roman", Times, serif !important;
}

/* Hero Section */
.hero {
    width: 100%;
    line-height: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content Section */
.content-section {
    background-color: #F5F1EA;
    padding: 4rem 1.5rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Buttons */
.button-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 6rem;
    justify-content: center;
    width: 100%;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-primary {
    background-color: #2c2a29;
    color: #F5F1EA !important;
    border: 1px solid #2c2a29;
}

.btn-primary:hover {
    background-color: transparent;
    color: #2c2a29 !important;
}

.btn-secondary {
    background-color: transparent;
    color: #2c2a29 !important;
    border: 1px solid #2c2a29;
}

.btn-secondary:hover {
    background-color: #2c2a29;
    color: #F5F1EA !important;
}

/* Responsive Buttons */
@media (max-width: 600px) {
    .button-section {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }
}

/* Text Section */
.text-section {
    max-width: 680px;
    width: 100%;
    margin: 0 auto 5rem;
    text-align: center;
}

.text-section p {
    margin-bottom: 0;
}

.text-section p.separator {
    margin: 3.5rem 0;
    font-size: 1.2rem;
    color: #8b5a2b;
    /* Elegant brownish-gold */
}

.text-section p.title {
    font-size: 1.6rem;
    letter-spacing: 4px;
    margin-bottom: 4rem;
    color: #1a242c;
}

.text-section p.quote {
    font-style: italic;
    color: #4a4845;
    margin: 0 auto;
    max-width: 600px;
}

/* Principles List */
.principles-list {
    text-align: left;
    display: block;
    margin: 0 auto;
    max-width: 600px;
}

.principles-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* Degrees List formatting */
.degrees-list {
    text-align: left;
    display: block;
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
}

.degrees-list h3 {
    text-align: center;
    font-weight: normal;
    margin-bottom: 3rem;
    font-size: 1.4rem;
}

.degree-group {
    margin-bottom: 2.5rem;
}

.degree-group h4 {
    font-weight: normal;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c2a29;
}

.degree-group ol {
    list-style-type: decimal;
    margin-left: 2rem;
}

.degree-group li {
    margin-bottom: 0.5rem;
}

/* Book Section */
.book-section {
    margin: 0 auto 5rem;
    max-width: 450px;
    width: 100%;
    padding: 0 1.5rem;
}

.book-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

/* Availability Section */
.availability-section {
    text-align: center;
    color: #633328;
    margin-bottom: 4rem;
    font-size: 1.15rem;
    line-height: 2.2;
    padding: 0 1rem;
}

/* Email Section */
.email-section {
    text-align: center;
    font-size: 1rem;
    opacity: 0.9;
    padding: 0 1rem;
}

.email-section a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 42, 41, 0.4);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.email-section a:hover {
    border-bottom-color: #2c2a29;
    opacity: 1;
}

/* Responsive adjustments for text content */
@media (max-width: 768px) {
    .text-section {
        font-size: 17.5px;
    }

    .content-section {
        padding: 3rem 1.25rem 5rem;
    }

    .text-section p.separator {
        margin: 2.5rem 0;
    }
}