/*
Theme Name: chụp ảnh dạnh web chupanhdao.com
Theme URI: https://chupanhdao.com
Author: Antigravity
Author URI: https://example.com
Description: A premium, lightweight WordPress theme for news and blogs.
Version: 2.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chup-anh-dao
*/

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary: hsl(0, 0%, 0%);
    --primary-alt: hsl(0, 0%, 20%);
    --secondary: hsl(0, 0%, 100%);
    --bg-body: hsl(0, 0%, 98%);
    --bg-card: hsl(0, 0%, 100%);
    --text-main: hsl(0, 0%, 15%);
    --text-muted: hsl(0, 0%, 45%);
    --border-color: hsl(0, 0%, 90%);
    --accent: hsl(210, 100%, 50%);
    /* Subtle accent for links or highlights */

    /* Spacing */
    --container-max: 1200px;
    --gap-sm: 0.75rem;
    --gap-md: 1.5rem;
    --gap-lg: 3rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

button,
.button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

/* Base Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}