/* =============================================
   RIBBON & LABEL SUPPLIES — Global Stylesheet
   Matching the clean Contact.html template
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Montserrat:wght@700;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.6;
    color: #444;
    background: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

a { text-decoration: none; color: #292983; transition: color 0.3s; }
a:hover { color: #363699; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: "Open Sans", Arial, sans-serif; color: #292983; line-height: 1.3; }

/* ── HEADER — exactly matching Contact.html ── */
header {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 2px solid #292983;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link img { max-width: 260px; height: auto; display: block; }

nav ul { list-style: none; display: flex; flex-wrap: wrap; }
nav li { margin-left: 25px; }
nav a {
    text-decoration: none;
    color: #292983;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: color 0.3s;
}
nav a:hover, nav a.active { color: #363699; }
nav a.nav-shop {
    background: #292983;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
}
nav a.nav-shop:hover { background: #363699; color: #fff; }

/* Mobile hamburger — hidden by default */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #292983;
    margin: 5px 0;
    transition: all 0.3s;
}

/* ── PAGE HERO BANNER ── */
.page-hero {
    background: linear-gradient(135deg, #1e1e60 0%, #292983 60%, #363699 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}
.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.6);
    position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #fff; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: #292983; color: #fff; }
.btn-primary:hover { background: #363699; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #292983; border: 2px solid #292983; }
.btn-outline:hover { background: #292983; color: #fff; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
    background: linear-gradient(135deg, #eaeff6, #dde3ec);
    border: 2px dashed #c8d0dc;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #292983;
    font-size: 13px;
    font-weight: 600;
    min-height: 200px;
}
.img-placeholder i { font-size: 40px; opacity: 0.3; margin-bottom: 10px; }
.img-placeholder span { opacity: 0.5; }

/* ── SECTION UTILITY ── */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8a020;
    margin-bottom: 8px;
}
.section-title { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 14px; }
.section-intro { color: #666; font-size: 1rem; max-width: 620px; }

/* ── FOOTER — clean, matching template ── */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0 0;
    margin-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}
footer h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #fff;
}
footer p, footer li { font-size: 14px; color: #bbb; line-height: 1.8; }
footer ul { list-style: none; }
footer ul li a { color: #bbb; transition: color 0.3s; }
footer ul li a:hover { color: #fff; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #bbb;
}
.footer-contact-item i { color: #e8a020; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: #bbb; }
.footer-contact-item a:hover { color: #fff; }
.footer-socials { display: flex; gap: 14px; margin-top: 8px; }
.footer-socials a { color: #bbb; font-size: 20px; transition: color 0.3s; }
.footer-socials a:hover { color: #fff; }
.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding: 18px 0;
    font-size: 12px;
    color: #888;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .header-flex { flex-direction: column; gap: 12px; }
    nav ul { justify-content: center; }
    nav li { margin: 4px 8px; }
    .logo-link { margin-bottom: 4px; }
}

@media (max-width: 600px) {
    .logo-link img { max-width: 200px; }
    .page-hero { padding: 40px 15px; }
    nav li { margin: 3px 6px; }
    nav a { font-size: 12px; }
}
