/* -------------------------------------------------------------
   Global Variables & Base
------------------------------------------------------------- */
:root {
    /* Colours */
    --primary: #a83552;            /* Deep pink – your brand */
    --secondary: #2e7498;          /* Cool blue */
    --bg: #ffffff;
    --light: #f8fafc;
    --text: #2d3436;
    --border: #e0e0e0;
    --shadow: rgba(0,0,0,0.08);

    /* Typography */
    --font-stack: 'Poppins', sans-serif;

    /* Transition */
    --trans: all 0.3s ease-in-out;
}

/* Reset & Basics */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-stack);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    margin: 0;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* 4️⃣ Logo styling -------------------------------------------- */
.logo img {
    display: block;          /* removes the tiny bottom gap */
    max-width: 100px;        /* cap the width on desktop */
    height: auto;
    transition: var(--trans);
}
.logo:hover img,
.logo:focus img {
    transform: translateY(-3px);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

/* -------------------------------------------------------------
   Navigation
------------------------------------------------------------- */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--trans);
}
#header.scrolled { background: var(--bg); box-shadow: 0 4px 12px var(--shadow); }

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--text); }
.logo span { color: var(--primary); }

nav ul { list-style: none; display: flex; gap: 35px; }
nav a { font-weight: 500; font-size: 0.95rem; }
nav a:hover { color: var(--primary); }

#menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Mobile menu */
@media (max-width: 768px) {
    nav ul { display: none; flex-direction: column; gap: 15px; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); padding: 20px 0; }
    #menu-toggle { display: block; }
}

/* -------------------------------------------------------------
   Hero
------------------------------------------------------------- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)), url('./bgylf.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero h1 { font-size: 3.8rem; font-weight: 700; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; }
.hero-buttons a { margin: 0 10px; }
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
}

/* -------------------------------------------------------------
   Profile
------------------------------------------------------------- */
.profile { padding: 120px 0; background: var(--bg); }
.profile h2 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }
.profile p { max-width: 900px; margin: 0 auto 20px; line-height: 1.7; font-size: 1.1rem; }
.profile-list { list-style: none; padding: 0; max-width: 700px; margin: 0 auto; }
.profile-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 1rem; }
.profile-list li::before { content: "\2022"; position: absolute; left: 0; color: var(--primary); font-size: 1.4rem; top: 0; }

/* -------------------------------------------------------------
   Services
------------------------------------------------------------- */
.services { padding: 120px 0; background: var(--light); }
.services h2 { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: var(--bg); padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 4px 6px var(--shadow); transition: var(--trans); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px var(--shadow); }
.service-card i { font-size: 45px; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: #777; font-size: 0.95rem; }

/* -------------------------------------------------------------
   Counter
------------------------------------------------------------- */
.counter-section { padding: 80px 0; background: var(--bg); text-align: center; }
.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; }
.counter-card { }
.counter { font-size: 3rem; font-weight: 700; color: var(--primary); }
.counter-label { font-size: 1rem; color: #777; margin-top: 5px; }

/* -------------------------------------------------------------
   Inventory
------------------------------------------------------------- */
.inventory { padding: 120px 0; background: var(--light); }
.inventory h2 { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }
.inventory-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.inventory-card { background: var(--bg); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px var(--shadow); transition: var(--trans); }
.inventory-card img { height: 200px; object-fit: cover; }
.inventory-card .info { padding: 20px; }
.inventory-card .info h3 { font-size: 1.2rem; margin-bottom: 10px; }
.inventory-card .info p { font-size: 0.9rem; color: #777; margin-bottom: 10px; }
.inventory-card .category { font-size: 0.75rem; background: #eef2f5; color: var(--primary); padding: 6px 15px; border-radius: 50px; display: inline-block; font-weight: 700; }

/* -------------------------------------------------------------
   Process
------------------------------------------------------------- */
.process { padding: 120px 0; background: var(--bg); }
.process h2 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }
.process p { text-align: center; font-size: 1rem; max-width: 700px; margin: 0 auto 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.step-card { background: var(--bg); padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px var(--shadow); text-align: center; }
.step-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.step-card p { color: #777; font-size: 0.95rem; }
.process-cta { text-align: center; margin-top: 40px; }

/* -------------------------------------------------------------
   Contact
------------------------------------------------------------- */
.contact { padding: 120px 0; background: var(--bg); }
.contact h2 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; transition: var(--trans); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form button { background: var(--primary); color: var(--bg); padding: 12px 28px; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; transition: var(--trans); }
.contact-form button:hover { background: #7c2d3b; transform: translateY(-2px); }

/* -------------------------------------------------------------
   Footer
------------------------------------------------------------- */
footer { background: #1a1a1a; color: #fff; padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 60px; }
.footer-about .logo, .footer-about .logo span { color: #fff; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aaa; transition: var(--trans); }
.footer-links a:hover { color: var(--primary); }
.footer-contact h4 { margin-bottom: 20px; }
.footer-contact p { color: #aaa; margin-bottom: 10px; }
.footer-contact i { color: var(--primary); margin-right: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 30px; font-size: 0.85rem; color: #666; }

/* -------------------------------------------------------------
   Accessibility & Focus
------------------------------------------------------------- */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* -------------------------------------------------------------
   IntersectionObserver Reveal
------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: var(--trans); }
.reveal.show { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------
   Utilities
------------------------------------------------------------- */
.hidden { display: none; }
