/* DEVELOPED AND DESIGNED BY ME : CHRISTIAN TREASURE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100vh;
    color: #fff;
    font-family: sans-serif;
    transition: background-color 0.3s, color 0.3s;
    scroll-behavior: smooth;
}

.header {
    background: #4d148c;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: orange;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.hamburger {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

.hero {
    background-color: #f3f3f3;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-image: url("../images/main-home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    background-color: #f9f9f9;
    /* fallback color */
    padding-right: 20%;
}

.text-content {
    max-width: 500px;
    text-align: left;
}

.text-content h1 {
    font-size: 2.5rem;
    color: #222;
    font-weight: lighter;
    margin-bottom: 1rem;
}

.text-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.cta {
    text-decoration: none;
    color: #0075c9;
    font-weight: bold;
}


.tracking-section {
    max-width: 800px;
    margin: 0 auto;
    background-color: #e7e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    bottom: 90px;
}

.quick-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-links a {
    text-decoration: none;
    color: #333;
    text-align: center;
    font-size: 14px;
    flex: 1;
    min-width: 120px;
    padding: 10px 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background-color: #f0f0f0;
}

.quick-links i,
.quick-links img {
    display: block;
    margin: 0 auto 8px;
    font-size: 30px;
    color: #000;
}

.quick-links img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}



.tracking-input {
    display: flex;
    width: 100%;
    margin-top: 20px;
}

.tracking-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #505050;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
}

.tracking-input button {
    background-color: rgb(252, 98, 27);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    min-width: 100px;
}

.tracking-input button:hover {
    background-color: rgb(231, 81, 11);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .quick-links {
        flex-direction: column;
        gap: 15px;
    }

    .quick-links a {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 10px 15px;
        min-width: auto;
    }

    .quick-links i,
    .quick-links img {
        margin: 0 15px 0 0;
        display: inline-block;
    }

    .tracking-input {
        flex-direction: column;
    }

    .tracking-input input {
        border-radius: 4px;
        margin-bottom: 10px;
        width: 100%;
        margin: 10px auto;
    }

    .tracking-input button {
        border-radius: 4px;
        width: 80%;
        margin: auto;
    }
}

.packages {
    padding: 1rem 1rem 5rem 1rem;
    background-color: #f3f3f3;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.packages-header h2 {
    font-size: 2.5rem;
    color: #005a98;
    margin-bottom: 0.5rem;
}

.packages-header p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #555;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.package-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
    color: #222;
}

.package-card button {
    background-color: #0075c9;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.package-card button:hover {
    background-color: #005a98;
}

.ship-with-fedex {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.ship-with-fedex h2 {
    color: #4D148C;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.benefit-section {
    margin-bottom: 30px;
}

.benefit-section h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    color: #777;
    margin-top: 15px;
}

.cta-section {
    margin: 40px 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cta-section h3 {
    color: #4D148C;
    font-size: 24px;
    margin-bottom: 20px;
}

.fedex-brands {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fedex-brands span {
    color: #4D148C;
    font-weight: bold;
    font-size: 18px;
}

.windows-activate {
    margin-top: 40px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .ship-with-fedex {
        padding: 25px;
    }

    .ship-with-fedex h2 {
        font-size: 26px;
    }

    .benefit-section h3 {
        font-size: 18px;
    }

    .benefit-section p {
        font-size: 15px;
    }

    .cta-section h3 {
        font-size: 20px;
    }

    .fedex-brands {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .ship-with-fedex {
        padding: 20px 15px;
    }

    .ship-with-fedex h2 {
        font-size: 22px;
    }

    .benefit-section {
        margin-bottom: 25px;
    }

    .fedex-brands {
        flex-direction: column;
        gap: 10px;
    }
}

.fedex-section {
    background-color: #f3f3f3;
    padding: 30px 15px;
}

.fedex-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    background-color: white;
}

.fedex-text {
    flex: 1 1 500px;
    padding: 30px;
}

.fedex-text h2 {
    color: #363636;
    font-weight: lighter;
    font-size: 2rem;
    margin-bottom: 20px;
}

.fedex-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fedex-column {
    flex: 1 1 45%;
}

.fedex-column h3 {
    color: #363636;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.fedex-column p {
    font-size: 0.95rem;
    color: #333;
}

.fedex-note {
    font-size: 0.8rem;
    margin: 20px 0;
    color: #555;
}

.fedex-note a {
    color: #0071ce;
    text-decoration: none;
}

.fedex-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid orange;
    color: orange;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.fedex-btn:hover {
    background-color: orange;
    color: white;
}

.fedex-image {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fedex-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .fedex-columns {
        flex-direction: column;
    }
}

/* Base styles */
.shipping-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    font-family: Arial, sans-serif;
}

.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

/* Grid layout */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card styles */
.shipping-card {
    text-align: left;
}

.shipping-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.shipping-card h3 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 12px;
    color: #222;
}

.shipping-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.6;
}

.shipping-card a {
    font-weight: bold;
    color: #0078C9;
    font-size: 14px;
    text-decoration: none;
}

.shipping-card a:hover {
    text-decoration: underline;
}

/* Responsive tweaks (optional enhancement) */
@media (max-width: 600px) {
    .section-title {
        font-size: 24px;
    }

    .shipping-card h3 {
        font-size: 16px;
    }

    .shipping-card p {
        font-size: 14px;
    }

    .shipping-card a {
        font-size: 13px;
    }
}

.business-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.business-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: lighter;
    color: #222;
}

.business-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.business-card img {
    width: 200px;
    max-width: 100%;
    border-radius: 4px;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
    min-width: 260px;
}

.card-content h3 {
    font-size: 25px;
    font-weight: lighter;
    margin-bottom: 10px;
    color: #444;
}

.card-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.card-content a {
    color: #0078C9;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.card-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .business-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-content {
        text-align: left;
        padding-top: 10px;
    }
}

.footer {
    background: #f0f0f0;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
    color: #222;
    border-top: 1px solid #ddd;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
    color: #4B0082;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 30px auto;
    max-width: 1100px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social span {
    font-weight: bold;
    font-size: 14px;
    color: #4B0082;
}

.social a img {
    width: 22px;
    height: 22px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.social a:hover img {
    filter: none;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social a i {
    font-size: 18px;
    color: #333;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #333;
    transition: 0.3s ease;
}

.social a:hover i {
    color: #4B0082;
}

.footer-col ul li a i {
    margin-right: 8px;
    color: #4B0082;
}


@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
}



#secretAdmin {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0.1;
    background-color: red;
    border-radius: 50%;
    z-index: 999;
}

@media (max-width: 768px) {
    .navbar {
        position: absolute;
        top: 60px;
        right: 0;
        background: #4d148c;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 1rem;
    }

    .navbar.show {
        display: flex;
    }

    .navbar ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hamburger {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .tracking-input input {
        width: 80%;
    }

    .banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
        background: url('../images/main-home.jpg') no-repeat top center;
        background-size: cover;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
    }

    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

}