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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Brutalist rule: no rounded corners anywhere */
    border-radius: 0 !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #050505; /* Deep forge black */
    color: #B0BEC5; /* Raw steel gray */
    overflow-x: hidden;
}

h1, h2, h3, ._главен_шрифт {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1, h2 { color: #FFFFFF; }
h3 { color: #FF3D00; } /* Glowing ember orange */

a {
    color: #FF3D00;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}
a:hover { border-bottom-color: #FF3D00; }

/* The Brutalist Split-Screen Scrambler */
._ковашка_рамка {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "ляво дясно";
    min-height: 100vh;
}

._вътрешна_рамка {
    display: flex;
    flex-direction: column;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    ._ковашка_рамка {
        grid-template-columns: 1fr;
        grid-template-areas: "ляво" "дясно";
    }
    ._неподвижна_снимка { position: relative !important; min-height: 50vh; }
}

/* Left side - Fixed Image */
._неподвижна_снимка {
    grid-area: ляво;
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: url('images/forge.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

._неподвижна_снимка::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, #050505 100%);
}

._лого_ковач {
    position: relative;
    z-index: 2;
    font-size: 80px;
    font-family: 'Bebas Neue', sans-serif;
    color: #FFFFFF;
    text-shadow: 4px 4px 0px #FF3D00;
    line-height: 0.9;
    text-align: right;
    padding-right: 40px;
    width: 100%;
}

/* Right side - Scrolling Content */
._скролираща_зона {
    grid-area: дясно;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Scrambled Sections inside _скролираща_зона */
/* HTML: Footer(1) -> Services(2) -> Contact(3) -> Hero(4) -> Nav(5) -> About(6) */
._навигация_горе { order: 1; }
._главен_текст { order: 2; }
._инфо_за_нас { order: 3; }
._ковашки_услуги { order: 4; }
._контактна_форма { order: 5; }
._край_футър { order: 6; }

/* Blocks styling */
._блок {
    padding: 80px 60px;
    border-bottom: 2px solid #1A1A1A;
}

/* Nav */
._навигация_горе {
    padding: 40px 60px;
    border-bottom: 4px solid #FF3D00;
    background-color: #0A0A0A;
}
._навигация_горе ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
._навигация_горе a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
}

/* Hero Text */
._главен_текст h1 { font-size: 70px; line-height: 0.95; margin-bottom: 30px; }
._главен_текст p { font-size: 20px; line-height: 1.6; margin-bottom: 40px; color: #90A4AE; }

._железен_бутон {
    display: inline-block;
    padding: 20px 40px;
    background-color: #FF3D00;
    color: #FFFFFF !important;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    border: 3px solid #FF3D00;
    transition: 0.2s;
    cursor: pointer;
}
._железен_бутон:hover {
    background-color: transparent;
    color: #FF3D00 !important;
}

/* About */
._инфо_за_нас h2 { font-size: 50px; margin-bottom: 25px; }
._инфо_за_нас p { font-size: 18px; line-height: 1.7; }

/* Services */
._ковашки_услуги h2 { font-size: 50px; margin-bottom: 40px; }
._мрежа_услуги {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
._услуга_елемент {
    border-left: 6px solid #FF3D00;
    padding-left: 25px;
}
._услуга_елемент h3 { font-size: 32px; margin-bottom: 15px; }
._услуга_елемент p { font-size: 16px; line-height: 1.6; }

/* Contact */
._контактна_форма h2 { font-size: 50px; margin-bottom: 30px; }
._форма_сурова {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
._форма_сурова input, ._форма_сурова textarea {
    width: 100%;
    padding: 20px;
    background-color: #000000;
    border: 2px solid #333333;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: 0.2s;
}
._форма_сурова input:focus, ._форма_сурова textarea:focus {
    outline: none;
    border-color: #FF3D00;
}

/* Footer */
._край_футър {
    padding: 40px 60px;
    background-color: #000000;
    text-align: right;
}
._край_футър p { margin-bottom: 15px; font-size: 14px; }
._край_футър a { font-size: 14px; margin-left: 20px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }

/* Inner pages specifics */
._вътрешна_рамка h1 { font-size: 60px; margin-bottom: 30px; }
._вътрешна_рамка h2 { font-size: 36px; margin: 40px 0 20px; color: #FF3D00; }
._вътрешна_рамка p { font-size: 18px; line-height: 1.8; margin-bottom: 20px; }
