
/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #000;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: 100%;
  padding: 60px 5%;
  background-size: cover;
  background-position: center;
}
h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}
h5 {
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 0 #999;
}
p {
  color: #fff;
  font-size: 0.9rem;
  margin-top: 10px;
  line-height: 1.5;
}
.hero{
	background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),
  url("image/backgroundkrd.png");
}
#halabja{
	background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url("image/background2.jpeg");
}
/* Navigation */
header {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}
.logo {
  width: 50px;
}
.menu-icon {
  display: none;
  width: 30px;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 30px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

/* Hero + Halabja Shared */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.col {
  flex: 1 1 45%;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.card, .carda {
  width: 220px;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 15px;
  color: #fff;
  text-shadow: 0 0 8px #000;
  transition: transform 0.3s ease-in-out;
}
.card:hover, .carda:hover {
  transform: translateY(-10px);
}
.card1 { background-image: url("image/duhok.jpg"); }
.card2 { background-image: url("image/arbil.jpg"); }
.card3 { background-image: url("image/sol.jpg"); }
.card4 { background-image: url("image/zaxo.jpeg"); }

.carda.ca1 { background-image: url("image/picc-1.jpg"); }
.carda.ca2 { background-image: url("image/picc-2.jpg"); }
.carda.ca3 { background-image: url("image/picc3.jpeg"); }
.carda.ca4 { background-image: url("image/picc-4.jpg"); }

/* Buttons */
button, .btn {
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
  font-size: 0.9rem;
  cursor: pointer;
}
.btn:hover {
  background: #e4b95b;
  color: #fff;
}

/* Gallery */
/* Gallery Section (Restored to original interactive style) */
#gallery{
	background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),
	url("image/background3.jpg");
	background-repeat: no-repeat;
	background-size: cover;	
	padding-left: 8%;
	padding-right: 8%;
	box-sizing: border-box;

}

.gallery{
	width: 85vw;
	height: 80vh;
	display: flex;
	gap: 5px;

}
.gallery img{
	height: 90%;
	flex: 1;
	object-fit: cover;
	overflow: hidden;
	cursor: pointer;
	border-radius: 35px;
	margin-top: 10px;
	border: 2px solid #ff3d0036;
	box-shadow: 4px 7px 7px 0px #00000042;
	transition: 0.5s;
	filter: grayscale(0.8);
}
.gallery .pic1 {
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery .pic1:hover {
  transform: scale(1.05);
}
.pic1:hover{
	flex: 6;
	filter: grayscale(0.0);
}

/* Responsive fallback if viewport is small */
@media (max-width: 768px) {
  .gallery {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
  }

  .gallery .pic1 {
    flex: 1 1 45%;
    height: 200px;
  }

  .gallery .pic1:hover {
    flex: 1 1 90%;
  }
}

@media (max-width: 480px) {
  .gallery .pic1 {
    flex: 1 1 100%;
    height: 180px;
  }
}


/* Contact Section */
#contact {
  background: #f4f4f4;
  color: #333;
  padding: 60px 5%;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-info {
  flex: 1 1 45%;
}
.contact-info h3 {
  color: #e4b95b;
  margin-bottom: 10px;
}
.contact-info p, .contact-info a {
  color: #555;
  font-size: 0.9rem;
}
.contact-info a i {
  color: #fff;
  background: #383848;
  padding: 12px;
  border-radius: 50%;
  margin-right: 10px;
}
.contact-info a i:hover {
  background: #e4b95b;
  color: #000;
}
form {
  flex: 1 1 45%;
}
form input, form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  background: #e3e2dd;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #383848;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}
footer a {
  color: #fff;
}

/* Responsive Queries */
@media (max-width: 992px) {
  .col {
    flex: 1 1 100%;
  }
  .gallery img {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .navbar {
    flex-wrap: wrap;
  }
  .menu-icon {
    display: block;
  }
  .gallery img {
    width: 100%;
  }
  h1 {
    font-size: 2rem;
  }
  button, .btn {
    width: 100%;
  }
}
