
body {
	text-rendering : optimizeLegibility;
	-webkit-font-smoothing : antialiased;
}

a:hover {
	text-decoration: none;
}

.navbar-light .navbar-nav .nav-link ,
.nav-item a {
	font-weight: bold;
	color: #000000 !important;
}

#lang-toggle {
	background-color: #E8E8E8;
	padding: 8px 12px !important;
	border-radius: 20px;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 600;
}

#lang-toggle:hover {
	background-color: #D0D0D0;
	transform: scale(1.05);
}

.container-fluid {
	background-color: #FCFAFA;
}

#header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: #FCFAFA;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#hero {
	padding: 80px 0;
	min-height: 600px;
	position: relative;
}

.hero-img-container {
	position: absolute;
	left: 100px;
	padding: 0;
}

.hero-img {
	max-width: 400px !important;
	height: 400px;
	overflow: hidden;
	border-radius: 100%;
}

.hero-img img {
	width: 110%;
	height: auto;
	padding-top: 0px;
	margin-left: -25px;
}

.hero-title {
	background-color: #EDEDED;
	border-radius: 20px;
	padding: 5px 0px 0px 0px;
	margin-top: 25px;
	font-family: 'Playfair display';
	max-width: 650px;
	text-align: center;
}

.hero-title h1 {
	font-size: 60px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	transition: 450ms;
}
.hero-title a h1:hover {
	transform: scale(1.01);
}

.hero-meta p {
	font-size: 22px;
	line-height: 30px;
	color: #404040;
}

.btn-light {
	border-radius: 50px;
	font-weight: bold;
	background-color: #FCFAFA;
	border: none;
}

.btn-light:hover , footer .btn-light {
		background-color: #EDEDED !important;
		border: none;
}

footer .btn-light {
	width : 40px;
	height: 40px;
	text-align: center;
	padding: 0;
	padding-top: 8px;
	margin: 0 5px;
}

footer a {
	color: #000;
}

/* Media Queries */
@media(max-width: 1200px) {
	.hero-img {
		width: 400px;
		height: 400px;
	}

	footer {
		text-align: center;
	}

	footer .justify-content-end {
		justify-content: center!important;
	}
	.hero-img-container {
		left: 50px;
	}
	
}

@media(max-width: 992px) 
{
	#hero {
		padding: 30px 0 60px;
	}

	.hero-img-container {
		position: static;
		margin: 10px auto;
		text-align: center;
		
		
	}

	.hero-img-container .hero-img {
		display: inline-block;
	}

	.hero-title {
		padding-left: 0px;
		margin: 0;
	}
		#hero {
		text-align: center !important;
	}
}

@media(max-width: 585px){
	.hero-img {
		width: 350px;
		height: 350px;
	}
	.hero-title h1 {
	font-size: 40px;
	line-height: 50px;
	}
}

@media(max-width: 320px){
	.hero-img {
		width: 300px;
		height: 300px;
	}	
}

/* One-Page Site Styles */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	text-align: center;
}

.section-hr {
	width: 60px;
	height: 4px;
	background: linear-gradient(to right, #ff8136, #fdfdfd);
	border: none;
	margin: 20px auto;
	border-radius: 2px;
}

/* About Section */
#about {
	background-color: #fff;
	padding-top: 0px;
	padding-bottom: 0px;
}

.about-image {
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	margin-bottom: 30px;
	max-height: 400px;
}

.about-text {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
	text-align: justify;
}

.skills-section {
	margin-top: 40px;
	text-align: left;
}

.skills-section h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 25px;
	color: #333;
}

.skill-item {
	margin-bottom: 20px;
}

.skill-item span {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.skill-item .progress {
	height: 8px;
	background-color: #e9ecef;
	border-radius: 4px;
	overflow: hidden;
}

.skill-item .progress-bar {
	background: linear-gradient(to right, #ff8136, #ff8136);
	height: 100%;
	transition: width 0.6s ease;
}

/* Services Section */
#services {
	padding-top: 0px;
	padding-bottom: 0px;
	background: #ededed;
}

.service-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
	font-size: 3rem;
	color: #ff8136;
	margin-bottom: 20px;
}

.service-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.service-card p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

