:root {
    --primary: #1a1919;
    --accent: #6a0dad;  /* Mor tema rengi */
    --accent-light: #9c27b0;
    --light: #ffffff;
    --dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}
/* Header Styles - Dark Navbar */
.header.dark-navbar {
    background-color: #1a1a1a;
    padding: 0.7rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header.dark-navbar i{
    margin-right: 5px;
}

.logo img {
    width: 120px;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mobile-nav{
    display: none;
}

.mobile-nav li a{
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0 0.7rem;
}

.nav-menu li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.nav-menu li a:hover {
    color: var(--accent-light);
}

.nav-menu li.support-item,
.nav-menu li.login-item,
.nav-menu li.lang-selector {
    margin-left: 1rem;
}

.nav-menu li.login-item:last-child{
    margin-left: 0px;
}

.nav-menu li.login-item a {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.nav-menu li.login-item a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
/* Header Styles */
.header {
    background-color: #232323;
    padding: 1rem 0;
}

.logo img {
    width: 150px;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
}
.mobile-nav{
    display: none;
}
.mobile-nav li a{
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 0.7rem;
}

.nav-menu li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--accent-light);
}

/* Hero Section */
.hero {
    background-image: url(img/reliz-bg.jpg);
    background-position: center;
    background-size: cover;
    min-height: 93vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--light);
    text-align: center;
    max-width: 800px;
    bottom: 2rem;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: var(--accent-light);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--light);
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
}

/* Form Styles */
.content-form {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-form h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
    text-align: center;
}

.content-form h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #666;
    text-align: center;
}

form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

form input {
    display: block;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

form select {
    display: block;
    width: 100%;
    padding: 12px 15px;

    border: 1px solid #ddd;
    border-radius: 10px;
}




#menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    display: none;
}


/* Footer Styles */
.footer {
    background-color: var(--primary);
    color: #f8f9fa;
    padding: 3rem 0 0;
}

.footer-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.social-links {
    display: flex;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 0.8rem;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    width: 20px;
    margin-right: 10px;
    color: var(--accent-light);
}

.newsletter {
    margin-top: 1.5rem;
}

.newsletter h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    margin-top: 0.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    padding: 0 1rem;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--accent-light);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #999999;
    margin: 0;
}

  /* Hakkımızda sayfası için ek stiller */
  .about-hero {
    background-image: linear-gradient(to right, rgba(106, 13, 173, 0.8), rgba(106, 13, 173, 0.6)), url('/api/placeholder/1920/600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    margin-bottom: 5rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.section {
    padding: 6rem 0;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.mission-vision-section {
    position: relative;
}

.mission-vision-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.mission-content, .vision-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mission-content {
    flex-direction: row;
}

.vision-content {
    flex-direction: row-reverse;
}

.mv-text {
    flex: 1;
}

.mv-text h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.mv-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.mv-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    text-align: center;
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    flex: 0 1 300px;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    text-align: center;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 0 1 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
    text-align: center;
    background-color: white;
}

.member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-info p {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;

    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: var(--accent);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    color: white;
}

.contact-section {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
}

.contact-item {
    flex: 0 1 300px;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.cta-section {
    background-image: linear-gradient(to right, rgba(106, 13, 173, 0.9), rgba(156, 39, 176, 0.9)), url('/api/placeholder/1920/600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.btn-light {
    background-color: white;
    color: var(--accent);
    padding: 0.8rem 2.5rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.language-switcher {
    position: relative;

    display: inline-block;
}

.lang-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 5px 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lang-button:hover {
    background-color: #555;
}

.dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 80px;
}

.dropdown.show {
    display: block;
}

.dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown ul li {
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown ul li:hover {
    background-color: #f0f0f0;
}

.dropdown ul li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.language-switcher-mobile{
    display: none;
}

@media (max-width: 992px) {
    .mission-content, .vision-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mv-text h3 {
        font-size: 1.8rem;
    }
    
    .mv-image {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1{
        font-size: 2rem;
    }
    .hero-content h2{
        font-size: 0.9rem;
    }
    .about-hero {
        padding: 6rem 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .values-container, .team-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .newsletter {
        text-align: center;
    }
}

@media (max-width: 1400px){
    .nav-menu li{
        margin: 0 0.5rem;
    }
    .nav-menu li a{
        font-size: 13px;
    }
}

@media (max-width: 1000px){

    .lang-button{
        padding: 4px 11px;
        font-size: 15px
    }
    
    .nav-menu li{
        margin: 0 0.3rem;
    }
    .nav-menu li a{
        font-size:12px;
        
    }
}

@media (max-width: 768px) {
    .footer-description{
        text-align: center;
    }
    .language-switcher{
        display: none;
    }
    .language-switcher-mobile{
		z-index:200000;
        position: relative;
        display: block;
        margin-left: 10px;
    }
    #menu-toggle {
        display: block;
    }
    .mobile-nav{
        display: flex;
        align-items: center;
    }
    
    #nav-links {
        display: none;
        flex-direction: column;
        background: #232323;
        width: 100%;
        position: absolute;
        top: 4rem;
        left: 0;
        z-index: 20000;
        padding: 20px 10px 10px;
    }

    #nav-links.active {
        display: flex;
    }
    .nav-menu{
        display: none;
    }
}


@media (max-width: 768px) {
    #scroll-down-animation{
        left: 46%!important;
    }
    #menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
    }
    
    .mobile-nav{
        display: flex;
        margin-left: 10px;
        justify-content: right;
    }
    
    #nav-links {
        display: none;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%;
        position: absolute;
        top: 3rem;
        left: 0;
        z-index: 20000;
        padding: 20px 10px 10px;
    }

    #nav-links.active {
        display: flex;
    }
    
    .nav-menu{
        display: none;
    }
    

}

@media (max-width: 576px) {
    .logo img {
        width: 100px;
    }

}