*
{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;;
    box-sizing: border-box;
}
body 
{
    background: linear-gradient(-45deg, #1a0305, #1a0105, #310207, #350207);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient 
{
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#header
{
    width: 100%;
    height: 100vh;
    background-image: url(pics/bg8.png);
    background-size: cover;
    background-position: center;
    position: relative;
}
#header .top-bar 
{
    position: absolute;
    top: 0px; 
    left: 0;
    width: 100%;
    height: 60px; 
    background-color: #210407; 
}
.container
{
    padding: 1px 5%;
    z-index: 1
}
.logo
{
    width: 110px;
    height: 30px;
    z-index: 2;
}
nav
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; 
    background-color: #210407;  
    padding: 10px 0; 
}
nav ul li
{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a 
{
    display: inline-block;
    color: #ebdbdb;
    text-decoration: none;
    font-size: 22px;
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
    transition: all 0.3s ease; 
}
nav ul li a:hover 
{
    color: #a17f81;
    transform: scale(1.1);
}
.header-text
{
    margin-top: 20%;
    font-size: 20px;
    padding: 40px;
    padding-left: 9px;
    color: #ebdbdb;
}
.header-text h1
{
    margin-top: 20px;
    font-size: 60px;
    white-space: nowrap;
    min-height: 70px;
    color: #ebdbdb;
}
.header-text h2 span
{
    color: #3d0208;
    font-style: italic;
}
.who-is-she 
{
    text-align: center;
}
.who-is-she h3 
{
    color: #ebdbdb;
    text-decoration: none;
    font-size: 23px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    display: inline-block; 
    padding: 20px; 
    margin-top: 70px;
    margin-bottom: 70px;
}
.who-is-she h3:hover 
{
    color: #a17f81;
    transform: scale(1.1);
}
.bottom-strip 
{
    width: 100%;
    height: 35px;
    background-color: #3d0208;
    margin-bottom: 0px;
    margin-top: -5px;
}
.endline
{
    text-align: center;
    font-size: 20px;
    font-style: italic;
    padding: 40px;
}
@keyframes fadeInUp 
{
    from 
    {
        opacity: 0;
        transform: translateY(40px);
    }
    to 
    {
        opacity: 1;
        transform: translateY(0);
    }
}
.endline
 {
    text-align: center;
    font-size: 20px;
    font-style: italic;
    padding: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s, transform 0.5s;
    color: #ebdbdb;
    margin-top: 30px;
    margin-bottom: 30px;
}
.endline.animate 
{
    animation: fadeInUp 1s ease forwards;
}
.image-wrapper 
{
    position: relative;
    display: inline-block;
    text-align: center;
}
.iloveme 
{
    display: block;
    width: 100%;
    height: auto;
}
.overlay-text 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2c1313a8;
    font-size: 34px;
    font-weight: bold;
    pointer-events: none;
}
.overlay-text span
{
    color: #7e020e;
    font-style: italic;
}
.contact-up .subtitle 
{
    font-size: 60px;
    font-weight: bold;
    color: #0a0909;
    margin-bottom: 80px;
    margin-top: -40px;
    text-align: center;
}
.contact 
{
    position: absolute;
    top: 145px;
    left: 40px;
    width: 100%;
    height: 100vh;
    z-index: 2;
    padding: 90px 0;
}
.contact-down form 
{
    padding: 100px;
    padding-top: 180px;
    padding-bottom: 50px;
    border-radius: 10px;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -150px;
    font-size: 23px;
    font-weight: bolder;
}
.contact-down form input,
.contact-down form textarea 
{
    width: 80%;
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
    background-color: rgba(177, 172, 172, 0.466);
    color: #000000;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 20px;
    text-align: center;
    resize: none;
    font-weight: bold;
}
.contact-down form input:focus,
.contact-down form textarea:focus 
{
    outline: none;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #c7c1c19c;
}
.contact-down form button 
{
    padding: 12px 45px;
    font-weight: bolder;
    font-size: 15px;
    background-color: #1a1718;
    border: none;
    border-radius: 12px;
    color: #ebdbdb;
    cursor: pointer;
    margin-top: 20px; 
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(32, 31, 31, 0.1);
}
.contact-down form button:hover 
{
    background-color: #000000;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.contact-down form button:active 
{
    transform: scale(0.95);
}
.contact-down form input::placeholder,
.contact-down form textarea::placeholder 
{
    color: #00000069; 
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
}
html, body 
{
    overflow-x: hidden; 
}
.social-media 
{
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 20vh; 
    margin-top: 50px;
    margin-bottom: 50px;
}
.social-media a 
{
    font-size: 40px;
    color: rgba(235, 219, 219, 0.8);
    transition: transform 0.3s, color 0.3s;
    padding: 15px;
}
.social-media a:hover 
{
    transform: scale(1.5);
    color: #ebdbdb;
}
.social-subtitle 
{
    font-size: 30px;
    text-align: center; 
    padding: 25px;
    color: rgba(235, 219, 219, 0.8);
}
.bottom-strip-c
{
    width: 100%;
    height: 45px;
    background-color: #3d0208;
    margin-bottom: 0px;
}
.footer-line
{
    text-align: center;
    margin-bottom: -15px;
    font-style: italic;
    color: rgba(235, 219, 219, 0.8);
}
.IAMTURKULAN
{
    padding-left: 20px;
    text-align: left;
    margin-bottom: -15px;
    font-style: italic;
    color: rgba(235, 219, 219, 0.8);
    position: absolute;
    display: flex;
}
.turkish-flag 
{
    width: 40px; 
    height: auto;
    padding-left: 10px;
}
#headerCon
{
    width: 100%;
    height: 100vh;
    background-image: url(pics/kafadancontact.png);
    background-size: cover;
    background-position: center;
    position: relative;
}
#headerBout 
{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow-y: hidden;
}
#background-video 
{
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.9;
    pointer-events: none;
}
.upperBout 
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; 
    width: 100%;
    margin-top: -900px;  
}
.subtitleBout 
{
    flex: 1;
    text-align: left;
    padding-left: 30px;
    font-size: 33px;
    color: #5a0e0e;
}
.sentBout 
{
    flex: 1;
    text-align: right;
    padding-right: 10px;
    padding-left: 30px;
    font-size: 33px;
    color: #5a0e0e;
    text-decoration: none;
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;

}
.flex-layout 
{
    display: flex;
    width: 80%; 
    justify-content: space-between;
    align-items: center;
    height: 100vh; 
}
.vertical-line 
{
    width: 2px;
    height: 60%;  
    background-color: #5a0e0e;
    margin-left: -100px;
}
#headerPur 
{
    margin-bottom: 250px;
}
.subtitPur
{
    flex: 1;
    text-align: center;
    font-size: 33px;
    color: #5a0e0e;
    padding: 40px;
    min-height: 170px;
}
.senPur
{
    flex: 1;
    text-align: center;
    padding: 40px;
    font-size: 30px;
    color: #5a0e0e;
    text-decoration: none;
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
    padding-left: 150px;
    padding-right: 150px;
}
.horizontaline 
{
    height: 2px;
    width: 60%;  
    background-color: #5a0e0e;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto; 
}
.slider-container 
{
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.slider-track 
{
  display: flex;
  height: 100vh;
  transition: transform 0.5s ease-in-out;
  will-change: transform; 
}
.slider-track img 
{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
}
.arrow 
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: rgb(66, 32, 32);
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  user-select: none;
  z-index: 10;
}

.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

.slider-container:hover .arrow 
{
  opacity: 1;
}
.slider-track img 
{
  pointer-events: none;
  -webkit-user-drag: none;
}
.beyondthetime h1
{
    margin-top: 200px;
    font-size: 40px;
    padding: 20px;
    text-align: center;
    margin-bottom: 100px;
    color: #834848;
    font-weight: bolder;
}
.beyondthetime
{
    text-align: center;
    padding: 20px;
    margin-bottom: 150px;
    font-size: 20px;
    font-style: italic;
    color: #834848;
    font-weight: bolder;
}
.beyondthetime span
{
    font-style: italic;
    color: #834848;
    font-weight: bolder;
    text-decoration-line:line-through
}
.beyondthetime .strikethrough 
{
    text-decoration-thickness: 0px;
}
.hakhukukadalet 
{
  text-align: right;
  margin-bottom: -30px;
  font-style: italic;
  color: rgba(235, 219, 219, 0.8);
  cursor: pointer;
  transition: color 0.3s ease;
  padding-right: 20px;
  font-size: large;
}
.hakhukukadalet:hover 
{
  color: rgba(255, 255, 255, 0.9); 
}