.portfolio-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.portfolio-card:hover {
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.portfolio-img {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.portfolio-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img img {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-meta {
	padding: 25px;
	background: #f9f9f9;
}

.portfolio-meta h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.portfolio-meta p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 15px;
}

.portfolio-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.portfolio-tags .badge {
	font-size: 0.8rem;
	padding: 5px 10px;
	background-color: #ff8136;
}

/* Contact Section */
#contact {
	padding-top: 0px;
	padding-bottom: 0px;
}

.contact-section {
	max-width: 600px;
	margin: 0 auto;
	padding: 45px;
}

.contact-section form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-section input,
.contact-section textarea {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	transition: border-color 0.3s;
}

.contact-section input:focus,
.contact-section textarea:focus {
	outline: none;
	border-color: #ff8136;
	box-shadow: 0 0 0 3px rgba(221, 135, 65, 0.1);
}

.contact-section button {
	padding: 12px;
	background: #ff8136;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	font-weight: bold;
	font-size: 16px;
	transition: background 0.3s;
}

.contact-section button:hover {
	background: #ff8136;
}

/* Scroll link animations */
html {
	scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}
	.about-image {
		margin-bottom: 20px;
	}
	.about-text {
		text-align: left;
	}
	.skills-section h4 {
		font-size: 1.2rem;
	}
	.service-card {
		margin-bottom: 20px;
	}
	.portfolio-img {
		height: 200px;
	}
	.contact-section {
		padding: 25px;
	}
}

#blog {
	padding-top: 0px;
	padding-bottom: 0px;
	background: #ededed;
}

#projekte {
	padding-top: 0px;
	padding-bottom: 0px;
}
/* ==========================================================================
   Liquid Glass & Dark Mode
   ========================================================================== */
/* Renk Değişkenleri (Varsayılan Light Mode) */
:root {
    --bg-primary: #FCFAFA;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-alt: #ededed;
    --text-main: #333333;
    --text-muted: #555555;
    --text-hero: #000000;
    --hero-box: #EDEDED;
    --portfolio-meta-bg: #f9f9f9;
    --border-color: #dddddd;
}
[data-theme="dark"] {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-card: #242424;
    --bg-card-alt: #2a2a2a;
    --text-main: #e0e0e0;
    --text-muted: #b0b0b0;
    --text-hero: #ffffff;
    --hero-box: #242424;
    --portfolio-meta-bg: #1e1e1e;
    --border-color: #333333;
}
[data-theme="dark"] .navbar-brand img {
    filter: invert(1);
    transition: filter 0.3s ease; 
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1);
    transition: filter 0.3s ease;
}

[data-theme="dark"] .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container-fluid {
    background-color: var(--bg-primary) !important;
}


#about { background-color: var(--bg-secondary) !important; }
#services, #blog { background-color: var(--bg-card-alt) !important; }

[data-theme="dark"] .btn-light {
    background-color: var(--bg-card-alt) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color) !important;
}

[data-theme="dark"] .btn-light i {
    color: var(--text-main) !important;
}

[data-theme="dark"] .btn-light:hover, 
[data-theme="dark"] footer .btn-light:hover {
    background-color: var(--hero-box) !important;
    border-color: #ef720b !important; 
}

[data-theme="dark"] .portfolio-overlay .btn-light {
    background-color: #ffffff !important; 
    color: #000000 !important;
}
[data-theme="dark"] .portfolio-overlay .btn-light i {
    color: #000000 !important;
}

[data-theme="dark"] .navbar-light .navbar-nav .nav-link,
[data-theme="dark"] .nav-item a,
[data-theme="dark"] .navbar-brand {
    color: var(--text-main) !important;
}

[data-theme="dark"] .navbar-light .navbar-nav .nav-link:hover,
[data-theme="dark"] .nav-item a:hover {
    color: #ef720b !important; 
}

[data-theme="dark"] #lang-toggle {
    background-color: var(--bg-card-alt) !important;
    color: var(--text-main) !important;
}

[data-theme="dark"] #lang-toggle:hover {
    background-color: var(--hero-box) !important;
}

.section-title, .skills-section h4, .skill-item span, .service-card h4, .portfolio-meta h4, form label {
    color: var(--text-main) !important;
}
.about-text, .service-card p, .portfolio-meta p {
    color: var(--text-muted) !important;
}
.hero-title h1 {
    color: var(--text-hero) !important;
}
.hero-meta p {
    color: var(--text-muted) !important;
}

