/* Font Face Declaration */
@font-face {
    font-family: 'ZapfHumanist';
    src: url('../../fonts/zapf/ZapfHumanist601BT-Roman.svg') format('svg'),
         url('../../fonts/zapf/ZapfHumanist601BT-Roman.woff') format('woff'),
         url('../../fonts/zapf/ZapfHumanist601BT-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{text-decoration: none;}

html, body {
    height: 100%;
    font: 16px/1.54 "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'ZapfHumanist', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Smaller "WELCOME TO" styling */
h1 .welcome-small {
    font-size: 0.67em; /* 2/3 of the main heading size */
    display: block;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    padding: 7px 10px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-family: 'ZapfHumanist', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #fff;
    color: #0a0a0a;
}

.btn-primary {
    background-color: #fff;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 670px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom:15px solid #fff;
    margin-top:91px;
}

/* Angled overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    transform: skewX(-36deg);
    transform-origin: top left;
    z-index: 1;
    min-width:750px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding-left: 80px;
    padding-top: 25px;
    margin-right: auto;
}

.hero-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 360px;
}

.hero-content .narrow p{
    max-width:235px;
    font-weight:600
}

.hero-buttons {
    position: absolute;
    right: 100px;
    bottom: 50px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.hero-buttons .btn {
    margin-right: 0;
    margin-bottom: 0;
    width: 260px;
    text-align: center;
   
}



/* About Section */
.about {
    position: relative;
    height: 83vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-content {
    text-align: center;
    padding-bottom: 80px;
    color: #ffffff;
}

.about-content h2 {
    font-size: 2.1rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-content .btn {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 5px 40px;
    font-size: 0.9rem;
}

.about-content .btn:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.services-grid-item {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    justify-content: center;
}

.services-grid-item:hover {
    transform: translateY(-5px);
}

.services-grid-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-grid-content {
    padding: 25px 30px 30px;
    color: #000000;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align:center;
}

.services-grid-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid-content p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.services-grid-content .btn-outline {
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
    padding: 5px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self:center;
}

.services-grid-content .btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Restoration Section */
.restoration {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    width:100%
}



.restoration-overlay {
    position: relative;
    margin-top:-220px;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.restoration-text {

    text-align: center;
    color: #000000;
    max-width: 400px;
    padding: 20px 0;

}

.restoration-text h2 {
    font-size: 2rem;
    margin-bottom: 0px;
    color: #000000;
}

.restoration-text p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #000000;
}

.restoration-panels {
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1300px;
    width: 100%;
    padding: 0 20px;
    gap: 28px;
}

.restoration-panel {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.restoration-panel:hover {
    transform: translateY(-10px);
}

.panel-image {
    height: 275px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.restoration-panel .btn {
    margin: 35px 20px 50px;
    background: transparent;
    text-align: center;
    padding: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.restoration-panel:hover .btn {
    background-color: #000000;
    color: #ffffff;
}

.restoration-black-space {
    background-color: #000000;
    height: 200px;
    
    z-index: 1;
}

/* Service and Repair */
.service-repair {
    position: relative;
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.service-text-overlay {
    padding: 20px;
    margin: 50px 10%;
    max-width: 420px;
    color: #000000;
    text-align:center;
}

.service-text-overlay h2 {
    font-size: 1.9rem;
    color: #000000;
    margin-bottom:10px;
}

.service-text-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #000000;
}

.service-text-overlay .btn-outline {
    border: 1px solid #000000;
    color: #000000;
    background: transparent;
    padding: 5px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-text-overlay .btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Additional Services (3-panel row) */
.additional-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    padding: 0;
}

.service-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    padding-bottom: 40px;
}

.service-block-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-block-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 40px 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-block-content h3 {
    font-family: 'ZapfHumanist', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}

.service-block-content p {
    font-size: 0.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.5;
}

.btn-outline-white {
    font-family: 'ZapfHumanist', sans-serif;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 5px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background-color: #0a0a0a;
    text-align: center;
}

/* Parts Section */
.parts {
    padding: 20px 0;
    background: #D3D3D3;
background: linear-gradient(180deg,rgba(211, 211, 211, 1) 0%, rgba(238, 238, 238, 1) 100%);
    text-align: center;
}
.parts .container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width:1500px;
    margin:0 auto;
}
.parts .container div{
    width:50%;
}
.parts .container div:first-child{
    padding:0 5%;
    width:50%;
}
.parts h2{
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.parts h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom:20px;
}
.parts p{
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.5;
}
.parts .btn{
    border-color:#000;
    color:#000;
    padding:10px 20px;
    font-size:0.9rem;
    text-transform: uppercase;
    margin-top:10px;
}

/* Gallery Features */
.gallery-features {
    background: #000;
    padding: 60px 0 40px 0;
}

.gallery-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
    padding:0 30px;
}

.gallery-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.gallery-feature-img-link {
    text-align: center;
}

.gallery-feature-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 1px solid #fff;
    background: #111;
    display: block;
    transition: box-shadow 0.2s;
}



.gallery-feature-btn-link {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.gallery-feature-btn-link .btn-outline-white {
    max-width: 220px;
    padding: 10px 0;
    font-size: 1rem;
    width:100%;
}

/* Workshop Details */
.workshop-details {
    padding: 100px 0;
    background-color: #111111;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.contact-info {
    margin-top: 50px;
}

/* Enginology Section */
.enginology-section {
    background: #000;
    min-height: 420px;
    width: 100%;
    text-align:center;
    border-top:12px solid #fff;
}
.enginology-section .enginology-wrap{
    max-width: 1400px;
    margin:0 auto;
    display: flex;
    flex-direction: row;
}

.enginology-image {
    flex: 1 1 40%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: none;
}

.enginology-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.enginology-content {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.enginology-content h2 {
    font-family: 'ZapfHumanist', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.enginology-content p {
    font-size: 0.9rem;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.5;
    max-width: 700px;
}

.enginology-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.enginology-buttons .btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 5px 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.enginology-buttons .btn-primary{
    padding:5px 30px;
}

.enginology-buttons .btn-outline-white:hover {
    background: #fff;
    color: #000;
}



.newspaper{background:#070707; padding:0;}
.newspaper h2{
    color:#fff;
    font-size: 45px;
    line-height: 58px;
    font-family: 'BenchNine', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin:0;
}
.newspaper p{color:#fff;}
.newspaper .col img{display:block;}
.newspaper .row{width:95%; max-width:1500px;display: flex;align-items:flex-end;margin: 0 auto;}
.newspaper a.btn{background-color:#fff;color:#000;padding:7px 25px;font-size:17px;}
.newspaper a.btn:hover{background-color:#6f6f6f;color:#fff}
.newspaper .col{    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 43%;
    font-size: 18px;
    line-height: 26px;
    float: none;
padding:80px 0;}

.newspaper .col.one {
    margin-right: 3%;width:49%; padding:0; vertical-align: bottom;
}
@media(max-width:767px){.newspaper .row{flex-direction:column-reverse}.newspaper .col{display:block; width:100%; padding:40px 20px }.newspaper .col.one{margin-right:0;width:100%;}}



.homepage .midform h2{
    text-align:left;
    text-transform: none;
    letter-spacing: normal;
  }

  .homepage .midform .btn{
    border:none;
  }

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    .hero-content {
        padding-top:0;
        padding-bottom:50px;
    }
  
}

@media (max-width: 992px) {
    .hero::before {
        width: 100%;
        transform: none;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .hero {
        text-align: center;
        padding: 50px 20px;
        background-size: 120%;
        background-position: center -180px;
        flex-direction: column;
    }

    .hero::before {
        margin-top:50%;
    }
    
    .hero-content {
        margin-top:40%;
    }
    
    .hero-content {
        padding: 20px;
        max-width: 100%;
        text-align: left;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    .hero-content .narrow p {
        max-width:100%;
    }
    
    .hero-buttons {
        position: relative;
        margin-top: 30px;
        align-items: center;
        flex-wrap:wrap;
        bottom:auto;
        right:auto;
        justify-content: center;
    }
    
    .about {
        height: 60vh;
        min-height: 400px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        padding-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-image {
        height: 200px;
    }
    
    .services-grid-content {
        padding: 30px 25px;
    }
    
    .services-grid-content h3 {
        font-size: 1.2rem;
    }
    
    .restoration {
        height: 500px;
    }

    .restoration-overlay{
        margin-top: -200px;
        padding-bottom:28px;
    }
    
    .restoration::before {
        width: 50%;
    }
    
   .parts{padding:35px 0;}
   .enginology-section{min-height:0;}
    
    .restoration-panels {
        grid-template-columns: repeat(2, 1fr);
        max-width:700px;
    }
    .restoration-panel .btn{
        margin-bottom:25px;
    }
    
    .panel-image {
        height: 200px;
    }
    
   

    .service-text-overlay h2, .parts h2 {
        font-size: 1.8rem;
    }
    
  
    
      .service-text-overlay{
        background:#fff;
        width:100%;
        max-width:100%;
        margin:0;
    }
     .service-repair {
        height: 450px;
        align-items: flex-end;
        justify-content: flex-end;
            background-size: 110%;
    background-position: -35px top;
    min-height:0;
    }
    
    .service-text-overlay h2, .restoration-text h2 {
        font-size: 1.8rem;
    }
    
    .service-text-overlay p {
        font-size: 0.9rem;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }

  
    .parts .container div:first-child{
        padding:0;
    }
   
    
    .enginology-section {
        flex-direction: column;
    }

 
    .enginology-content {
        padding: 40px 15px;
    }
    .enginology-content h2 {
        font-size: 1.8rem;
    }
    .enginology-content p {
        font-size: 1rem;
    }
    .enginology-buttons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-content h2, .service-text-overlay h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        padding-bottom: 40px;
    }
    
    .about-content .btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
     .service-repair {
        height: 360px;
     }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-image {
        height: 350px;
    }
    
    .services-grid-content {
        padding: 25px 20px;
        text-align: center;
    }
    
    .services-grid-content h3 {
        font-size: 1.5rem;
    }
    
    .services-grid-content p {
        font-size: 0.85rem;
    }
    
    .services-grid-content .btn-outline {
        font-size: 0.8rem;
        padding: 10px 25px;
        align-self: center;
    }
    
    .service-block {
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    .service-block:last-child {
        border-bottom: none;
    }
    
    .restoration {
        height: 400px;
    }

    .restoration-overlay{
        margin-top: -170px;
        padding-bottom:30px;
    }
    
    .restoration::before {
        width: 60%;
    }
    
    .restoration-text {

        padding: 20px;
        max-width: 90%;
    }
    
    .restoration-text h2 {
        font-size: 1.5rem;
    }
    
    
    .restoration-panels {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width:400px;
    }
    
    .panel-image {
        height: 250px;
    }
    
    .restoration-panel .btn {
        margin: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .gallery-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-feature-img {
        max-width: 240px;
    }
    .gallery-feature-btn-link .btn-outline-white {
        width: 100%;
        font-size: 0.9rem;
    }
    .parts .container{
        flex-direction: column-reverse;
        padding:30px 20px 0;
    }
    .parts .container div{
        width:100%;
    }
    .parts .container div:first-child{
        width:100%;
        padding-bottom:30px;
    }

    .hero {
        text-align: center;
        padding: 50px 20px;
        background-size: 150%;
        background-position: center -180px;
        flex-direction: column;
        border-bottom:0;
    }

    .hero::before {
        margin-top:55%;
    }
    
    .hero-content {
        padding: 20px;
        margin-top:55%;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .enginology-section .enginology-wrap{
        flex-direction: column;
    }
    .about{
    flex-direction: column;
    padding:0;
    height:auto;
}
.about-content{
    padding:20px 0 40px;
}
    .video-background, .about-overlay, .video-background iframe{
        position: relative;
        top:auto;
        left:auto;
        width: 100%;
    }
    .video-background iframe{
        transform:none;
        min-height:0;
        min-width:0;
    }
 
    .enginology-image img{
        max-width:550px;
        margin:0 auto;
    }

}

@media (max-width: 485px) {
    .container{
        padding:0 20px;
    }
    .header .container{
        padding:0;
    }
    .gallery-features-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gallery-feature-btn-link .btn-outline-white {
        width: 100%;
        font-size: 0.9rem;
    }

    .hero {
        text-align: center;
        padding: 50px 20px;
        background-size: 190%;
        background-position: center -135px;
        flex-direction: column;
        margin-top:82px;
    }
    h1 {
        font-size: 1.9rem;
    }

    .hero::before {
        margin-top:75%;
    }
    
    .hero-content {
        padding: 20px 0;
        margin-top:200px;
    }
    .hero-buttons{
        margin-top:10px;
    }
    .about-content h2{
        font-size: 1.5rem;
        margin-bottom:15px;
    }
    .about-content .btn{
        padding:5px 25px;
    }
    .services-grid-image {
        height:360px;
    }
    .restoration{
        background-size:130%;
        background-position: -100px top;
        background-color:#fff;
        height:370px;
        border-top:40px solid #000;
    }
        .restoration-overlay {
        margin-top: -180px;
        padding-bottom:0;
    }
    .restoration-text{
        max-width:100%;
        background-color: #fff;
    }
    .restoration-panels{
        padding:0 46px;
    }
    .restoration-text{
        padding:20px 20px 5px;
    }
    .panel-image {
        height: 270px;
    }
    .restoration-panel .btn {
        margin: 30px 40px;
        font-size:0.65rem;
    }
    .service-text-overlay h2{
        font-size:1.5rem;
    }
    
    .service-text-overlay .btn-outline, .btn-outline-white{
        font-size:0.8rem;
    }
       
    .service-block-image {
        height:350px;
    }
    .service-block-content{
        padding:35px 40px 0;
    }
    .enginology-content h2{
        font-size: 1.5rem;
    }
    .enginology-content p{
        font-size: 0.8rem;
        margin-bottom: 30px;
    }
    .service-block-content h3{
        font-size:1.28rem;
    }
    .enginology-section{
        border-top:24px solid #fff;
    }
    .enginology-image img{
        margin:20px auto 0;
        width:95%;
        height:auto;
    }
        .enginology-buttons {
        gap: 25px;
    }
    .enginology-content{
        padding:40px 30px 45px;
    }
     .parts h2 {
        font-size: 1.5rem;
    }   
    .parts h3{
        font-size: 1.2rem;
    }
    .parts .btn{
        font-size:0.8rem;
    }
    .parts .container{
        padding-top:0;
    }
    .gallery-feature-img{
        max-width:280px;
    }
    .gallery-feature-btn-link{
        margin:20px;
    }
    .gallery-feature-btn-link .btn-outline-white{
        max-width:180px;
        font-size:0.8rem;
                padding:5px 0;
    }
    .gallery-features {
        padding-bottom:30px;
    }
    .newspaper .col{
        padding:0 20px 35px;
    }
    .newspaper a.btn{
        padding:0px 20px;
        font-size:0.8rem;
    }
    .newspaper p {
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
    .newspaper h2{
        font-size:30px;
    }
    .midform{
        padding:35px 0;
    }
}

/* 4K Monitor Support */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3.5rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .btn {
        font-size: 1.1rem;
        padding: 15px 40px;
    }
    
    .about-content h2 {
        font-size: 4rem;
    }
    
    .about-content .btn {
        font-size: 1.2rem;
        padding: 18px 50px;
    }
    
    .services-grid-image {
        height: 350px;
    }
    
    .services-grid-content {
        padding: 50px 40px;
    }
    
    .services-grid-content h3 {
        font-size: 1.8rem;
    }
    
    .services-grid-content p {
        font-size: 1.1rem;
    }
    
    .services-grid-content .btn-outline {
        font-size: 1rem;
        padding: 15px 40px;
    }
    
    .restoration {
        height: 90vh;
        min-height: 800px;
    }
    
    .restoration-text {
        bottom: -140px;
        padding: 40px;
    }
    
    .restoration-text h2 {
        font-size: 4rem;
    }
    
    .restoration-text p {
        font-size: 1.3rem;
    }
    
    .restoration-panels {
        bottom: -250px;
    }
    
    .panel-image {
        height: 300px;
    }
    
    .restoration-panel .btn {
        margin: 30px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .restoration-black-space {
        height: 400px;
    }
    
    .service-repair {
        height: 80vh;
        min-height: 700px;
    }
    
    .service-text-overlay {
        padding: 50px;
        margin: 70px;
        max-width: 500px;
    }
    
    .service-text-overlay h2 {
        font-size: 3.5rem;
    }
    
    .service-text-overlay p {
        font-size: 1.2rem;
    }
    
    .service-text-overlay .btn-outline {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .enginology-content h2 {
        font-size: 3.5rem;
    }
    .enginology-content p {
        font-size: 1.5rem;
    }
    .enginology-buttons .btn-outline-white {
        font-size: 1.3rem;
        padding: 20px 70px;
    }
   
} 