body.page-template-page-principles {
    background-color: #0a0a0a;
    color: #eaeaea;
    font-family: "Inter", sans-serif;
}

/* ============================
   HERO
============================ */
.principles-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.principles-hero-image {
    background-image: url('../images/princioles-hero.webp');
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.principles-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.principles-hero-inner {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 640px;
    padding-left: 8%;
    color: #fff;
}

.principles-title {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 10px;
}

.principles-title-line {
    width: 60px;
    height: 2px;
    background: #c6a15b;
    margin-bottom: 28px;
}

.principles-subtitle {
    font-size: 22px;
    margin-bottom: 18px;
    color: #dcdcdc;
}

.principles-text {
    font-size: 18px;
    line-height: 1.7;
    color: #cfcfcf;
}

/* ============================
   PRINCIPLES LIST
============================ */
.principles-list {
    padding: 120px 8%;
    max-width: 900px;
    margin: 0 auto; /* وسط قرار گرفتن کل بلوک */
}

/* ردیف هر Principle */
.principle-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* آیکون‌ها */
.principle-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    opacity: 0.9;
}

/* انواع آیکون‌ها */
.principle-icon.circle {
    border-radius: 50%;
}

.principle-icon.square {
    border-radius: 4px;
}

.principle-icon.line {
    width: 40px;
    height: 2px;
    background: #fff;
    border: none;
}

.principle-icon.texture {
    background: repeating-linear-gradient(
        45deg,
        #fff,
        #fff 2px,
        transparent 2px,
        transparent 4px
    );
}

.principle-icon.hourglass {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 60% 50%, 100% 100%, 0 100%, 40% 50%);
}

/* متن‌ها وسط ولی چپ‌نویس */
.principle-content {
    flex: 1;
    text-align: left;      /* چپ‌نویس */
    margin: 0 auto;        /* وسط قرار گرفتن */
}

/* تیتر و متن */
.principle-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}

.principle-content p {
    font-size: 16px;
    color: #cfcfcf;
}

/* خط جداکننده */
.principle-divider {
    width: 100%;
    height: 1px;
    background: #222;
    margin: 40px 0;
}

/* نقل‌قول آخر */
.principles-quote {
    margin-top: 80px;
    font-size: 22px;
    color: #fff;
    opacity: 0.9;
    text-align: left;
}

/* ============================
   FOOTER
============================ */
.principles-footer {
    padding: 80px 8% 60px;
    border-top: 1px solid #222;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: #222;
    margin-bottom: 20px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #aaa;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-center {
    flex: 1;
    text-align: center;
    color: #fff;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-link {
    color: #c6a15b;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

