body{margin:auto;font-family:Arial, Helvetica, sans-serif}
#arkaplan{position:fixed;left:0;top:0;z-index:-1;}
#baslik{position:fixed;left:80px;top:0;}
#taban{color:#FFF;background:#000;clear:both;margin-left:auto;margin-right:auto;width:100%;height:45px;position: absolute; bottom:0px;}
div#izgara{margin-left:10px;width:280px;border:0px solid #FFF;height:35px;}
#taban span{font-size:12px;font-weight:bold;}
#taban span.bir{float:left;margin-top:10px;}
#taban span.iki{float:right;margin-top:10px;}
#menu{overflow:hidden;border:0px solid #000;clear:both;margin-left:7em;margin-right:auto;width:1100px;height:148px;position: absolute; bottom:45px;}
#menu .kutu{padding:5px;float:left;margin-top:6em;margin-left:20px;background:url('img/menuback.png') no-repeat;width:119px;height:148px;}
#menu #aktif{padding:5px;float:left;margin-top:0;margin-left:20px;background:url('img/rezerv.png') no-repeat;width:119px;height:148px;}
a{color:#FFF;font-weight:bold;font-size:12px;text-decoration:none;}
a:hover{text-decoration:underline;}
#menu #rezerv{margin-top:4em;background:url('img/rezerv.png') no-repeat;}
#icerik{
-webkit-border-top-right-radius: 50px;
-webkit-border-bottom-left-radius: 50px;
-moz-border-radius-topright: 50px;
-moz-border-radius-bottomleft: 50px;
border-top-right-radius: 50px;
border-bottom-left-radius: 50px;
border:1px solid #c1b068;background-color:#c1b068;width:620px;height:380px;margin:2em auto;padding:10px;}
#resimler{overflow:hidden;text-align:center;height:372px;width:140px;border:0px solid #000;position:absolute;top:-32em;left:63em; z-index:9999999999}
#galeri{overflow:hidden;width:140px;height:30px;border:0px solid #000;position:absolute;top:4em;left:63em; z-index:999999999}
#galeri a{margin-left:6em;}
#galeri img#galeribg{top:-35em;position:fixed;z-index:-1;}
#galeri li{position:fixed;top:0;}
#resimparca{float:left;margin-top:15px;border:0px solid #000;width:295px;padding:5px;overflow-y:auto; height:350px}
#ybaslik{color:#FFF;font-weight:bold;font-size:14px;}
#resimparca #yazi{color:#FFF;font-size:12px;}
#diger{border:0px solid #000;float:right;margin-top:15px;height:350px;width:300px;padding:5px;overflow-y: scroll;}
#iletisim{color:#FFF;font-size:12px;}
#iletisim #blok{float:left;border:0px solid #000;width:300px;margin-top:10px;text-align:right;line-height:30px;}
#iletisim #not{padding:5px;float:right;border:0px solid #000;width:300px;line-height:30px;}
#iletisim #not textarea{color:#655a2d;background:#d4c896;padding:2px;border:2px solid #8d814d;margin:4px;}
#iletisim #blok input{color:#655a2d;background:#d4c896;padding:2px;border:2px solid #8d814d;margin:4px;}
#iletisim #blok select{color:#655a2d;background:#d4c896;padding:2px;border:2px solid #8d814d;margin:4px;}
#iletisim #not input{color:#655a2d;background:#d4c896;width:100px;padding:5px 15px 5px 15px;border:2px solid #8d814d;margin:4px;}
#adres{border:0px solid #000;margin:10px;}
ul#hatalar{border:0px solid #000;padding:10px;width:350px;margin:0 auto;margin-top:20px;}
ul#hatalar li{list-style-type:square;margin-left:15px;}

#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
}

/* Popup kutusu */
.popup {
    background: #fff;
    padding: 15px;
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.3s ease;
    z-index: 999999999;
}

/* Kapat butonu */
.close {
    position: absolute;
    top: -12px;
    right: -13px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f1f1;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* X işareti */
.close::before,
.close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #333;
}

.close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover efekti */
.close:hover {
    background: #772921;
}

.close:hover::before,
.close:hover::after {
    background: #fff;
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}