/* ============================================
   ORDER BOOK PAGE — Table & Layout Styles
   ============================================ */


/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
    background: 
/*         linear-gradient(135deg, rgba(66, 132, 219, 0.85), rgba(41, 234, 196, 0.75)), */
        url('/wp-content/themes/ventures/images/launching-grider-banner.jpg') center center / cover no-repeat;
    padding: 100px 20px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
	
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.6)); /* extra darkening layer, adjust/remove as needed */
	z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 88px;
  font-weight: 800;
  margin: 12px 0 10px;
  font-family: 'Baloo 2', sans-serif;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ─── SECTION LABEL (shared) ─── */
.section-label {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.section-label span {
  /* background: #0ECCA8; */
  color: #000;
  padding: 2px 16px;
  border-radius: 20px;
  font-size: 47px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 35px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: 'Baloo 2', sans-serif;
  text-align: center;
}


/* --- Page Wrapper --- */
.srj-order-book-wrap {
    width: 100%;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 40px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.srj-order-book-title {
    text-align: center;
    margin-bottom: 20px;
	font-size:32px;
	text-transform:uppercase;
}

/* --- Table Base Styles --- */
.srj-order-book-table {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed;
}

.srj-order-book-table th,
.srj-order-book-table td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
    word-wrap: break-word;
	font-size:26px;
}

.srj-order-book-table th {
    background: #0b2545;
    color: #fff;
}

.srj-order-book-table tr:nth-child(even) {
    background: #f7f9fb;
}

/* ═════════════════════════════════════════════
   ORDER BOOK — DESCRIPTION SECTION
═════════════════════════════════════════════ */
.order-book-description{
    padding:80px 20px;
    background:#fff;
    text-align:center;
}

.order-book-description .container{
    max-width:80vw;
    margin:0 auto;
}

.order-book-description .section-label span{
    font-family:"Baloo 2", sans-serif;
    font-size:28px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    background:linear-gradient(135deg,#4284DB,#29EAC4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.order-book-description h2{
    font-family:"Baloo 2", sans-serif;
    font-size:32px;
    font-weight:700;
    color:#1a1a2e;
    margin:12px 0 20px;
}

.order-book-description p{
    font-family:"Baloo 2", sans-serif;
    font-size:32px;
    line-height:1.7;
    color:#333;
	text-align:justify;
	font-weight:800;
}


/* ============================================
   RESPONSIVE — Tablets (768px and below)
   ============================================ */
@media (max-width: 768px) {
	
	.page-hero {
        padding: 70px 20px;
        min-height: 260px;
    }
    .page-hero-content h1 {
        font-size: 50px;
    }
    .srj-order-book-wrap {
        padding: 24px 16px;
    }

    .srj-order-book-table th,
    .srj-order-book-table td {
        padding: 10px 12px;
        font-size: 20px;
    }

    .srj-order-book-title {
        font-size: 28px;
		text-transform:uppercase;
    }
	
	.order-book-description{
        padding:40px 20px;
    }
    .order-book-description h2{
        font-size:24px;
    }
    .order-book-description p{
        font-size:20px;
    }
}
}


/* ============================================
   RESPONSIVE — Phones (480px and below)
   Stacked "card" layout — each row becomes a block
   ============================================ */
@media (max-width: 480px) {
	
	.page-hero {
        padding: 50px 16px;
        min-height: 220px;
    }
    .page-hero-content h1 {
        font-size: 24px;
    }
    .srj-order-book-wrap {
        padding: 20px 12px;
    }

    .srj-order-book-title {
        font-size: 20px;
    }

    .srj-order-book-table,
    .srj-order-book-table thead,
    .srj-order-book-table tbody,
    .srj-order-book-table th,
    .srj-order-book-table td,
    .srj-order-book-table tr {
        display: block;
        width: 100%;
    }

    .srj-order-book-table thead {
        display: none; /* headers replaced by data-label below */
    }

    .srj-order-book-table tr {
        margin-bottom: 14px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        overflow: hidden;
    }

    .srj-order-book-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 14px;
        border: none;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        text-align: right;
    }

    .srj-order-book-table td:last-child {
        border-bottom: none;
    }

    .srj-order-book-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #0b2545;
        text-align: left;
    }
}