/* ============================================
   INNER PAGES - Hero Banner & Content Layout
   (Shared styles for all inner pages)
   ============================================ */

/* --- Page Hero Banner --- */
.page-hero {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-main);
}

.page-hero .breadcrumb strong {
    color: var(--color-white);
    font-weight: 700;
    font-size: 28px;
}

.page-hero-tall {
    height: 400px;
}

.page-hero-title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 300;
    color: var(--color-white);
}

/* --- Page Content --- */
.page-content {
    padding: 50px 0;
}

.page-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
    text-decoration: underline;
}

.page-content ul {
    margin-bottom: 30px;
    padding-left: 5px;
}

.page-content ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
}

.page-content ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--color-text);
}

.page-content ul li sup {
    font-size: 10px;
}

/* --- Two Column Layout --- */
.two-col {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.col-left {
    flex: 1;
}

.col-right {
    flex: 1;
}

/* --- Page Buttons --- */
.page-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.btn-back {
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    padding: 10px 25px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-back:hover {
    background: #333;
    color: var(--color-white);
}

.btn-order {
    background: #1abc9c;
    color: var(--color-white);
    border: none;
    padding: 14px 30px;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-order:hover {
    background: #16a085;
    color: var(--color-white);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .two-col {
        flex-direction: column;
        gap: 30px;
    }

    .page-hero {
        height: 200px;
        padding-bottom: 25px;
    }

    .page-hero .breadcrumb {
        font-size: 16px;
    }

    .page-hero .breadcrumb strong {
        font-size: 22px;
    }

    .page-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }
}
