*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Hero */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
}

@media only screen and (max-width: 768px){

    .hero .back-video {
        max-width: 100%;

        
    }
}




/* Navbar */
.navbar {

    width:clamp(350px , 75vw , 1350px);
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #47474757;
    border-radius: 50px;
    animation: gelis 1s ease-in-out forwards;
    
    
}
.navbar-content{
    height: 100%;
    z-index: 1;
    padding-bottom: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items:center;
}

/* Tablet ve Mobil için düzeltmeler */
@media only screen and (max-width: 1024px){
    .navbar-content{
        height: 100%;
        justify-content: flex-start;
        padding-top: 15px;
        padding-bottom: 0;
    }
    
    .navbar-content .navbar {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .content{
        margin-top: auto;
        padding: 40px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media only screen and (max-width: 768px){
    .navbar-content{
        height: 100%;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 0;
    }
    
    .navbar-content .navbar {
        justify-content: center;
        flex-wrap: wrap;
        padding: 15px 5%;
        margin-bottom: 15px;
    }
    
    .content{
        margin-top: auto;
        padding: 30px 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}  
@media only screen and (max-width: 1024px) {
    .content {
        padding: 60px;
    }
}

@media only screen and (max-width: 375px) {
    .content {
        padding: 20px;
    }
}



.navbar-content .navbar {
   display: flex;
   flex-wrap: wrap; 
   position: relative;
   top: 0;
   z-index: 1000000000;
}


.logo {
    width: 200px;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: clamp(6px 3vw 16px);
    position: relative;
    z-index: 2;
    transition: color 0.5s;
}

nav ul li a::after {
    content: '';
    background:#d6a33b;
    width: 135%;
    height: 200%;
    border-radius: 30px;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: top 0.5s, opacity 0.5s;
}

nav ul li a:hover{
    color: rgb(255, 255, 255);
}

nav ul li a:hover::after{
    top: 50%;
    opacity: 1;
}

/* Content */
.content {
    text-align: center;
}

.content h1 {
    font-size: 40px;
    font-weight: 600;
    color: #d6a33b;
    margin-bottom: 25px;
    text-shadow: 2px 2px 2px #816120;
    animation: gelis 1.4s ease-in-out forwards;
}

.content p {
    font-size: 15px;
    font-weight: 600;
    color: rgb(218, 215, 215);
    text-shadow: 2px 2px 4px rgb(66, 63, 63);
    line-height: 1.5;
    animation: gelis 1.8s ease-in-out forwards;
}

.kesfetbutton{
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    color: whitesmoke;   
    background-color:  #f0ac25;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    animation: gelis 2.2s ease-in-out forwards;
    cursor: pointer;
    border: none;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
}

.kesfetbutton:hover{
    color:  #fcb604;
}

.kesfetbutton::before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgb(230, 224, 224);
    z-index: -1;
    transition: 0.8s;
    top: 0;
    border-radius: 0 0 50% 50%;
}

.kesfetbutton:hover::before{
    height: 180%;
}

/* Video */

.back-video {
    position: absolute;
    object-fit: cover;
    object-position: top;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    width:100vw;
    height:100vh;
    /*  */
}

/*Social */


.social {
    position: fixed;
    height: 10vh;
   top: 75%;
  right: 0;
    display: flex;
    flex-direction: column;
   align-items: center;
    transform: translate(75%, 0);
   z-index: 1000;
    justify-content: start;
}
.social a {
    display: flex;
    color: #fff;
    background: bisque;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    
    padding: 20px;
    width: 300px;
    transition: 1s;
    transition-property: transform;
    border-radius: 60px;
   
}

.social a:hover {
    transform: translate(-10%, 0);
}
.social i {
    margin-left: 10px;
    font-size: 30px;
    
}

.social a:nth-child(2) i{

   
    font-weight: 600;
}



/* Footer */

.footer {
    width: 100%;
    background: #17161d;
    color: #fff;
    padding: 100px  30px;
    font-size: 16px;
    line-height: 20px;
   
    

}
.row-footer {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
}
.col {
    flex-basis: auto;
    padding: 10px;
}

.col h3 {
    width: fit-content;
    margin-top: 20px;
    position: relative;
}

.email-id{
    width: fit-content;
    border-bottom: 2px solid white;
    margin-top: 30px;
    font-size: 20px;
}

.footer-number {
    margin-top: 30px;
    font-size: 20px;
}

ul li {
    list-style-type: none;
    margin-bottom: 10px;
    


}

.col h3 {
    width: fit-content;
    margin-top: 20px;
    position: relative;
}

.form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
   justify-content: space-between;
    border-bottom: 2px solid #fff;
    margin-bottom: 50px;

}

form .fa-envelope {
    margin-right: 10px;
    margin-top: 20px;
}
form input {
    display: inline-block;
    margin-top: 20px;
    width: 65%;
    padding: 10px 20px;
  border-radius: 7px;
  font-size: 16px;
  color: #333333;
  background-color: rgb(255, 255, 255);
  border: none;
}
form button {
    display: inline-block;
  padding: 11px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #df6951;
  cursor: pointer;
border: none;
transform: translate(-20%);
}

form button:hover{
    background-color: #ff2a00;
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer{
        bottom: unset;
    }
    .col {
        flex-basis:100% ;
        flex: 1;
    }
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis:100% ;
    }
    .form-input{
        width: 40%;
        
    }
   
}

.col {
    flex: 1;
}

