/*
Theme Name: CBO Theme
Author: Big T
Version: 1.0
*/

/* =========================
   Fonts
   ========================= */

@font-face {
  font-family: "DxMonstralFilled";
  src: url("/wp-content/themes/cbo-theme/assets/fonts/DxMonstral-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CBO Block";
  src: url("/wp-content/themes/cbo-theme/assets/fonts/CBO Block Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
  
  @font-face {
  font-family: "GC Vank";
  src: url("/wp-content/themes/cbo-theme/assets/fonts/GC Vank.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

  @font-face {
  font-family: "Museo_Slab_300";
  src: url("/wp-content/themes/cbo-theme/assets/fonts/Museo_Slab_300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

  @font-face {
  font-family: "Museo_Slab_700";
  src: url("/wp-content/themes/cbo-theme/assets/fonts/Museo_Slab_700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

  @font-face {
  font-family: "DxMonstral-Outline";
  src: url("/wp-content/themes/cbo-theme/assets/fonts/DxMonstral-Outline.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

  @font-face {
  font-family: "KGLETHERGOSOLID";
  src: url("/wp-content/themes/cbo-theme/assets/fonts/KGLETHERGOSOLID.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* =========================
   Base
   ========================= */

html {
  font-size: 16px; /* Controls global scaling */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scrollbar-gutter: stable;
}

:root{
  --ink:#111;
  --cream:#E8E7DE;
  --light:#d6d6d6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--light);
  font-family: 'CBO Block', sans-serif;
}

.Outline{
      font-family: "DxMonstral-Outline", sans-serif;
}

/* =========================
   Navigation
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-nav{
  background: var(--light);
}

.header-nav::before,
.header-nav::after {
  content: "";
  display: block;
  height: 0.375rem; /* same size */
  background: var(--ink);
}

.nav-inner{
  display:flex;
  background:var(--cream);
  height:3.125rem; /* 50px */
}

/* =========================
   HOME Block
   ========================= */

/* HOME wrapper (gray frame) */
.nav-home-wrap{
  background: var(--light);
  padding: 0.3% 0.7%;       /* responsive gray padding */
  display: flex;
  flex: 0 0 32%;          /* HOME area takes 28% of nav */
}

/* HOME black block */
.nav-home{
  width: 100%;            /* fill wrapper */
  display: flex;
  align-items: center;
}

/* HOME text */
.nav-home .home-link{
  padding-left: 5%;       /* relative to black box */
  font-size: clamp(0.95rem, 1.05rem, 1.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.home-link.active {
    background: #111;
    color: var(--cream);
    padding: 2% 87% 2% 1.5%;
}


/* =========================
   MAIN MENU
   ========================= */

/* NAV container */
.nav-main{
  flex: 1;
  display: flex;
  padding-left: 0.8%;      /* controls how close ABOUT is to HOME */
}

.nav-main .menu{
  display: flex;
  align-items: center;
  justify-content: space-between;                     /* space between items */
  width: 100%;
  margin-right: 4%;
  padding: 0;
  list-style: none;
}

.nav-main .menu li{
  flex: 0 0 auto;
}

/* Links */
/* Base link styling (ALL links get same padding) */
.nav-main .menu a {
  display: inline-block;
  padding: 0.75rem 1.5rem;   /* <-- permanent padding */
  font-size: clamp(0.95rem, 1.05rem, 1.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Active state (ONLY change colors) */
.nav-main .menu li.current-menu-item > a {
  background: var(--ink);
  color: var(--cream);
}



.nav-main .menu a:hover{
  background:rgba(0,0,0,0.05);
}

/* =========================
   Header Panel (SVG + Text)
   ========================= */

.header-panel{
  position: relative;
  margin: 0 2.5rem 2.5rem 0.625rem; /* 40px 40px 10px */
}

/* SVG BACKGROUND */
.header-panel-bg{
  width:100%;
  height:auto;
  display:block;
}

/* TEXT OVERLAY */

.header-panel-text {
  position: absolute;
  left: 4rem;
  top: 32%;
  transform: translateY(-22%);

  line-height: 0.88;
  letter-spacing: 0;
  color: #333;

  font-size: 6rem; /* base size */
}

/* Scale up on larger screens */
@media (min-width: 1200px) {
  .header-panel-text {
    font-size: 8rem;
  }
}

@media (min-width: 1600px) {
  .header-panel-text {
    font-size: 10rem;
  }
}

@media (min-width: 2000px) {
  .header-panel-text {
    font-size: 12rem;
  }
}

/* =========================
   Mobile Layout
   ========================= */

@media (max-width: 768px) {

  .header-panel-text {
    top: 35%;
    left: 5%;
    font-size: clamp(2rem, 3rem, 4rem);
  }

  .nav-main .menu a,
  .nav-home .home-link{
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .nav-main .menu{
    flex-wrap: nowrap;
    gap: 0.6rem;
  }

  .nav-home-wrap{
    padding:0.2rem; /* 5px 10px */
  }

  .nav-home .home-link{
    padding:0.2rem; /* 22px */
  }
  
  .nav-inner{
    flex-wrap: nowrap;
    height: 2rem;   /* increase overall nav height */
  }

  .nav-home{
    width: 45px;        /* no fixed 490px */
    padding: 0rem 0.25rem;
  }

  .nav-main{
    padding-left: 0.5rem;
  }
  
  .header-panel{
  margin: 0 1rem 0rem 0.625rem; /* 40px 40px 10px */
 }
}

/*===================================================================================
    front page Layout
  =================================================================================== */

.homepage {
  margin: 0 auto;
  padding: 2.7%;
}

/* HEADLINE BAND */

.page-hero-band {
  margin-top: -3.5%;
  background: #061932;
  padding: 1% 0 0.5% 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.page-hero-title {
  margin: 0;
  white-space: nowrap;        /* FORCE single line */
  text-align: center;

  font-size: clamp(2.5rem, 3.5rem, 5rem);
  letter-spacing: 0.03em;

  color: var(--cream);
  padding: 0.7%;
}

/* HERO MAIN SECTION */

.hero-main {
  background: var(--cream);
  padding: 3% 3% 0 3%;   /* ← adds left/right inset */
  position: relative;
  overflow: visible;          /* prevents layout shift */
}

.hero-inner {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: start;
}

/* IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 123%;
  height: auto;
  display: block;
  margin-top: -2.5%;
  transform: translateX(-15%);
}

/* CONTENT */
.hero-description {
  font-size: clamp(2.2rem, 2.6rem, 3rem);
  line-height: 1.2;
  color: #353535;
  transform: translateX(7.5%) translateY(-2%);
}

.hero-description2{
    transform: translateY(18%);
}

/* CTA – Large Teal Pill */
.hero-cta {
  width: fit-content;
  margin: 3.5% 0 5% 0;
  white-space: nowrap;
  background: #143a60;
  color: #e8e7de;
  
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  font-family: 'CBO Block', sans-serif;
  font-size: clamp(2.5rem, 3rem, 3.7rem);
  letter-spacing: 0.02em;

  padding: 2% 3% 1.5%;   /* slightly more top padding */
  border-radius: 70px;
  display: inline-flex;                  /* true vertical centering */
  align-items: center;
  justify-content: center;
  
  box-shadow: 6px 8px 0 #0b2b4a;
}

.cta-container {
  grid-column: 1 / -1;   /* span full grid width */
  display: flex;
  justify-content: center;
}

/* Hover */
.hero-cta:hover {
  background: #6fb6c1;
  color: #061932;
  transform: translateY(-3px);
}

.font-300 {
  font-family: 'Museo_Slab_300', sans-serif;
}

.font-700 {
  font-family: 'Museo_Slab_700', sans-serif;
}

.lab-Outline{
  font-family: "DxMonstral-Outline", sans-serif;
  font-weight: 400;
}

/* =======================================================
   DESIGNER LAB BANNER
   ======================================================= */

.designer-lab-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #061932;

  display: flex;
  justify-content: center;
  align-items: center;
  
}

.designer-lab-title {
  font-size: clamp(5rem, 7rem, 10rem);
  letter-spacing: 0.02em;

  display: flex;
  align-items: center;

  font-family: 'CBO Block', sans-serif;
  margin: 0;
  white-space: nowrap;

  line-height: 1;      /* ← critical fix */
}


/* Solid Text */

.lab-solid {
  color: var(--cream);
  letter-spacing: 0.05em;
  transform-origin: center;
  padding: 1.5% 0 0;
}

/* Outline Text */

.lab-outline {
  font-family: "DxMonstral-Outline", sans-serif;;
  transform-origin: center;
  margin-left: -0.5rem;
  color: var(--cream);
  padding: 0.1% 0 0 0;
  font-weight: 400;
}

/* Teal Slashes */

.lab-slashes {
  color: #148a8c;
  font-weight: 100;
  letter-spacing: 0.02em;
  display: inline-block;
  transform: scaleX(1) scaleY(1)  translateX(-1.25rem) translateY(-0.25rem);
  transform-origin: center;
  z-index: 2;
  font-family: "KGLETHERGOSOLID", sans-serif;
}


/*===============================================
    Designer Lab body
  =============================================== */

.process-section {
  position: relative;
  background-color: var(--light);

  /* GRID */
  background-image:
  repeating-linear-gradient(
    to right,
    rgba(0,0,0,0.22) 0px,
    rgba(0,0,0,0.22) 2px,
    transparent 2px,
    transparent 40px
  ),
  repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.14) 0px,
    rgba(0,0,0,0.14) 2px,
    transparent 2px,
    transparent 40px
  );


  background-size: 40px 40px;
  background-position: center -1px;
  margin:0 -1% 0;
  padding: 0 0 2% 1%;
}

/* REMOVE ONLY THE OUTER 1px VERTICAL LINES */
.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;              /* remove only the line */
  height: 100%;
  background: var(--light);
  z-index: 2;
}

.process-section::before {
  left: 0;
}

.process-section::after {
  right: 0;
}

.process-inner {
  margin: 0 auto;
  padding: 2.7% 0 0 1.29%;
}

.process-inner > *:first-child {
  margin-top: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 2.9%;
  margin-bottom: 2%;
}

.step-number {
  background: #061932;
  color: #148a8c;
  padding: 7.5% 7% 6.5% 7%;
  font-family: 'CBO Block', sans-serif;
  font-size: clamp(6rem, 8rem, 11rem);
  width: clamp(100px, 8vw, 140px);
  height: clamp(100px, 8vw, 140px);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.step-2{
    padding-bottom: 1.3%;
}

.step-title {
  font-size: clamp(3rem, 4rem, 5rem);
  color: #061932;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.04em;
}

.step-images {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 4%;          /* controls space between icons */
  transform: translateY(-4%);
  width: clamp(55px, 4vw, 95px);
}

.step-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.process-cta {
  position: absolute;
  right: 4%;
  bottom: 8%;

  background: #143a60;
  color: #e8e7de;

  padding: 2.5% 3% 2% ;   /* balanced vertical padding */
  border-radius: 60px;      /* more pill-like */

  font-family: 'CBO Block', sans-serif;
  font-size: clamp(2.5rem, 2rem + 1vw, 3.7rem);

  text-decoration: none;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;
  box-shadow: 6px 8px 0 #0b2b4a;
}

.process-cta:hover{
  background: #6fb6c1;
  color: #061932;
  transform: translateY(-3px);
}

.opener-images {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2.9rem;
  
  margin: 2.75% 2.3% 2.5% 0;     /* center it */
}

/* =======================================================
   WHY SHOP SECTION – Illustrator Matched
   ======================================================= */

.why-section {
  background: var(--cream);

  margin: 0 -1%;      /* match process-section */
  padding: 2% 0;

  position: relative;
}

/* --- Stripe Bands --- */

.stripe {
  height: 2rem;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  background: repeating-linear-gradient(
    -45deg,
    #2e2e2e 0px,
    #2e2e2e 10px,
    transparent 10px,
    transparent 20px
  );
}

.stripe-top {
  margin-bottom: 3%;
}

.stripe-bottom {
  margin-top: 2%;
}

/* --- Title Bar --- */

.why-title-bar {
  background: #061932;
  display: inline-block;
  padding: 2% 4% 1.5%;
  margin:0 0 0rem -2%;
}

.why-title-bar h2 {
  color:var(--cream);
  font-family: 'CBO Block', sans-serif;
    font-size: clamp(3rem, 3.8rem, 4.5rem);
  letter-spacing: 0.02em;
  margin: 0;
}

/* --- Two Column Layout --- */

.why-content {
  display: grid;
  grid-template-columns: 72% 28%;
  align-items: center;
  gap: 1rem;
}

/* --- Text Block --- */

.why-text p {
  font-family: 'Museo_Slab_300', serif;
  font-size: clamp(2.4rem, 2.9rem, 3.4rem);
  line-height: 1.25;
  color: #0d1f35;
  margin: 1%;
  padding: 0 0 0 4%;
}

/* --- Image --- */

.why-image img {
  width: 100%;
  display: block;
  margin-left: auto;
}

/* =======================================================
   FAQ SECTION
   ======================================================= */

.faq-section {
  background: var(--light);
  padding: 5rem 2rem;
}

.faq-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

/* Title */

.faq-title {
  font-family: 'CBO Block', sans-serif;
  font-size: clamp(2.5rem, 2rem + 1rem, 3.5rem);
  letter-spacing: 0.05em;
  color: #061932;
  margin-bottom: 3rem;
}

/* Item */

.faq-item {
  margin-bottom: 2rem;
}

/* Question Bar */

.faq-question {
  width: 100%;
  background: #061932;
  color: var(--cream);

  font-family: 'CBO Block', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.5rem, 1.3rem);
  letter-spacing: 0.03em;

  padding: 1rem 1.5rem;

  border: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

/* Toggle Symbol */

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

  font-family: 'Museo_Slab_300', serif;
  font-size: clamp(1rem, 0.95rem + 0.3rem, 1.15rem);
  line-height: 1.6;
  color: #0d1f35;

  padding: 0 1.5rem;
}

.faq-answer p {
  margin: 1rem 0;
}

/* Active State */

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ===============================================================================================================================
    END OF homepage
        ABOUT page
   =============================================================================================================================== */

/* ABOUT PAGE GRID */

.about-section {
  padding: 4rem 2rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 3rem;
  align-items: start;
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* HEADLINE */

.about-title {
  font-family: 'CBO Block', sans-serif;
  font-size: clamp(3rem, 4.5rem, 6rem);
  letter-spacing: 0.03em;
  margin: 0 0 1rem 0;
}

.about-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px #333;
}

/* LEFT TEXT */

.about-section {
  position: relative;
  padding: 4rem 2rem;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 30%;           /* adjust vertically */
  left: 0;
  right: 0;
  height: 45%;        /* controls band thickness */
  background: var(--cream);
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
}

.about-text-panel p {
  font-family: 'Museo_Slab_300', serif;
  font-size: clamp(1.4rem, 1.6rem, 1.8rem);
  line-height: 1.6;
  color: #353535;
  margin: 0;
}

/* RIGHT INFO CARD */

.about-card {
  border-radius: 12px;
  padding: 2rem;
  color: var(--cream);
}

.about-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: start;
}

.about-card-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2.5rem 2.5rem 0.625rem;
}

.about-card-logo img {
  
  height: 100%;
  width: 115%;
  display: block;
}

.about-card .card-icon {
  font-size: 1.6rem;
}

.about-card .card-text {
  font-family: 'Museo_Slab_300', serif;
  font-size: clamp(1rem, 1.2rem, 1.4rem);
}

.about-card-item {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* keeps everything grouped right */
  gap: 0.5rem;
  width: 100%;
}

.opener-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.opener-base {
  width: 100%;
  display: block;
}

.opener-content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 10%;

  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card-icon img {
  width: 70px;   /* adjust visually */
  height: auto;
}

.card-text {
  text-align: right;
  word-break: break-word;
}

.card-icon {
  margin-left: 1rem; /* control exact spacing */
}

.aboutbodytext{
    font-family: 'Museo_Slab_300', serif;
    font-size: clamp(1rem, 1.2rem, 1.4rem);
}

.about-card{
  transform: translateY(-4rem); /* try -1rem to -4rem */
}
/* ===============================================================================================================================
    END OF ABOUT page
        CONTACT page
   =============================================================================================================================== */
   
.contactbody{
  color: var(--cream);
}

body.page-id-18 {
  background: var(--ink);
}

.contact-icon{
  width: 70px;   /* adjust visually */
  height: auto;
  margin-left: 5rem;
}

.contact-row{
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
  font-family: 'Museo_Slab_300', sans-serif;
  font-size: clamp(3rem, 3.2rem, 3.4rem);
}

.contact-icon img{
  width: 80px;
  height: auto;
}

.contact-row h3{
  margin: 0;
}

.contact-text{
  font-family: 'Museo_Slab_300', sans-serif;
  font-size: clamp(3rem, 3.2rem, 3.4rem);
  margin: 0rem 5rem;
}

.contact-icon-text{
  transform: translateY(-9px);
}

.cbo-contact-form{
  width: min(100%, 900px);
  margin: 3rem auto 0;   /* ← THIS centers it */
}

.cbo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cbo-field label{
  display: block;
  margin-bottom: .35rem;
  letter-spacing: 0.04em;
}

.cbo-field input,
.cbo-field textarea{
  width: 100%;
  border: 3px solid #111;
  padding: .9rem 1rem;
  font: inherit;
  background: #fff;
}

.cbo-field textarea{
  resize: vertical;
  min-height: 180px;
}

.cbo-full{
  grid-column: 1 / -1;
}

.cbo-actions{
  display: flex;
  justify-content: flex-start;
}

.cbo-submit{
  background: #111;
  color: var(--cream);
  border: 0;
  padding: 1rem 1.25rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cbo-form-status{
  margin-top: 1rem;
}

.cbo-success{ color: #6fb6c1; }
.cbo-error{ color: #ff6b6b; }

/* Honeypot hidden */
.cbo-hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===================================================================================================================================
    FOOTER
   =================================================================================================================================== */
   
.site-footer {
  background: var(--ink);
  padding: 4rem 2rem;
}

.footer-inner {
  background: var(--cream);
  border-radius: 40px;
  padding: 4rem 5rem;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;

  max-width: 1400px;
  margin: 0 auto;
}

.footer-inner h2 {
  font-family: 'CBO Block', sans-serif;
  font-size: clamp(2.8rem, 3.2rem, 3.6rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-inner h2::before {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 0.4em;
  background: #f6b5b5; /* your pink */
  z-index: -1;
}

.footer-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.footer-text,
.footer-third-column ul,
.footer-second-column ul {
  font-family: 'Museo_Slab_300', serif;
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-second-column ul,
.footer-third-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-second-column li,
.footer-third-column li {
  margin-bottom: 0.6rem;
}

.footer-inner a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-inner a:hover {
  opacity: 0.6;
}

.footer-first-column .footer-text a {
  display: block;
  margin-bottom: 0.6rem;
}

.footer-part-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
}

.footer-part-two-left {
  display: flex;
  flex-direction: column;
}

.footer-part-two-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-part-two-cream-section {
  background: var(--cream);
  padding: 3rem;
  text-align: center;
}

.footer-part-two-cream-section h2 {
  font-family: 'CBO Block', sans-serif;
  font-size: 3rem;
  margin: 1rem 0;
  color: #138c8c; /* teal */
}

.footer-slashes {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    #133d7a,
    #133d7a 4px,
    transparent 4px,
    transparent 8px
  );
  margin: 1rem 0;
}

.footer-part-two-blue-section {
  background: #1f4a77;
  padding: 3rem;
  text-align: center;
  color: white;
}

.footer-part-two-blue-section h2 {
  font-family: 'CBO Block', sans-serif;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-icons img {
  width: 80px;
  background: var(--cream);
  padding: 1rem;
}