/*
Theme Name: AzerGid
Theme URI: https://azergid.com
Author: AzerGid
Description: Custom theme for the AzerGid services marketplace.
Version: 0.1.0
Text Domain: azergid
*/

:root {
    --azergid-red: #e10600;
    --azergid-navy: #14213d;
    --azergid-bg: #f7f7f4;
    --azergid-text: #1d2433;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--azergid-bg);
    color: var(--azergid-text);
    font-family: Arial, sans-serif;
}

.azergid-container {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.azergid-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.azergid-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.azergid-logo {
    color: var(--azergid-red);
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
}

.azergid-main {
    min-height: 60vh;
    padding: 80px 0;
}

.azergid-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
}
