 
   html, body {
  margin: 0;
  padding: 0;
  background-color: #0f0f0f; 
}




body{
    margin:0;
    font-family:Arial, sans-serif;
    opacity:0;
    transition:opacity 0.8s ease-in-out;

    overflow-x: hidden;
overflow-y: auto;
}

body.loaded{opacity:1;}
a{text-decoration:none;}

body.menu-open {
    overflow: hidden;
}


#main-nav {
    position: relative;
    height: 100px;
    background: linear-gradient(
        180deg,
        rgba(25,25,25,0.98),
        rgba(10,10,10,0.95)
    );
    border-bottom: 2px solid #d6b25e;
    box-shadow: 0 8px 25px rgba(214,178,94,0.35);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0; 
}


.logo img:hover {
    filter:
        brightness(1.15)
        saturate(0.95)
        contrast(1.1)
        hue-rotate(-4deg)
        drop-shadow(0 0 12px rgba(255,232,163,0.8));
}

.logo img {
    height: 110px; 
    margin-left: -10px; 
}
.logo .site-title {
    color: #ffe8a3;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Trajan Pro", "Cinzel", "Times New Roman", serif;

        text-shadow:
        0 0 6px rgba(255,232,163,0.7),
        0 0 14px rgba(214,178,94,0.6),
        0 0 28px rgba(214,178,94,0.4);

 
    display: inline-block;
    animation: logoGlow 3.5s ease-in-out infinite;
}


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 75px;
    margin: 0 auto;    
    padding: 0;
}


.nav-links a {
    color: #ffe8a3;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2.5px;
    position: relative;
    text-shadow:
    0 0 5px rgba(255,232,163,0.55),
    0 0 12px rgba(214,178,94,0.45),
    0 0 24px rgba(214,178,94,0.35);


   animation: menuGlow 3s ease-in-out infinite;
    transition: all 0.35s ease;
}




   


#hero::after{
    content:'';
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.65);
}


.hero-content{
    position:relative;
    z-index:10;
    text-align:center;
    padding:60px 100px;
    background: rgba(8,8,8,0.65);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius:20px;
    border:2px solid #d6b25e;
    box-shadow:0 0 0 5px rgba(214,178,94,0.4),
               0 10px 40px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out;
     max-height: 100%;
    overflow: hidden;

}

.hero-content h1{
    font-size:5.5rem;
    margin:0;
  color:#f2e2b0;

    font-weight:900;
    text-shadow:0 0 10px rgba(214,178,94,0.9),
                 0 0 25px rgba(0,0,0,0.9);
    letter-spacing:4px;
    animation: titleBreath 4s ease-in-out infinite;
}

.hero-content p{
    font-size:1.7rem;
    color:#d8c58a;

    margin-top:20px;
    margin-bottom:40px;
    font-weight:bold;
    text-shadow:0 0 8px rgba(0,0,0,0.8);
    letter-spacing:1px;
    opacity:0;
animation: textFade 1.2s ease-out forwards;
animation-delay:0.4s;

}

