/* ===== KINETIC REPAIRS UK - ORGANIZED CSS By DeepSeek === */

/* ===== BASE STYLES ===== */
/* V1.1 */

body {
    color: white;
    background-color: #353434;
    padding: 5pt;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

/* ===== HEADER & NAVIGATION ===== */
.Kinetic-Fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: black;
    font-size: 300%;
    font-family: "Microsoft JhengHei Light";
    padding: 10px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h1 { 
    font-size: 2.0em;
    margin: 0.67em 0;
    color: yellow;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1.5em;
    margin: 1.33em 0;
    color: yellow;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

p {
    font-size: 1.3em;
}

/* Paragraph variations */
p.ex1 { font-size: 10px; }
p.ex2 { font-size: 20px; }
p.ex3 { font-size: 30px; }
p.ex4 { font-size: 40px; }

/* ===== LINKS & BUTTONS ===== */
a {
    color: #58ACFA; /* Light blue */
}

a:hover {
    opacity: 0.7;
}

a:hover, a:active {
    color: green;
}

.btnStack {
    font-family: Calibri;
    background-color: yellow;
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 2px 6px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid red;
    border-radius: 12px;
}

.btnStack2 {
    font-family: Calibri;
    background-color: blue;
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 2px 6px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid red;
    border-radius: 12px;
}

/* ===== LAYOUT COMPONENTS ===== */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.address {
    padding: 0 50pt;
    font-size: 16pt;
    font-weight: 800;
    color: black;
    background-color: white;
}

table {
    color: black;
    background-color: lightgray;
    border: 2px solid black;
	width:50%;
}

.invisable {
    background-color: #424242;
}

/* ===== DESKTOP IMAGE GRID ===== */
.section {
    display: flex;
    margin: 25px;
    height: auto;
    justify-content: space-evenly;
    list-style-type: none;
    font-size: 130%;
}

.img-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.section img {
    width: 170px;
    height: 200px;
}

/* ===== MOBILE IMAGE GRID - 5 ACROSS ===== */
@media screen and (max-width: 768px) {
    .section {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 5px !important;
        padding: 0 5px !important;
        margin: 10px 0 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        height: auto !important;
    }

    .img-container {
        flex: 0 0 18% !important;
        min-width: 0 !important;
        text-align: center !important;
    }

    .section img {
        width: 100% !important;
        height: auto !important;
        max-width: 60px !important;
        min-width: 40px !important;
        display: block !important;
        margin: 0 auto !important;
        border-radius: 4px !important;
        object-fit: cover !important;
    }

    .img-container a {
        text-decoration: none !important;
        color: #58ACFA !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        display: block !important;
    }

   .img-container b {
        display: block !important;
        margin-top: 3px !important;
        word-break: break-word !important;
        font-weight: bold !important;
        /*color: yellow !important; */
        font-size: 10px !important;
    }
}



/* Extra small screens */
@media screen and (max-width: 320px) {
    .section img {
        max-width: 45px !important;
    }
    
    .img-container a,
    .img-container b {
        font-size: 9px !important;
    }
}

/* ===== UTILITY CLASSES ===== */
button:hover {
    opacity: 0.4;
}

/* ===== PRINT STYLES ===== */
@media print {
    .noprint {
        display: none;
    }
}

/* ===== VIEWPORT FIX ===== */
@-ms-viewport {
    width: device-width;
}

ul li{
 font-size:18px;
}

