*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0b0d18;
    color:white;
}

/* HEADER */

header{

    position:absolute;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 70px;
    z-index:100;
}

/* LOGO */

.logo img{

    width:280px;
    height:auto;

}

/* SOSYAL */

.social{

    display:flex;
    gap:18px;

}

.social a{

    color:white;
    font-size:24px;
    transition:.3s;

}

.social a:hover{

    color:#d4af37;

}

/* MENÜ */

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

nav a:hover{

    color:#d4af37;

}

/* HERO */

.hero{
    min-height: 100vh;

    background-image:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.034)),
    url("assets/hero.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 100px;
}

/* SOL */

.hero-content{

    max-width:520px;

}

.hero-content h1{

    font-size:72px;
    color:#d4af37;
    margin-bottom:20px;

}

.hero-content h2{

    font-size:35px;
    margin-bottom:15px;

}

.hero-content p{

    font-size:22px;
    color:#dddddd;
    line-height:1.6;
    margin-bottom:40px;

}

/* BUTONLAR */

.hero-buttons{

    display:flex;
    gap:18px;

}

.hero-buttons a{

    padding:16px 35px;
    background:#d4af37;
    color:black;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;

}

.hero-buttons a:hover{

    background:white;
    transform:translateY(-4px);

}

/* SAĞ GÖRSEL */

.hero-image{

    width:52%;
    display:flex;
    justify-content:flex-end;
    align-items:center;

}

.hero-image img{

    width:100%;
    max-width:1022px;

    border-radius:25px;

    filter:drop-shadow(0 0 40px rgba(212,175,55,.25));

    transition:.4s;

}

.hero-image img:hover{

    transform:scale(1.03);

}

/* MOBİL */

@media(max-width:1100px){

.hero{

flex-direction:column;
text-align:center;

}

.hero-content{

max-width:100%;

}

.hero-image{

width:100%;
margin-top:60px;

}

.hero-buttons{

justify-content:center;

}

header{

flex-direction:column;
gap:20px;

}

}

.about{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:120px 80px;

    background:#090d18;

}

.about-left{

    width:50%;

}

.about-left span{

    color:#d4af37;

    letter-spacing:3px;

    font-size:18px;

}

.about-left h2{

    font-size:55px;

    margin:20px 0;

}

.about-left p{

    font-size:20px;

    color:#cfcfcf;

    line-height:1.8;

}

.about-right{

    width:40%;

    display:flex;

    justify-content:center;

}

.about-card{

    width:320px;

    padding:40px;

    background:#101522d6;

    border:1px solid rgba(188, 151, 31, 0.86);

    border-radius:20px;

    text-align:center;

}

.about-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.about-card.show {
    opacity: 1;
    transform: translateY(0);
}

html{
    scroll-behavior: smooth;
}

.dropdown{
    position:relative;
    display:inline-block;
}

.dropdown-content{
    position:absolute;
    top:45px;
    left:50%;
    transform:translateX(-50%);
    width:320px;

    background:rgba(8,12,25,.96);
    border:1px solid rgba(212,175,55,.35);
    border-radius:18px;

    padding:20px;

    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:1000;

    box-shadow:0 10px 35px rgba(0,0,0,.45);
}

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
}

.dropdown-content h3{
    color:#d4af37;
    margin-bottom:12px;
}

.dropdown-content p{
    color:#ddd;
    line-height:1.6;
    margin-bottom:8px;
}

.more{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.verify-container{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#090d18;
}

.verify-box{
    width:450px;
    padding:40px;
    border-radius:20px;
    background:#111827;
    border:1px solid rgba(212,175,55,.4);
    text-align:center;
}

.verify-box h1{
    color:#d4af37;
    margin-bottom:15px;
}

.verify-box p{
    color:#ddd;
    margin-bottom:25px;
}

.verify-box input{
    width:100%;
    padding:15px;
    border-radius:10px;
    border:none;
    margin-bottom:20px;
    font-size:16px;
    box-sizing:border-box;
}

.verify-box button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#d4af37;
    color:#111;
    font-size:17px;
    cursor:pointer;
    font-weight:bold;
}

#result{
    margin-top:25px;
    font-size:18px;
}