@import url('fonts/fonts.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body._основа_алфа {
    font-family: 'Lora', serif;
    background-color: #121212; /* Deep charcoal almost black */
    color: #E0E0E0; /* Soft light gray */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    /* CSS Grid Visual Order Scrambling */
    grid-template-areas: 
        "шапка_алфа"
        "банер_алфа"
        "цени_алфа"
        "за_нас_алфа"
        "контакти_алфа"
        "пета_алфа";
    min-height: 100vh;
}

/* Fallback for subpages */
body._основа_вътрешна_алфа {
    font-family: 'Lora', serif;
    background-color: #121212;
    color: #E0E0E0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
        "шапка_алфа"
        "съдържание_алфа"
        "пета_алфа";
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: #D4AF37; /* Metallic Gold */
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F1C40F;
}

/* Scrambled Grid Areas */
._главно_меню { grid-area: шапка_алфа; }
._начало_банер { grid-area: банер_алфа; }
._цени_услуги { grid-area: цени_алфа; }
._инфо_салон { grid-area: за_нас_алфа; }
._форма_връзка { grid-area: контакти_алфа; }
._край_долу { grid-area: пета_алфа; }
._съдържание_зона { grid-area: съдържание_алфа; padding: 60px 10%; background-color: #1A1A1A; }

/* Header */
._главно_меню {
    background-color: #0A0A0A;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #D4AF37;
}

._главно_меню ._лого_злато {
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
}

._главно_меню nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

._главно_меню nav ul li a {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
}
._главно_меню nav ul li a:hover { color: #D4AF37; }

/* Hero */
._начало_банер {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    gap: 50px;
}

._текст_банер {
    flex: 1;
    max-width: 600px;
}

._текст_банер h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.1;
}

._текст_банер p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #B0B0B0;
}

._бутон_златен {
    display: inline-block;
    padding: 18px 40px;
    background-color: #D4AF37;
    color: #0A0A0A !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
}

._бутон_златен:hover {
    background-color: transparent;
    color: #D4AF37 !important;
}

._изображение_салон {
    flex: 1;
    text-align: center;
}

._изображение_салон img {
    max-width: 100%;
    border-radius: 5px;
    border: 3px solid #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* Pricing / Services */
._цени_услуги {
    padding: 80px 5%;
    background-color: #1A1A1A;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

._цени_услуги h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

._списък_цени {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

._артикул_цена {
    background-color: #222;
    padding: 40px;
    border-radius: 3px;
    border-left: 4px solid #D4AF37;
    text-align: left;
    transition: transform 0.3s ease;
}

._артикул_цена:hover {
    transform: translateY(-5px);
}

._артикул_цена h3 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #555;
    padding-bottom: 10px;
}

._артикул_цена h3 span { color: #E0E0E0; font-family: 'Oswald', sans-serif; }
._артикул_цена p { font-size: 15px; color: #999; margin-top: 15px; font-style: italic; }

/* About */
._инфо_салон {
    padding: 80px 5%;
    background-color: #121212;
    text-align: center;
}

._инфо_салон h2 { font-size: 42px; margin-bottom: 30px; }
._инфо_салон p { font-size: 18px; max-width: 800px; margin: 0 auto; line-height: 1.8; color: #B0B0B0; }

/* Contact */
._форма_връзка {
    padding: 80px 5%;
    background-color: #1A1A1A;
    text-align: center;
}

._форма_връзка h2 { font-size: 42px; margin-bottom: 40px; }

._полета_тъмни {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

._полета_тъмни input, ._полета_тъмни textarea {
    width: 100%;
    padding: 18px;
    background-color: #0A0A0A;
    border: 1px solid #444;
    color: #E0E0E0;
    font-family: 'Lora', serif;
    border-radius: 2px;
}

._полета_тъмни input:focus, ._полета_тъмни textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

/* Footer */
._край_долу {
    background-color: #050505;
    padding: 40px 5%;
    text-align: center;
    color: #666;
    border-top: 2px solid #D4AF37;
}

._край_долу p { margin-bottom: 15px; }
._край_долу a { color: #888; margin: 0 15px; font-size: 14px; font-family: 'Oswald', sans-serif; letter-spacing: 1px;}
._край_долу a:hover { color: #D4AF37; }

/* Inner pages styles */
._съдържание_зона h1 { font-size: 44px; margin-bottom: 30px; }
._съдържание_зона h2 { font-size: 30px; margin: 50px 0 20px; border-bottom: 1px solid #333; padding-bottom: 10px;}
._съдържание_зона p, ._съдържание_зона ul { font-size: 18px; line-height: 1.8; margin-bottom: 20px; color: #B0B0B0; }
._съдържание_зона ul { padding-left: 20px; }

@media (max-width: 768px) {
    ._начало_банер { flex-direction: column; text-align: center; padding: 50px 5%; }
    ._главно_меню { flex-direction: column; gap: 20px; }
    ._артикул_цена h3 { flex-direction: column; gap: 5px; border-bottom: none;}
}
