/* =====================================================
   1. CONSOLIDATED CUSTOM PROPERTIES
   ===================================================== */
:root {
  --brand-blue: #111188;
  --brand-green: #118811;
  --brand-green-hover: #0C660C;
  --brand-yellow: #FFDD44;
  --brand-yellow-hover: #E6C63D;
}

/* =====================================================
   2. BASE & GLOBAL STYLES
   ===================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--brand-blue);
  background-color: #f8f9fa;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

::selection {
  background-color: var(--brand-yellow);
  color: var(--brand-blue);
}

table {
  caption-side: unset;
}

code {
  overflow-y: auto;
}

em.placeholder {
  display: unset;
  min-height: unset;
  vertical-align: unset;
  cursor: unset;
  background-color: unset;
  opacity: unset;
}

/* =====================================================
   3. NAVIGATION & DRUPAL REGIONS
   ===================================================== */
.navbar {
  background-color: var(--brand-blue);
  border-bottom: 1px solid #e5e7eb;
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--brand-blue) !important;
  white-space: unset;
}

.navbar-brand .site-title {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 140px;
}

.navbar-brand img {
  height: 120px;
  margin: 0 1rem 0 0;
  width: auto;
  z-index: 100;
  position: absolute;
}

.nav-link {
  color: rgba(17, 17, 136, 0.8) !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--brand-blue) !important;
}

.region-nav-branding,
.region-nav-additional {
  flex-shrink: 0;
}

/* =====================================================
   4. BUTTONS & UI COMPONENTS
   ==================================================== */
.btn-primary-custom, .btn-book {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.btn-primary-custom:hover, .btn-book:hover {
  background-color: var(--brand-green-hover);
  border-color: var(--brand-green-hover);
  transform: translateY(-2px);
  color: #fff;
}

.badge-custom {
  background-color: var(--brand-yellow);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
}

.feature-card, .menu-card, .reason-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.feature-image {
    border-radius: 2px;
    border: 1px solid #e5e7eb;
    object-fit: cover;
    height: 10rem;
    width: 100%;
}

/* =====================================================
     Book - Cover
   ===================================================== */

/*

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #ffffff;
}

*/

/* Page layout */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
	width: 80%;
}

/* Page 1 styles */
.page1 {
    background: #ffffff;
}
*/
.logo {
    max-width: 5rem;
    width: 60%;
	height: auto;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 2rem;
    font-weight: 800;
    color: #118;
	width: 60%;
	margin: 2.5rem 10% 1rem 10%;
}

/* Page 2 styles */
.page2 {
    background: #f8f9fa;
    padding: 80px 20px;
}

.description {
    max-width: 750px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #222;
}

/* new for book * /
        
        body {
            font-family: 'IBM Plex Sans', sans-serif;
            color: var(--brand-blue);
            background-color: #f8f9fa;
            min-height: 100vh;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
        }
*/        
        .book-header {
            background-color: var(--brand-blue);
            padding: 1rem;
            margin-bottom: 3rem;
        }
        
        .book-header h1 {
            color: #fff;
            font-weight: 900;
            letter-spacing: -0.02em;
        }
        
        .book-header .subtitle {
            color: var(--brand-yellow);
            font-size: 1.25rem;
        }
        
        .book-content {
            background-color: #fff;
            border-radius: 2px;
            border: 1px solid #e5e7eb;
            padding: 3rem;
            margin-bottom: 2rem;
        }
        
        .orientation-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--brand-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        
        .orientation-box ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .orientation-box li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .orientation-box li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: var(--brand-green);
            border-radius: 50%;
        }
        
        .section-title {
            color: var(--brand-blue);
            font-weight: 700;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--brand-yellow);
        }
        
        .info-card {
            background-color: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 2px;
            padding: 1.5rem;
            height: 100%;
            transition: all 0.2s ease;
        }
        
        .info-card:hover {
            border-color: var(--brand-blue);
            box-shadow: 0 4px 6px -1px rgba(17, 17, 136, 0.1);
        }
        
        .info-card h4 {
            color: var(--brand-green);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        
        .info-card p {
            color: rgba(17, 17, 136, 0.7);
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        .btn-book {
            background-color: var(--brand-green);
            border-color: var(--brand-green);
            color: #fff;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 2px;
            font-size: 1.1rem;
            transition: all 0.2s ease;
        }
        
        .btn-book:hover {
            background-color: var(--brand-green-hover);
            border-color: var(--brand-green-hover);
            color: #fff;
            transform: translateY(-2px);
        }
        
        .btn-book i {
            margin-left: 0.5rem;
        }
        
        .note-box {
            background-color: rgba(17, 17, 136, 0.05);
            border: 1px solid rgba(17, 17, 136, 0.1);
            border-radius: 2px;
            padding: 1rem 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(17, 17, 136, 0.7);
        }
        
        .note-box i {
            color: var(--brand-yellow);
            margin-right: 0.5rem;
        }
		
/* new for book */		

/* =====================================================
   5. MEDIA QUERIES (NO CHANGES)
   ===================================================== */
@media (min-width: 992px) {
  .navbar-brand .site-slogan { display: block; }
  .region-nav-additional { display: flex; }
}

@media (max-width: 767.98px) {
  .tabs-wrapper .nav-tabs { 
    border: var(--bs-border-width) solid var(--bs-border-color); 
  }
}

@media (max-width: 768px) {
  .book-content, .menu-card { padding: 1.5rem; }
}

@media (max-width: 576px) {
  .feature-list li { flex-direction: column; gap: 0.5rem; }
}
