/* Pantone Blue 072 C: #10069F, Pantone 355 C: #009A44 */
html, body {
    overflow-x: hidden;
 }
 body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: rgb(216, 186, 148);
    color: #333;
 }
 nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: #6aa1dfa8; /* Pantone 355 C */
    padding: 0.75rem 0;
    width: 100%; /* Force nav to full viewport width */
    box-sizing: border-box;
    margin: 0;
    z-index: 10;
    border-radius: 0; /* Remove rounding */
 }
 nav a {
    color: #222;
    background: #b3d8f7;
    border: 2px solid #222;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    margin: 0 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
 }
 nav a.active, nav a:hover {
    background: #85d2ff98;
    opacity: 1em; /* Pantone Blue 072 C */
 }
    h1, h2 {
    text-shadow: -2px -2px 0 #00000000, 1px -2px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
 
 
 }
 header {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 1.5rem 1rem 2.5rem 1rem;
    background: #6aa0df;
    color: #fff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow: visible;
    background-image:
        url("sprinkles.png"),
        linear-gradient(rgba(106, 160, 223, 0.35), rgba(106, 160, 223, 0.35)); /* transparent overlay on top */
    background-repeat: repeat, no-repeat;
    background-size: contain, cover;
    background-blend-mode: lighten;
 }
 
 
 header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 40px;
    /* Put the circles on top of the blend for visibility */
    background:
        repeating-radial-gradient(
            circle at 30px 20px,
            rgba(106, 160, 223, 0.95) 0 20px,   /* semi-transparent blue */
            transparent 21px 60px
        ),
        linear-gradient(to bottom, #6aa0df 60%, rgb(216, 186, 148) 80%);
    background-size: 60px 40px, 100% 100%;
    background-repeat: repeat-x, no-repeat;
    z-index: -1;
    pointer-events: none;
    /* Add a subtle shadow for visibility */
 }
 
 
 
 
 main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
 }
 
 
 
 
 .truck-container { /* Added missing opening curly brace */
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }
 .header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem; /* space between logo and text */
 }
 
 
 .logo-img-large {
    height: 120px;   /* Make the logo bigger */
    width: auto;
    border-radius: 16px;
  
 }
 
 
 .logo-img {
    height: 100px; /* Adjust as needed */
    width: auto;
    border-radius: 12px; /* Optional: rounded corners */
 
 
 }
 footer {
    text-align: center;
    padding: 0.8rem 0;
    background: #6aa0df; /* Pantone 355 C */
    color: #fff;
    margin-top: 2rem;
    position: fixed;
    width: 100%;
    bottom: 0;
    border: 3px solid black; /* Black outline for the footer */
     border-radius: 8px; /* Optional: Rounded corners */
          
          
 }
 
 
 .thumbnail-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns content to the right */
    margin-right: 0.5rem;    /* Adjust as needed for spacing from the edge */
 }
 
 
 .main-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #6aa0df;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    display: block;
    margin: 1rem auto;
    background: #fff;
    cursor: pointer;
 }
 
 
 .thumbnail-caption {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-right: 18px;;
 }
 .truck-press-caption {
    margin-top: 0.3rem;
    font-size: 1rem;
    color: #ff69b4;
    font-weight: bold;
    text-align: center;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px #fff8f0;
 }
 
 
 /* Modal styles */
 .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
 }
 .modal-content {
    display: block;
    margin: 5% auto;
    max-width: 120vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
 }
 .close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
 }
 
 
 .truck-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 3.5rem 4rem;                             /* space between cards */
    justify-items: center;                 /* center cards in columns */
    margin: 2rem 0;
 }
 
 
 
 
 
 
 
 
 
 
 .truck-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #6aa0df;
    background: #fff;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: block;
 }
 
 
 
 
 
 
      
 
 
 @media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    nav a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    header {
        padding: 1rem;
    }

    .main-image {
        max-width: 200px; /* Smaller image for mobile */
    }

    .truck-gallery {
        gap: 0.5rem;
    }

    .truck-card {
        max-width: 150px; /* Smaller cards for mobile */
    }

    .thumbnail-caption {
        font-size: 0.9rem;
    }
}

 
 @media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    header {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    main {
        padding: 0.5rem;
    }
    .truck-img {
        border-radius: 8px;
    }

    @media (max-width: 480px) {
        nav {
            flex-direction: column;
            align-items: center;
        }
    
        .truck-card {
            max-width: 100%; /* Full width for very small screens */
        }
    
        .main-image {
            max-width: 150px; /* Even smaller image for very small screens */
        }
    
        .thumbnail-caption {
            font-size: 0.8rem; /* Smaller caption text */
        }
    
        header h1 {
            font-size: 1.5rem; /* Smaller header text */
        }
    
        header p {
            font-size: 1rem; /* Smaller subheader text */
        }
    }
 }
    @media (max-width: 400px) {
        .truck-container {
            padding: 1rem;
        }
        .truck-img {
            width: 180px;
            height: 180px;
        }
        .logo-img-large {
            height: 100px; /* Adjust logo size for smaller screens */
        }
        .logo-img {
            height: 80px; /* Adjust logo size for smaller screens */
        }
    }
    
 