@font-face {
    font-family: 'Allrounder Monument Test Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Allrounder Monument Test Regular'), url('../fonts/AllrounderMonumentTest-Regular.woff') format('woff');
}


@font-face {
    font-family: 'Allrounder Monument Test Book';
    font-style: normal;
    font-weight: normal;
    src: local('Allrounder Monument Test Book'), url('../fonts/AllrounderMonumentTest-Book.woff') format('woff');
}


@font-face {
    font-family: 'Allrounder Monument Test Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Allrounder Monument Test Medium'), url('../fonts/AllrounderMonumentTest-Medium.woff') format('woff');
}

body, html {
    font-family: 'Allrounder Monument Test Book';
    height: 100%;
    margin: 0;
    font-size: 1rem;
}

body{
    background-size: cover;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

p{
    letter-spacing: 0.09em;
    line-height: 1.5em;
}

a{
    color: #fff;
}


a:hover{
    background: linear-gradient(to bottom, #c7b575 40%, #ccbc82 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.bg-cover {
    height: 100%;
    position: relative;
}

.bg-overlay {
    position: fixed; /* Sayfa boyunca sabit */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* %20 siyah */
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}




.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 9999;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 50px;
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-btn .text {
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    width: 180px;
}

.whatsapp-btn:hover .text {
    opacity: 1;
    width: auto;
}





.hamburger {
    font-size: 35px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1001;
    color:#fff;
}


.menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.menu-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu ul li {
    margin: 20px 0;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

.social {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social a {
    color: white;
    font-size: 22px;
    transition: color 0.3s, transform 0.3s;
}

.social a:hover {
    color: #1da1f2;
    transform: scale(1.2);
}