/* ==========================================================
   STYLE.CSS
   Global styles, typography, common layout, buttons, links
   Techno Windows — Black / White / Gray premium theme
   ========================================================== */

/* ----- Reset ----- */

:root {
        --body: #fff;
        --black: #000;
        --white: #fff;
        --theme: #8f8e8e;
        --header: #1C1C1C;
        --text: #434343;
        --text-2: #8f8e8e;
        --border: #C9C9C9;
        --border-2: #CBCCCF;
        --bg: #FFFAF4;
        --bg-2: #FFFAF4;
        --bg-3: #F8F8F8;
 
        --tw-dark: var(--header);
        --tw-accent: var(--theme);
        --card-image: url('/assets/hero.jpg');
 
       


         --ink: #1C2430;
    --text: #5B6472;
    --muted: rgba(28, 36, 48, .6);
 
    --accent: var(--theme);    
    --accent-rgb: 47, 111, 94;
    --accent-soft: #EDF3F1;
 
    --line: #E7E5E0;
    --paper: #FAF9F6;
    --card: #ffffff;
 
    --shadow-sm: 0 4px 12px rgba(28, 36, 48, .05);
    --shadow-md: 0 14px 30px rgba(28, 36, 48, .08);
 
    --radius-md: 14px;
    --radius-lg: 20px;
 
    --font-display: "Fredoka", sans-serif;
    --font-text: "Fredoka", sans-serif;
    --transition: .25s ease;
    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    color: #434343;
    background: #fff;
        overflow-x: hidden;

   
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;

}

/* ----- Typography ----- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1C1C1C;
    line-height: 1.2;
}

p {
    line-height: 1.7;
}

/* Visible keyboard focus state (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible,
.navbar ul li a:focus-visible {
    outline: 2px solid #1C1C1C;
    outline-offset: 3px;
}

/* ----- Common layout / utility classes ----- */
.section {
    padding: 90px 0;
}

.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8f8e8e;
    margin-bottom: 14px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: #1C1C1C;
}

.section-subtitle {
    font-size: 16px;
    color: #626262;
    line-height: 1.7;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ----- Buttons ----- */
.btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    padding: 16px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.primary-btn {
    background-color: #000;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.primary-btn:hover {
    background-color: #1C1C1C;
}

/* Outline-style button used for the WhatsApp CTA — brand colour intentionally
   omitted to keep the black / white / gray theme consistent. */
.btn-whatsapp {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    margin-left: 12px;
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-whatsapp i {
    font-size: 15px;
}



 .navbar__menu .has-dropdown {
        position: relative;
        z-index: 999999;
    }

    .navbar__menu .dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .navbar__menu .dropdown-arrow {
        font-size: 11px;
        margin-left: 2px;
        display: inline-block;
        transition: transform .25s ease;
    }

    .navbar__menu .has-dropdown.open>.dropdown-toggle .dropdown-arrow,
    .navbar__menu .has-dropdown:hover>.dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }

    .navbar__menu .dropdown-menu {
        list-style: none;
        margin: 0;
        padding: 8px;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        display: block;
        min-width: 240px;
        background: var(--card, #fff);
        border: 1px solid var(--line, #E7E5E0);
        border-radius: var(--radius-md, 14px);
        box-shadow: var(--shadow-md, 0 14px 30px rgba(28, 36, 48, .08));
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        z-index: 100;
        -webkit-transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        -moz-transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        -ms-transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        -o-transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

    .navbar__menu .has-dropdown:hover>.dropdown-menu,
    .navbar__menu .has-dropdown.open>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar__menu .dropdown-menu li+li {
        margin-top: 2px;
    }

    .navbar__menu .dropdown-menu a {
        display: block;
        padding: 10px 14px;
        border-radius: 8px;
        color: var(--ink, #1C2430);
        font-family: var(--font-text, inherit);
        font-size: 14px;
        white-space: nowrap;
    }

    .navbar__menu .dropdown-menu a:hover {
        background: var(--accent-soft, #EDF3F1);
        color: var(--accent, #8f8e8e);
    }

