/*
Theme Name: 99order
Theme URI: https://example.com/
Author: 99order
Author URI: https://example.com/
Description: A clean and lightweight custom WordPress theme.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.8
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 99order
*/

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================
   LAYOUT
========================= */

.container {
    /*width: 90%;
    max-width: 1200px;*/
    margin-left: auto;
    margin-right: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    background: #111827;
    color: #ffffff;
    padding: 0px 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-branding a {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================
   NAVIGATION
========================= */

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
}

.main-navigation a:hover {
    color: #93c5fd;
}


/* =========================
   MAIN CONTENT
========================= */

.site-main {
    min-height: 60vh;
    padding: 70px 0;
}

.entry-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.2;
}

.entry-content {
    max-width: 850px;
}

.entry-content img {
    height: auto;
}


/* =========================
   POSTS
========================= */

.post {
    margin-bottom: 60px;
}

.post-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.post-title a {
    color: #111827;
}

.post-meta {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.post-thumbnail {
    margin-bottom: 25px;
}

.post-thumbnail img {
    display: block;
    border-radius: 8px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #111827;
    color: #ffffff;
    padding: 30px 0;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #93c5fd;
}


/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
}

.button:hover {
    background: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
}


/* =========================
   PAGINATION
========================= */

.pagination {
    margin-top: 40px;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .site-main {
        padding: 45px 0;
    }

    .entry-title {
        font-size: 34px;
    }

}


/* ========================================
   99ORDER LANDING PAGE
======================================== */


/* HERO */

.order-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #1e3a8a 50%,
            #2563eb 100%
        );
    color: #ffffff;
}

.order-hero-content {
    max-width: 800px;
    padding: 100px 0;
}

.order-label {
    margin: 0 0 15px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.order-hero h1 {
    margin: 0 0 25px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.order-hero h1 span {
    display: block;
    color: #60a5fa;
}

.order-description {
    max-width: 650px;
    margin: 0 0 35px;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.7;
}


/* BUTTONS */

.order-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.order-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.order-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.order-button-primary {
    background: #2563eb;
    color: #ffffff;
}

.order-button-primary:hover {
    background: #1d4ed8;
    color: #ffffff;
}

.order-button-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.order-button-secondary:hover {
    background: #ffffff;
    color: #111827;
}

.order-button-light {
    background: #ffffff;
    color: #1e3a8a;
}

.order-button-light:hover {
    background: #dbeafe;
    color: #1e3a8a;
}


/* SERVICES */

.order-services {
    padding: 100px 0;
    background: #ffffff;
}

.order-section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.order-section-heading h2 {
    margin: 0 0 20px;
    color: #111827;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}

.order-section-heading > p:last-child {
    margin: 0;
    color: #6b7280;
    font-size: 18px;
}

.order-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.order-service-card {
    padding: 40px 30px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.25s ease;
}

.order-service-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.order-service-number {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 8px;
    background: #dbeafe;
    color: #2563eb;
    font-weight: 700;
}

.order-service-card h3 {
    margin: 0 0 15px;
    color: #111827;
    font-size: 24px;
}

.order-service-card p {
    margin: 0;
    color: #6b7280;
}


/* ABOUT */

.order-about {
    padding: 100px 0;
    background: #f8fafc;
}

.order-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.order-about-content h2 {
    margin: 0 0 25px;
    color: #111827;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}

.order-about-content p:not(.order-label) {
    color: #6b7280;
    font-size: 17px;
}

.order-about-content .order-button {
    margin-top: 15px;
}

.order-about-box {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #bfdbfe
        );
}

.order-about-box-content {
    text-align: center;
    color: #1e3a8a;
}

.order-about-box-content strong {
    display: block;
    font-size: 120px;
    line-height: 1;
}

.order-about-box-content span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 8px;
}

.order-about-box-content p {
    margin-top: 15px;
}


/* CTA */

.order-cta {
    padding: 100px 0;
    background: #1e3a8a;
    color: #ffffff;
    text-align: center;
}

.order-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.order-cta h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}

.order-cta p:not(.order-label) {
    margin-bottom: 30px;
    color: #dbeafe;
    font-size: 19px;
}


/* MOBILE */

@media (max-width: 900px) {

    .order-service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .order-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 650px) {

    .order-hero {
        min-height: auto;
    }

    .order-hero-content {
        padding: 80px 0;
    }

    .order-hero h1 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .order-description {
        font-size: 18px;
    }

    .order-services,
    .order-about,
    .order-cta {
        padding: 70px 0;
    }

    .order-service-grid {
        grid-template-columns: 1fr;
    }

    .order-about-box {
        min-height: 320px;
    }

    .order-about-box-content strong {
        font-size: 90px;
    }

    .order-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

}

.custom-logo{
    width: 250px !important;
}

