/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Tektur:wght@400;600;700&display=swap');

:root {
    /* Colors */
    --color-bg: #000000;
    --color-bg-secondary: #153914; /* From filter bg */
    --color-bg-card: #FFFFFF;
    --color-bg-faq: rgba(6, 82, 34, 0.25);
    
    --color-text-primary: #EDEDED;   /* rgb(0.929, 0.929, 0.929) */
    --color-text-secondary: #D4D4D4; /* rgb(0.831, 0.831, 0.831) */
    --color-text-muted: #CCCCCC;     /* rgb(0.8, 0.8, 0.8) */
    --color-text-placeholder: #848484; /* For price filter input */
    --color-text-dark: #272727;      /* rgb(0.153, 0.153, 0.153) */
    --color-text-darker: #000000;
    
    --color-accent-gold: #B18A55;    /* rgb(0.694, 0.541, 0.333) */
    --color-white: #FFFFFF;
    
    --color-border: #CFCFCF;         /* rgb(0.796, 0.796, 0.796) */

    /* Gradients */
    --gradient-gold: linear-gradient(90deg, #B18A55 0%, #E8D595 100%);
    --gradient-green: linear-gradient(90deg, #075225 0%, #15A24D 100%);

    /* Fonts */
    --font-primary: 'Tektur', sans-serif;
}

/* Basic Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url(../img/bga.jpg);
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white); /* UPDATED: Changed background to white */
    color: var(--color-text-darker);      /* UPDATED: Changed default text color to dark */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px; /* Based on content width 1586 - 334 = 1252, adding some padding */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Disable text selection globally, allow in form fields */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input, textarea, select, .header__search-input {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
img {
    -webkit-user-drag: none;
}