.hero-title { background-color: var(--hero-box) !important; 
	backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
}
.service-card { background-color: var(--bg-card) !important; }
.portfolio-meta { background-color: var(--portfolio-meta-bg) !important; }
.modal-content { background: var(--bg-card) !important; color: var(--text-main) !important; }

.modal {
            display: none;
            position: fixed;
			z-index: 1050;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
}
.modal-content {
	background: white;
	padding: 30px;
	max-width: 800px;
	margin: 40px auto;
	text-align: left;
	border-radius: 8px;
	line-height: 1.6;
	color: #333;
}
.close-btn {
	background: #dd8741;
	color: white;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	float: right;
}

.contact-section input, .contact-section textarea {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}


.navbar-light .navbar-nav .nav-link, .nav-item a, footer a {
    color: var(--text-main) !important;
}

/* ---Liquid Glass Navbar--- */
#header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: rgba(252, 250, 250, 0.7) !important; 
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] #header {
    background-color: rgba(18, 18, 18, 0.7) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#theme-toggle {
    background-color: #E8E8E8;
    padding: 8px 14px !important;
    border-radius: 20px;
    margin-left: 15px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    float: right;
    /*display: inline-block;*/
    text-align: center;
}

#theme-toggle:hover {
    background-color: #D0D0D0;
    transform: scale(1.05);
}

[data-theme="dark"] #theme-toggle {
    background-color: var(--bg-card-alt) !important;
    color: var(--text-main) !important;
}

[data-theme="dark"] #theme-toggle:hover {
    background-color: var(--hero-box) !important;
}


@media (max-width: 991px) {
    #theme-toggle {
        margin-top: 10px;    
        margin-left: 0; 
        float: none; 
        display: block; 
        width: fit-content;  
    }
    
    #lang-toggle {
		margin-top: 10px;
        float: none;
        display: block;
        width: fit-content;
        margin-left: 0;
    }
}

[data-theme="dark"] .hero-img {
    background-color: #ffffff !important; 
    filter: none !important;              
    opacity: 1 !important;   
}

/* ==========================================================================
     (Floating Toggles)
   ========================================================================== */

.floating-toggles {
    position: fixed;
    right: 20px;
    bottom: 125px; 
    display: flex;
    flex-direction: column;
    gap: 12px; 
    z-index: 1040; 
}

#lang-toggle, #theme-toggle {
    width: 50px;
    height: 50px;
    background-color: rgba(251, 122, 3, 0.7) !important;
  	backdrop-filter: blur(3px) saturate(50%);
    color: #fdfdfd !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    margin: 0 !important; 
    float: none !important; 
}

#lang-toggle {
    font-size: 18px;
    letter-spacing: -0.5px;
    padding: 0 !important;
}

#theme-toggle i {
    font-size: 20px;
    transition: transform 0.4s ease;
}

#lang-toggle:hover, #theme-toggle:hover {
    background-color: rgba(251, 122, 3, 0.7) !important;
  	backdrop-filter: blur(3px) saturate(50%);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

#theme-toggle:hover i {
    transform: rotate(385deg);
}

[data-theme="dark"] #lang-toggle,
[data-theme="dark"] #theme-toggle {
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] #lang-toggle:hover,
[data-theme="dark"] #theme-toggle:hover {
    background-color: var(--hero-box) !important;
    border-color: #ef720b;
}

@media (max-width: 768px) {
    .floating-toggles {
        right: 10px;
		bottom: 110px;
        gap: 8px;
    }
    #lang-toggle, #theme-toggle {
        width: 45px;
        height: 45px;
    }
}

.row {
	margin-left: 0;
	margin-right: 0;
	text-align: center;
}

.navbar-brand {

  margin-right: 0rem;
}

#contact .section-hr {

	margin: 0px auto;
}
.navbar-nav {
	text-align: right;
}

.badge-warning {
	color: #fff;
}

.contact-section { max-width: 600px;  padding: 45px; }
		form { display: flex; flex-direction: column; gap: 15px; }
		input, textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; font-size: 16px; transition: border-color 0.3s; }
		input:focus, textarea:focus { outline: none; border-color: #dd8741; }
		button { padding: 12px; background: #dd8741; color: white; border: none; cursor: pointer; border-radius: 5px; font-weight: bold; font-size: 16px; transition: background 0.3s; }
		button:hover { background: #ae6d37; }