h3{
    text-align: center;
    margin-bottom: 15px;
}

#description-title{
    font-size: 30px;
    margin: 15px 0px 15px 0px;
    text-align: center;
}

.text-block{
    width: 30%;
    text-align: center;
    margin: auto;
    margin-top: 30px;
}

.images {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 50px;
}

.portrait-block, .desk-block{
    height: fit-content;
    text-align: center;
}

#me-img, #desk-img{
    border-radius: 10%;
    height: 400px;
}

#quote{
    font-size: 25px;
    text-align: center;
    margin-top: 3%;
    margin-bottom: 3%;
    padding-left: 30%;
    padding-right: 30%;
}

.video-container{
    display: flex;
    justify-content: center;
}

#window-video{
    height: 500px;
    width: auto;
}

@media (max-width: 1600px) {
    .text-image {
        width: 65%;
    }
}

@media(max-width: 1400px){
    .text-image {
        flex-direction: column;
        width: 80%;
    }
}

@media (max-width: 1200px) {
    .text-block {
        width: 40%;
    }

    .images{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 1080px) {
    #description-title {
        font-size: 25px;
    }

    #quote{
        padding-left: 20%;
        padding-right: 20%;
    }
}

@media (max-width: 900px) {
    #description-title {
        font-size: 20px;
    }
}

@media (max-width: 888px) {
    #window-video{
        height: 300px;
        width: auto;
    }   
}

@media (max-width: 720px) {
    .text-block {
        width: 60%;
    }

    #description-title {
        font-size: 20px;
        text-align: center;
    }

    .header-title{
        display: block;
    }

    #quote{
        font-size: 15px;
        margin-top: 30px;
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 675px){
    #me-img, #desk-img{
        height: 300px;
    }

    #portrait-description, #desk-description{
        font-size: 12px;
    }

    .images {
        gap: 25px;
    }
}

@media (max-width: 600px){
    #quote{
        padding-left: 20%;
        padding-right: 20%;
    }
}

@media (max-width: 533px) {
    #window-video{
        height: 200px;
        width: auto;
    }   
}

@media(max-width: 490px){
    #description-title {
        font-size: 20px;
    }

    #me-img, #desk-img{
        height: 250px;
    }

    #portrait-description, #desk-description{
        font-size: 10px;
    }
}

@media(max-width: 465px){
    #quote{
        padding-left: 15%;
        padding-right: 15%;
    }
}






/* ══════════════════════════════════════════════════════
   DD-HERO STYLES
   ══════════════════════════════════════════════════════ */

:root {
  --bg:          #f4f6fc;
  --border:      #e2e8f0;
  --accent:      black;
  --text:        #1e293b;
  --muted:       #64748b;
  --muted2:      #475569;
  --sans:        'Poppins', sans-serif;
  --card-shadow: 0 4px 12px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
  --hover-shadow:0 8px 24px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
}

.dd-hero {
  text-align: center;
  margin-bottom: 56px;
  padding-top: 32px;
}

.dd-hero h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #0f172a;
}

.dd-hero h1 em {
  color: var(--accent);
  font-style: normal;
  border-bottom: 3px solid #111;
}

.dd-hero-subtitle {
  font-family: var(--sans);
  color: var(--muted2);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 10px auto;
}

.hero-prop-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1040px;
  margin: 24px auto 0;
}

.prop-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 170px;
  flex: 1 1 calc(20% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(0,0,0,0.15);
}

.prop-card.highlight {
  background: #0f172a;
  border-color: #0f172a;
}

.prop-card .pc-num {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 4px;
}

.prop-card.highlight .pc-num { color: #ffffff; }

.prop-card .pc-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.prop-card.highlight .pc-label { color: #cbd5e1; }

@media (max-width: 768px) {
  .prop-card { flex: 1 1 calc(33.33% - 16px); }
}

@media (max-width: 480px) {
  .prop-card { flex: 1 1 calc(50% - 16px); padding: 14px 16px; }
  .dd-hero h1 { font-size: 1.8rem; }
}