/* ===================================
    About
====================================== */

/*
    Theme Name: Dark
    Theme URI:
    Author: Zeljko Antesevic
    Author URI:
    Description: Popup prozor za Facebook, Instargram ukoliko ne postiji link. U pripremi !
    Tags: one page, multipurpose, parallax, creative, html5
 */

	.popup {
	  display: none;
	  position: fixed;
	  z-index: 999;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(0,0,0,0.7);
	  animation: fadeIn 0.3s ease-in-out;
	}

	.popup-content {
	  background-color: #1c1c1c;
	  color: #f0f0f0;
	  margin: 12% auto;
	  padding: 30px 20px;
	  width: 320px;
	  text-align: center;
	  border-radius: 12px;
	  box-shadow: 0 0 20px rgba(0,0,0,0.5);
	  position: relative;
	}

	.popup-content h2 {
	  margin-bottom: 10px;
	  font-size: 22px;
	  font-weight: 300;
	}

	.popup-content p {
	  font-size: 16px;
	  color: #ccc;
	}

	.close {
	  position: absolute;
	  top: 12px;
	  right: 15px;
	  font-size: 24px;
	  font-weight: normal;
	  color: #aaa;
	  cursor: pointer;
	  transition: color 0.3s ease;
	}

	.close:hover {
	  color: #fff;
	}

	@keyframes fadeIn {
	  from {opacity: 0;}
	  to {opacity: 1;}
	}