.hero-btn{
    padding:18px 50px;
    background:linear-gradient(180deg, #ffe08a, #d6b25e);
    color:#333;
    font-weight:900;
    font-size:1.2rem;
    border-radius:10px;
    border:1px solid #d6b25e;
    box-shadow:inset 0 2px 5px rgba(0,0,0,0.2),
               0 5px 25px rgba(0,0,0,0.5),
               0 0 15px rgba(255,223,128,0.7);
    transition:all 0.4s ease-in-out;
    text-transform:uppercase;
    cursor:pointer;
    animation: btnPulse 3s ease-in-out infinite;

}
.hero-btn:hover{
    transform:translateY(-5px) scale(1.05);
    background:linear-gradient(180deg, #fff9e0, #ffe08a);
    box-shadow:inset 0 2px 5px rgba(0,0,0,0.1),
               0 15px 35px rgba(0,0,0,0.8),
               0 0 30px rgba(255,230,150,1);
}

@keyframes fadeInUp{
    from{opacity:0; transform:translateY(50px);}
    to{opacity:1; transform:translateY(0);}
}

@media(max-width:992px){
    .hero-content{padding:40px 60px;}
    .hero-content h1{font-size:3.5rem; letter-spacing:2px;}
    .hero-content p{font-size:1.4rem;}
    .hero-btn{padding:14px 35px;}
}

@media(max-width:768px){
    .hero-content{padding:30px 40px;}
    .hero-content h1{font-size:2.8rem;}
    .hero-content p{font-size:1.2rem;}
    .hero-btn{padding:12px 28px;}
}

@media(max-width:480px){
    .hero-content{padding:25px;}
    .hero-content h1{font-size:2.2rem;}
    .hero-content p{font-size:1rem;}
}
/* Dil butonları */
.lang-switch{
    display:flex;
    gap:14px;   
}
.lang-btn{
    background: rgba(20,20,20,0.75);
    border: 2px solid #d6b25e;
    color: #ffe8a3;
    padding: 8px 18px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.35s ease;

    text-shadow: 0 0 6px rgba(255,232,163,0.6);
    box-shadow:
        inset 0 0 10px rgba(0,0,0,0.6),
        0 0 12px rgba(214,178,94,0.5);
}
.lang-btn:hover{
    background: linear-gradient(180deg, #ffe8a3, #d6b25e);
    color: #1a1a1a;
    box-shadow:
        0 0 18px rgba(255,232,163,0.9),
        0 0 35px rgba(214,178,94,0.9);
    transform: translateY(-2px) scale(1.05);
}
.lang-btn.active{
    background: linear-gradient(180deg, #fff2c6, #ffe08a);
    color: #1a1a1a;
    border-color: #ffe08a;
    box-shadow:
        0 0 20px rgba(255,232,163,1),
        0 0 40px rgba(214,178,94,0.9);
}


.lang-btn.active,
.lang-btn:hover{
    background:#f0d896;
    color:#1a1a1a;
}
/* BURGER MENÜ */
.burger{
    display:none;
    font-size:32px;
    color:#f0d896;
    cursor:pointer;
}
@media(max-width:768px){

   
    .burger{
        display:block;
    }

    .nav-links{
        display:none;
         position: fixed;
        top:80px;
        left:0;
        right:0;
        background:rgba(20,20,20,0.97);
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:25px 0;
        z-index: 10000;
        pointer-events: auto;
    }

    .nav-links.active{
        display:flex;
    }

    .lang-switch{
        margin-left:0;
    }
}
@media(max-width:768px){

    .burger{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        right:0;
        background: linear-gradient(
    180deg,
    rgba(15,15,15,0.98),
    rgba(5,5,5,0.97)
);
border-top: 2px solid #d6b25e;

        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:25px 0;
    }
    .nav-links.active{
        display:flex;
    }

    .lang-switch{
        margin-left:0;
    }
}
@media(max-width:768px){
    .logo img{
        height: 75px;
    }

    .logo span{
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffe08a, #d6b25e);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff5cc;
    text-shadow:
        0 0 10px rgba(255,245,200,0.85),
        0 0 26px rgba(214,178,94,0.75),
        0 0 48px rgba(214,178,94,0.6);
    transform: translateY(-2px) scale(1.07);
}


.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active {
    color: #ffed9c;
    text-shadow:
        0 0 12px rgba(255,237,156,1),
        0 0 25px rgba(214,178,94,0.9);
}


.nav-links a.active::after {
    width: 100%;
}
@media(max-width:768px){
    .logo img {
        filter:
            brightness(1.03)
            saturate(0.8)
            contrast(1.03);
    }
}
@keyframes logoGlow {
    0% {
        text-shadow:
            0 0 6px rgba(255,232,163,0.6),
            0 0 14px rgba(214,178,94,0.4);
        transform: translateY(0);
    }

    50% {
        text-shadow:
            0 0 12px rgba(255,232,163,0.9),
            0 0 30px rgba(214,178,94,0.8);
        transform: translateY(-2px);  
    }

    100% {
        text-shadow:
            0 0 6px rgba(255,232,163,0.6),
            0 0 14px rgba(214,178,94,0.4);
        transform: translateY(0);
    }
}
.logo .site-title:hover {
    animation-play-state: paused;  
    text-shadow:
        0 0 16px rgba(255,232,163,1),
        0 0 40px rgba(214,178,94,1);
    transform: scale(1.05);
}
@media(max-width:768px){
    .logo .site-title{
        animation: logoGlow 5s ease-in-out infinite;
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
}
@keyframes logoPulse {
    0% {
        text-shadow:
            0 0 6px rgba(255,232,163,0.7),
            0 0 14px rgba(214,178,94,0.6),
            0 0 28px rgba(214,178,94,0.4);
        transform: translateY(0) scale(1);
    }

    40% {
        text-shadow:
            0 0 14px rgba(255,232,163,1),
            0 0 32px rgba(214,178,94,0.95),
            0 0 60px rgba(214,178,94,0.8);
        transform: translateY(-3px) scale(1.04);
    }

    70% {
        text-shadow:
            0 0 18px rgba(255,245,200,1),
            0 0 42px rgba(214,178,94,1),
            0 0 75px rgba(214,178,94,0.9);
        transform: translateY(-1px) scale(1.06);
    }

    100% {
        text-shadow:
            0 0 6px rgba(255,232,163,0.7),
            0 0 14px rgba(214,178,94,0.6),
            0 0 28px rgba(214,178,94,0.4);
        transform: translateY(0) scale(1);
    }
}
@media(max-width:768px){
    .nav-links a{
        font-size: 1.2rem;
        letter-spacing: 2px;
        animation: menuGlow 4.5s ease-in-out infinite;
    }
}
@keyframes menuGlow {
    0% {
        text-shadow:
            0 0 5px rgba(255,232,163,0.45),
            0 0 12px rgba(214,178,94,0.35);
    }
    50% {
        text-shadow:
            0 0 9px rgba(255,232,163,0.65),
            0 0 20px rgba(214,178,94,0.55);
    }
    100% {
        text-shadow:
            0 0 5px rgba(255,232,163,0.45),
            0 0 12px rgba(214,178,94,0.35);
    }
}
.hero-content::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:22px;
   background: linear-gradient(
    120deg,
    transparent,
    rgba(200,170,90,0.45),
    rgba(170,135,60,0.65),
    transparent
);
    z-index:-1;
    animation: borderFlow 6s linear infinite;
}

@keyframes borderFlow{
    0%{background-position:0% 50%;}
    100%{background-position:200% 50%;}
}

@keyframes titleBreath{
    0%{
        transform: scale(1);
        text-shadow:
            0 0 10px rgba(214,178,94,0.7),
            0 0 25px rgba(0,0,0,0.9);
    }
    50%{
        transform: scale(1.03);
        text-shadow:
            0 0 18px rgba(255,232,163,1),
            0 0 40px rgba(214,178,94,0.9);
    }
    100%{
        transform: scale(1);
    }
}
@keyframes textFade{
    from{
        opacity:0;
        transform: translateY(20px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}
@keyframes btnPulse{
    0%{
        box-shadow: 0 0 15px rgba(255,223,128,0.6);
    }
    50%{
        box-shadow:
            0 0 30px rgba(220,190,120,0.9)

            0 0 60px rgba(214,178,94,0.9);
    }
    100%{
        box-shadow: 0 0 15px rgba(255,223,128,0.6);
    }
}
@keyframes heroZoom{
    from{
        background-size:100%;
    }
    to{
        background-size:108%;
    }
}
.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:40px;
    color:#b89b4f;
    animation: scrollBounce 2s infinite;
    opacity:0.8;
}


@keyframes scrollBounce{
    0%,100%{
        transform:translate(-50%,0);
    }
    50%{
        transform:translate(-50%,12px);
    }
}

.about{
   background:#0d0d0d;
    padding:100px 10%;
    color:#d6c28a;
    padding: 110px 10%;
}


.about-container{
    display:flex;
    gap:60px;
    align-items:center;
}

.about-text h2{
    color: #ffe8a3;
    text-shadow:
        0 0 10px rgba(214,178,94,0.8),
        0 0 25px rgba(0,0,0,0.9);
}

.about-text p{
    color: #e3d3ab;
}


.about-text p{
    color:#d6c28a;
    font-size:1.3rem;
    line-height:1.8;
}

.about-image img{
    width:100%;
    max-width:500px;
    border-radius:18px;
    border:2px solid #d6b25e;
    box-shadow:0 0 40px rgba(214,178,94,0.4);
}
.info-cards{
    background: linear-gradient(
        180deg,
        #161616,
        #222222
    );
    border-radius: 0 !important;
    border: 1px solid rgba(214,178,94,0.6);
    box-shadow:
        0 10px 35px rgba(0,0,0,0.6),
        inset 0 0 20px rgba(255,232,163,0.08);
    padding:80px 10%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;

}
.info-cards .card{
    background: linear-gradient(
        180deg,
        rgba(40,40,40,0.95),
        rgba(20,20,20,0.95)
    );
    border: 1px solid #d6b25e;
     border-radius: 0 !important;
}
.info-cards .card h3{
    font-size: 2.8rem;
    color: #ffe08a;
    margin-bottom: 20px;
}
.info-cards .card p{
    color: #f2e2b0;
    font-size: 1.25rem;
    font-weight: 700;
}

.card{
    position: relative;
    overflow: hidden;
    background-clip: padding-box;

    background:
        linear-gradient(
            180deg,
            rgba(32,32,32,0.97),
            rgba(14,14,14,0.98)
        );

    border: 2px solid rgba(214,178,94,0.7);
    border-radius: 12px;

    padding: 26px;
    margin-bottom: 35px;

    box-shadow:
        inset 0 0 30px rgba(0,0,0,0.85),
        0 12px 30px rgba(0,0,0,0.7),
        0 0 25px rgba(214,178,94,0.25);

    transition: all 0.35s ease;
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
}


.card p{
      margin: 0;
    font-size: 1.35rem;            
    font-weight: 700;             
    letter-spacing: 1px;         
    line-height: 1.6;            
    color: #f2e2b0;             /
    text-shadow:
        0 0 6px rgba(0,0,0,0.9),
        0 0 12px rgba(214,178,94,0.45);
}
.card h3{
    margin: 0 0 18px 0;
    font-size: 2.6rem;           
    color: #ffe08a;
    text-shadow:
        0 0 10px rgba(214,178,94,0.8),
        0 0 25px rgba(214,178,94,0.6);
}

.card:hover{
    background: linear-gradient(
        180deg,
        rgba(85,70,35,0.95),
        rgba(45,35,18,0.95)
    );
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(214,178,94,0.7);
}
.card:hover p{
     background: linear-gradient(
        180deg,
        rgba(65,55,30,0.95),
        rgba(35,30,18,0.95)
    );
    text-shadow:
        0 0 10px rgba(255,232,163,0.9),
        0 0 25px rgba(214,178,94,0.7);
}

.timeline{
    background:#0d0d0d;
    padding:100px 10%;
    color:#d6c28a;
}

.timeline h2{
    color:#ffe8a3;
    font-size:3rem;
    margin-bottom:40px;
}

.timeline ul{
    list-style:none;
    font-size:1.4rem;
    line-height:2.2;
}
.gallery-preview{
      background:
        linear-gradient(
            180deg,
            rgba(28,28,28,0.96),
            rgba(12,12,12,0.98)
        );
    padding:100px 10%;
    text-align:center;
}
.gallery-preview h2{
    color: #ffe8a3;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin:40px 0;
}

.gallery-grid img{
    width:100%;
    border-radius:15px;
    transition:0.4s;
    border: 2px solid #d6b25e;
     box-shadow:
        0 14px 45px rgba(0,0,0,0.75),
        0 0 22px rgba(214,178,94,0.35);
}

.gallery-grid img:hover{
    transform: scale(1.06);
    box-shadow:
        0 0 25px rgba(214,178,94,0.7),
        0 0 50px rgba(214,178,94,0.5);
}
.map{
     background: linear-gradient(
        180deg,
        #151515,
        #212121
    );
    padding:100px 10% 40px;
    background:#0b0b0b;
}


.map iframe{
    width:100%;
    height:400px;
    border-radius:20px;
    border:2px solid #d6b25e;
     box-shadow:
        0 18px 55px rgba(0,0,0,0.85),
        0 0 35px rgba(214,178,94,0.45);
}
section h2{

    font-size:3rem;
    color: #ffe8a3;
    font-weight: 900;
    letter-spacing:3px;
    margin-bottom:40px;
    text-transform:uppercase;
    text-shadow:
        0 0 8px rgba(214,178,94,0.7),
        0 0 20px rgba(0,0,0,0.8);
    position:relative;
}
section h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:linear-gradient(90deg,#ffe08a,#d6b25e);
    margin-top:15px;
    border-radius:2px;
}
.gallery-preview h2,
.timeline h2,
.map h2{
    text-align:center;
}

.gallery-preview h2::after,
.timeline h2::after,
.map h2::after{
    margin-left:auto;
    margin-right:auto;
}
@media(max-width:768px){
    section h2{
        font-size:2.2rem;
        letter-spacing:2px;
    }
}
.map-btn{
    margin-top:40px;
    text-align:center;
}
.timeline{
    background:#0b0b0b;
    padding:120px 10%;
}
.timeline-line{
    position:relative;
    margin-top:80px;
    padding-left:40px;
     z-index:2;
}


.timeline-line::before{
    content:"";
    position:absolute;
    left:8px;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(180deg,#ffe08a,#d6b25e);
    border-radius:2px;
}
.timeline-item{
    position:relative;
    margin-bottom:60px;
    display:flex;
    align-items:flex-start;
}
.timeline-dot{
    width:20px;
    height:20px;
    background:#ffe08a;
    border-radius:50%;
    box-shadow:0 0 15px rgba(214,178,94,0.9);
    margin-right:30px;
    flex-shrink:0;
}
.timeline-content{
    background:#151515;
    padding:25px 35px;
    border-radius:16px;
    border:1px solid #d6b25e;
    box-shadow:0 10px 35px rgba(0,0,0,0.6);
    transition:0.4s;
}
.timeline-content h3{
    color:#ffe8a3;
    font-size:1.6rem;
    margin-bottom:10px;
}

.timeline-content p{
    color:#d6c28a;
    font-size:1.2rem;
    line-height:1.6;
}
.timeline-content:hover{
    transform:translateX(8px);
    box-shadow:0 15px 45px rgba(214,178,94,0.4);
}
@media(max-width:768px){
    .timeline-line{
        padding-left:25px;
    }

    .timeline-content{
        padding:20px;
    }
}
.timeline-wrapper{
    display:flex;
    gap:60px;
    align-items:flex-start;
}
.timeline-line{
    flex:1;
}
.timeline-bg-image{
    flex:1;
    min-height:950px;
    border-radius:22px;
     margin-top:80px;
     opacity:0.55;
    background:
        
        url("foto/log.png") center/cover no-repeat;

    box-shadow:
    0 12px 40px rgba(0,0,0,0.85),
    
     filter: blur(1.5px) contrast(0.9);
      
}

.timeline-bg-image{
    position:relative;
    z-index:1;
}
@media(max-width:900px){
    .timeline-wrapper{
        flex-direction:column;
    }

    .timeline-bg-image{
        margin-top:40px;
        min-height:300px;
    }
}
footer {
    background: 
        linear-gradient(rgba(15, 15, 15, 0.96), rgba(5, 5, 5, 0.98)),
        url('https://www.transparenttextures.com/patterns/dark-leather.png');
    color: #f0d896;
     padding: 35px 0 25px 0;
    border-top: 2px solid #d6b25e;
    margin-top: 0;
    font-family: "Trajan Pro", "Cinzel", "Times New Roman", serif;
}

.footer-container {
    max-width: 1450px;   
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 55px;

    padding: 0 15px;    
}


.footer-section {
    flex: 1;
    text-align: center;
    min-width: 200px; 
}

.footer-section h3 {
    font-size: 1.35rem;
    margin-bottom: 28px;
    letter-spacing: 3px;

    color: #ffe8a3;

    text-shadow:
        0 0 10px rgba(214,178,94,0.8),
        0 0 25px rgba(214,178,94,0.6);
}
footer::before {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        #d6b25e,
        #ffe8a3,
        #d6b25e,
        transparent
    );
    margin-bottom: 50px;
}


.footer-section p {
    color: #f5f0e3;
    font-size: 1.1rem;
    line-height: 1.9;
    letter-spacing: 0.6px;
}


/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 20px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(214,178,94,0.2);
    font-size: 0.95rem;
    color: rgba(240,216,150,0.6);
    text-align: center;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
}
.footer-social {
    text-align: center;
}
.social-icons a {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.6rem;
    color: #ffe8a3;

    border-radius: 50%;
    border: 2px solid #d6b25e;

    background: linear-gradient(
        180deg,
        rgba(35,35,35,0.95),
        rgba(10,10,10,0.98)
    );

    box-shadow:
        inset 0 0 10px rgba(0,0,0,0.7),
        0 0 14px rgba(214,178,94,0.45);

    transition: all 0.35s ease;
}

.social-icons a:hover {
    background: linear-gradient(
        180deg,
        #ffe8a3,
        #d6b25e
    );

    color: #1a1a1a;

    box-shadow:
        0 0 20px rgba(255,232,163,0.95),
        0 0 45px rgba(214,178,94,0.9);

    transform: translateY(-5px) scale(1.15);
}

.footer-social h3 {
    margin-bottom: 30px;
    font-size: 1.35rem;
    letter-spacing: 3px;
    text-shadow:
        0 0 10px rgba(214,178,94,0.8),
        0 0 20px rgba(214,178,94,0.6);
}
/*  FOOTER SOSYAL MEDYA İKONLARI  */
.social-icons a {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.6rem;
    color: #ffe8a3;

    border-radius: 50%;
    border: 2px solid #d6b25e;

    background: linear-gradient(
        180deg,
        rgba(35,35,35,0.95),
        rgba(10,10,10,0.98)
    );

    box-shadow:
        inset 0 0 10px rgba(0,0,0,0.7),
        0 0 14px rgba(214,178,94,0.45);

    transition: all 0.35s ease;
}
@keyframes footerGlow {
    0% {
        box-shadow:
            inset 0 0 10px rgba(0,0,0,0.6),
            0 0 10px rgba(214,178,94,0.3);
    }
    50% {
        box-shadow:
            inset 0 0 12px rgba(0,0,0,0.6),
            0 0 22px rgba(214,178,94,0.7);
    }
    100% {
        box-shadow:
            inset 0 0 10px rgba(0,0,0,0.6),
            0 0 10px rgba(214,178,94,0.3);
    }
}

.social-icons a {
    animation: footerGlow 4s ease-in-out infinite;
}
footer p {
    color: #f5f0e3;              
    font-size: 1.12rem;
    line-height: 1.9;
    letter-spacing: 0.6px;

    text-shadow:
        0 0 6px rgba(0,0,0,0.9),
        0 0 12px rgba(0,0,0,0.6);
}
footer p {
    font-size: 1.25rem;     
    line-height: 2;
    letter-spacing: 0.8px;
}
.footer-section h3 {
    font-size: 1.75rem;   
    letter-spacing: 3.8px;
    margin-bottom: 22px;
}

.footer-social h3 {
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    footer::before, footer::after { display: none; }
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
    .footer-center { border: none; }
    .footer-right, .footer-left { text-align: center; }
    .social-icons { justify-content: center; }
}
.footer-copy {
    text-align: center;
    margin-top: 25px;

    font-size: 1rem;
    color: rgba(245,240,227,0.85);

    letter-spacing: 1px;

    text-shadow: 0 0 6px rgba(0,0,0,0.9);
}
section p{
    color: #e6d6a8;      
    font-size: 1.15rem;
    line-height: 1.85;
    text-shadow: 0 0 6px rgba(0,0,0,0.85);
}
.info-cards .card{
    border-radius: 0 !important;
}

#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-image: url("foto/sadak.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* YAZILAR */
.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  padding: 20px;
  max-width: 900px;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 15px; 
}

.lang-switch-mobile {
  display: flex;
  gap: 5px;
}

 


@media (max-width: 768px) {
  .nav-links .lang-switch {
    display: none; 
  }
}
.lang-switch.desktop-only {
  display: flex;
  align-items: center;
  margin-left: 15px; 
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}


.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: flex !important;
  }

  .nav-links .lang-switch {
    display: none !important;
  }
} 
.mobile-lang {
  display: none !important;
}

.desktop-lang {
  display: flex !important;
  align-items: center;
  margin-left: 20px; 
}

/* MOBİL AYARLARI */
@media (max-width: 768px) {
 
  .desktop-lang {
    display: none !important;
  }

  .mobile-lang {
    display: flex !important;
    gap: 5px; 
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
