body {
margin: 0;
font-family: sans-serif;
}

/* HEADER */
header {
width: 100%;

}
header{
    display: flex;
    justify-content: center;
    height: 100px;
    background-color: #f5f5f5;
    
}
.logo{
  
    max-height: 80px;
}

/* FLAG */
.flag {
width: 100%;
height: 120px;
}

.red {
height: 33.33%;
background: #e30a17;
}

.white {
height: 33.33%;
background: #ffffff;
position: relative;
}

.green {
height: 33.33%;
background: #007a3d;
}
/* SUN */
.sun{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
left:50%;
transform: translate(-50%,-50%);
}


/* TITLE */
.title {
position: absolute;
width: 100%;
top: 30px;
text-align: center;
font-size: 24px;
font-weight: bold;
color: black;
}

/* RESPONSIVE */
@media (min-width: 768px) {
.flag {
height: 160px;
}

sun{
    width: 100px;
  height: 100px;
}

title {
font-size: 32px;
}
}
body{
    margin: 0;
}
.bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/bgkarkuk.jpeg);
    background-size: cover;
    repeat;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(0px);
    z-index: -2;
}


 .overlay{
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}



.content{
    color: white;
    text-align: center;
    margin: 100px;
}
.logo{
    font-weight: bold;
    border: 1px solid; rgba(255,255,255,0,3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0,0.5);
    justify-self: center;
    margin: 0;
    font-size: 24px;
    color: white;
    text-align: center;
    border-radius: 9px;
    padding:5px 10px ;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 25px;
}

.peshake{

    font-style:normal;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0,0.5);
    justify-self: center;
    margin: 0;
    font-size: 15px;
    color: white;
    text-align: center;
    border-radius: 9px;
    padding:5px 5px ;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(0px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 15px;
    width: 95%;
}
a{
    text-decoration: none;
}
.btn{
    
display: block;
  width: 80%;
  margin: 10px auto;
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 20px;
  font-style: italic;
  cursor: pointer;
  transition: 0.3;
}
.btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.footer {
background: linear-gradient(
to top,
rgba(30, 20, 10, 0.95),
rgba(60, 35, 15, 0.85)
);
backdrop-filter: blur(1px);
color: #fff;
padding: 40px 20px 20px;
margin-top: 40px;
}

/* container */
.footer-container {
display: flex;
justify-content: space-between;
gap: 30px;
flex-wrap: wrap;
}

/* sections */
.footer-section {
flex: 1;
min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
margin-bottom: 10px;
color: #fbbf24; /* زەرد گونجاو لەگەڵ دیزاینەکەت */
}

.footer-section p {
font-size: 14px;
opacity: 0.8;
}

/* social */
.social-links {
display: flex;
flex-direction: column;
gap: 8px;
}

.social-links a {
color: #ddd;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.social-links a:hover {
color: #fbbf24;
transform: translateX(-5px);
}

/* map */
.map iframe {
width: 100%;
height: 180px;
border: none;
border-radius: 10px;
margin-top: 10px;
}

/* bottom */
.footer-bottom {
text-align: center;
margin-top: 20px;
border-top: 1px solid rgba(255,255,255,0.2);
padding-top: 10px;
font-size: 13px;
opacity: 0.7;
}

/* 📱 Mobile */
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
text-align: center;
}

.social-links {
align-items: center;
}

.map iframe {
height: 200px;
}
}

.footer-section h3 {
color: #fbbf24;
font-size: 20px;
margin-bottom: 8px;
}



body {
margin: 0;
font-family: sans-serif;
background: linear-gradient(135deg, #d7ccc8, #a1887f); /* شەکری + قاوەی */
}

/* overlay */
#overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(62, 39, 35, 0.7); /* قاوەی تۆخ */
backdrop-filter: blur(5px);
z-index: 999;
}

/* welcome box */
#welcome-box {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);

background: linear-gradient(145deg, #efebe9, #d7ccc8);
padding: 30px;
border-radius: 20px;
text-align: center;

width: 90%;
max-width: 350px;
z-index: 1000;

box-shadow: 0 10px 30px rgba(0,0,0,0.3);

animation: popUp 0.5s ease forwards;
}

/* animation */
@keyframes popUp {
0% {
transform: translate(-50%, -60%) scale(0.7);
opacity: 0;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 1;
}
}

/* title */
#welcome-box h2 {
color: #4e342e; /* قاوەی */
}

/* input */
input {
width: 85%;
padding: 12px;
margin-top: 12px;
border-radius: 10px;
border: none;

background: #f5f5f5;
box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

/* button */
button {
margin-top: 15px;
padding: 12px 25px;
border: none;
border-radius: 10px;

background: linear-gradient(135deg, #6d4c41, #4e342e);
color: white;
font-weight: bold;

cursor: pointer;
transition: 0.3s;
}

/* hover */
button:hover {
transform: scale(1.05);
background: linear-gradient(135deg, #8d6e63, #5d4037);
}

/* text */
#welcomeText {
margin-top: 15px;
color: #3e2723;
font-weight: bold;
}



/* 📱 Mobile tuning */
@media (max-width: 600px) {
.welcome-box {
width: 90%;
padding: 15px;
}

.welcome-box h2 {
font-size: 18px;
}
}
@media (max-width: 768px) {
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
}