html, body
{
   height: 100%;
}
div#space
{
   width: 1px;
   height: 50%;
   margin-bottom: -2825px;
   float:left
}
div#container
{
   width: 1024px;
   height: 5650px;
   margin: 0 auto;
   position: relative;
   clear: left;
}
body
{
   background-color: transparent;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #696969;
   text-decoration: underline;
}
a:visited
{
   color: #FFFFFF;
}
a:active
{
   color: #CD5C5C;
}
a:hover
{
   color: #000000;
   text-decoration: underline;
}
#wb_Image1
{
   vertical-align: top;
}
#Image1
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_TextMenu1
{
   background-color: transparent;
   background-image: none;
   color: #87CEFA;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
   font-size: 17px;
   margin: 0;
   text-align: center;
   overflow: hidden;
}
#wb_TextMenu1 span
{
   margin: 0 50px 0 0px;
}
#wb_TextMenu1 a
{
   color: inherit;
   text-decoration: inherit;
}
#wb_TextMenu2
{
   background-color: transparent;
   background-image: none;
   color: #87CEFA;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
   font-size: 17px;
   margin: 0;
   text-align: center;
   overflow: hidden;
}
#wb_TextMenu2 span
{
   margin: 0 50px 0 0px;
}
#wb_TextMenu2 a
{
   color: inherit;
   text-decoration: inherit;
}
#wb_Image5
{
   vertical-align: top;
}
#Image5
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f8f9fa;
            line-height: 1.6;
        }
        h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

.gallery-item {
    flex: 1 1 calc(33.333% - 20px); /* 3'lü sığdırmak için */
    max-width: calc(33.333% - 20px); /* 3'lü sığdırmak için */
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}
        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .gallery-image {
    width: 300px; /* Sabit genişlik */
    height: 300px; /* Sabit yükseklik */
}
        .gallery-title {
            padding: 18px;
            text-align: center;
            color: #34495e;
            font-weight: 600;
            margin: 0;
            font-size: 1.2rem;
            background: linear-gradient(to bottom, #ffffff, #f9f9f9);
        }
        
        /* Lightbox Stili */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.95);
            z-index: 1000;
            justify-content: center;
            align-items: flex-start;
            padding: 40px 0;
            overflow-y: auto;
        }
        .lightbox-container {
            width: 90%;
            max-width: 1200px;
            background: #111;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0,0,0,0.6);
        }
        .lightbox-content {
            display: flex;
            flex-direction: column;
        }
        .lightbox-content img {
            width: 100%;
            max-height: 100vh;
            object-fit: contain;
            background: #000;
        }
        .lightbox-text {
            padding: 30px;
            color: #ecf0f1;
        }
        .lightbox-text h2 {
            margin-top: 0;
            color: #3498db;
            font-size: 2rem;
            border-bottom: 1px solid #34495e;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .lightbox-text p {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        .close-btn {
            position: fixed;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
            z-index: 1001;
        }
        .close-btn:hover {
            color: #e74c3c;
        }
        
        /* Kaydırma çubuğu stil */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #222;
        }
        ::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        
        @media (max-width: 768px) {
            .lightbox-container {
                width: 95%;
            }
            .lightbox-text {
                padding: 20px;
            }
            .lightbox-text h2 {
                font-size: 1.5rem;
            }
            .gallery-item {
                flex: 1 1 300px;
            }
        }
    