/*
// MARK: - public/style.css (نوێکراوەی کۆتایی - باکگراوندی لۆگۆ لابرا)
*/

/* زیادکردنی فۆنتە کوردییەکان لە فۆڵدەری fonts */
@font-face {
    font-family: 'NRT';
    src: url('fonts/NRT-Reg.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'NRT';
    src: url('fonts/NRT-Bold.ttf') format('truetype');
    font-weight: bold;
}

/* ستایلی گشتی */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'NRT', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F9F9F9; /* ڕەنگی باکگراوندی سەرەکی */
    color: #3D3D3D; /* ڕەنگی نووسینی سەرەکی */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    overflow: hidden; /* ڕێگری لە سکرۆڵکردن */
}

.container {
    max-width: 600px;
    width: 100%;
}

/* لۆگۆ */
.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.logo img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
/* بەشی سەرەکی */
.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #3D3D3D;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #8A8A8E;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ستایلی دوگمەکان */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.2s ease-out;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background-color: #FFDB58;
    color: #3D3D3D;
    box-shadow: 0 6px 20px rgba(255, 219, 88, 0.5);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 219, 88, 0.6);
}
