/*/////////////////////////////////////////////////////////////////////////////////////////////////

	
		    Copyright (c) 2025 - Lucky :: Special for Mint. Vehicle Wrapping.
					            https://luckydev.xyz/
                                https://mint-as.com.au/
	
			        Title: Personal Development Website for use by Mint.
				            Format: HTML5, PHP, CSS, CloudFlare
								
			            This HTML & PHP Codes-work is licensed under:
	    Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-ND 4.0)
			            https://creativecommons.org/licenses/by-nc-nd/4.0/


/////////////////////////////////////////////////////////////////////////////////////////////////*/
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #fff;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    border-bottom: 1px solid #333;
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
}

.header nav {
    margin-top: 10px;
}

.header nav a {
    margin: 0 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header nav {
        text-align: center;
        margin-top: 5px;
    }

    .header nav a {
        display: inline-block;
        margin: 0 10px;
        font-size: 14px;
    }
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content {
    padding: 40px 20px;
    text-align: center;
    flex: 1;
}

.content-about {
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    flex: 1;
}

@media (max-width: 768px) {
    .content-about {
        max-width: 90%;
        padding: 40px 20px;

    }
}

.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    max-width: 1200px;
    gap: 20px;
}

.promo-box {
    padding: 20px;
    width: 50%;
    text-align: center;
    color: #fff;
}

.promo-image {
    width: 50%;
}

.promo-image img {
    width: 80%;
    height: 80%;
    border-radius: 4px;
    border: 1px solid #333;
}

.promo-image iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
    }
    
    .promo-box {
        width: 90%;
    }
    
    .promo-image {
    width: 100%;
    }
    
    .promo-image img {
        width: 100%;
        height: 100%;
    }

    .promo-container:nth-of-type(2) {
        flex-direction: column-reverse;
    }
}

.quote-button {
    display: inline-block;
    background-color: #0a0a0a;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #333;
    transition: background-color 0.3s;
}

.quote-button:hover {
    background-color: #1b1b1b;
}

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

.catalog-item {
    text-align: center;
}

.catalog-text {
    font-size: 16px;
    margin-bottom: 8px;
}

.catalog-image {
    border-radius: 4px;
    max-width: 600px;
    width: 100%;
    height: auto;
    border: 1px solid #333;
    padding: 10px;
    background-color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.2s;
}

.catalog-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .catalog-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .catalog-item {
        width: 90%;
        padding: 0 10px;
    }

    .catalog-text {
        font-size: 14px;
    }

    .catalog-image {
        max-width: 100%;
        width: 100%;
        padding: 8px;
    }
}

.inline-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.inline-inputs input {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 40px 20px;
}

.privacy-content h1, 
.privacy-content h2, 
.privacy-content p, 
.privacy-content ul {
    text-align: left;
}

.privacy-link {
    margin-top: 15px;
    text-align: center;
}

.privacy-link a {
    color: #929292;
    text-decoration: none;
    font-weight: bold;
}

.privacy-link a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #000000;
    color: #bbb;
    padding: 20px 0;
    text-align: center;
}

.footer .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer .footer-content div {
    width: 30%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.footer .footer-content div h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer .footer-content div a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer .copyright {
    border-top: 1px solid #333;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 12px;
    color: #969696;
}

.footer .quick-links {
    width: 100%;
}

.footer .quick-links h3 {
    text-align: center;
    margin-bottom: 20px;
}

.footer .quick-links .link-columns {
    display: flex;
    justify-content: center;
    gap: 100px;
    width: fit-content;
    margin: 0 auto;
}

.footer .quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .quick-links ul li {
    margin: 12px 0;
}

.footer .quick-links ul li a {
    color: #bbb;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer .quick-links ul li a:hover {
    color: #fff;
}

.footer .quick-links ul li a i {
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .footer-content div {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer .footer-content div:last-child {
        margin-bottom: 0;
    }

    .footer .quick-links ul {
        padding-left: 0;
    }

    .footer .quick-links ul li {
        display: inline-block;
        margin-right: 10px;
    }

    .footer .quick-links ul li a {
        display: block;
        margin: 5px 0;
    }

    .footer .quick-links ul li a i {
        margin-right: 5px;
    }
}

form {
    background-color: #000000;
    padding: 20px;
    border-radius: 4px;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    border: 1px solid #333;
}

textarea {
    resize: none;
    max-width: 100%;
}

input, textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #0a0a0a;
    color: #fff;
    display: block;
    position: relative;
}

input::placeholder, textarea::placeholder {
    color: #ccc;
}

input[type="submit"] {
    background-color: #0a0a0a;
    border: 1px solid #333;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    width: 200px;
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
}

input[type="submit"]:hover {
    background-color: #111111;
}

#goTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #131313;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 1px;
    transition: opacity 0.3s;
}

#goTopBtn:hover {
    background-color: #1b1b1b;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 120%;
    max-width: 1600px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}