:root {
    --primary-color: #000000;
    --secondary-color: #DC143C;
    --text-color: #333;
    --light-bg: #FFFFFF;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Başlıklar için Roboto fontu */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

/* Container genişliği - büyük ekranlarda daha geniş kullanım */
.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Header Styles - Slider Üzerinde Menü */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

/* Ana sayfa dışındaki sayfalarda menüyü görünür yap */
body:not(.home-page) .main-header {
    position: fixed;
	color:black;
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(10px);
	text-shadow:0px 0px 1px white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body:not(.home-page) .main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    background-size: 120px 120px; 
    opacity: 1;
    z-index: 0;
}

body:not(.home-page) .main-header .container,
body:not(.home-page) .main-header .navbar {
    position: relative;
    z-index: 1;
	color:#000000;
 
	 
	
}

/* Ana sayfa dışındaki sayfalarda body'ye padding ekle */
body:not(.home-page) {
    padding-top: 0px;
}

.main-header.scrolled {
    position: fixed;
	color:black;
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(10px);
	text-shadow:0px 0px 1px white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Contact Icons in Navbar */
@media (min-width: 993px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
    }
}

.navbar-contact-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
}

.navbar-contact-icons .contact-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0;
}

/* Ana sayfa dışındaki sayfalarda iletişim ikonları daha görünür */
body:not(.home-page) .navbar-contact-icons .contact-icon {
    text-shadow: 0;
}

.main-header.scrolled .navbar-contact-icons .contact-icon {
    color: #000 !important;
    text-shadow: 0;
}
.main-header.scrolled .navbar-contact-icons .contact-icon span {
    color: #000 !important;
    text-shadow: 0;
}

/* Ana sayfa dışındaki sayfalarda scrolled durumunda */
body:not(.home-page) .main-header.scrolled .navbar-contact-icons .contact-icon {
    text-shadow: 0;
}

.navbar-contact-icons .contact-icon i {
    font-size: 18px;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.navbar-contact-icons .contact-icon:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar-contact-icons .contact-icon:hover i {
    transform: scale(1.1);
}

.navbar {
    padding: 8px 0;
}

.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

/* Ana sayfa dışındaki sayfalarda logo daha görünür */
body:not(.home-page) .navbar-brand {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.6);
}

.main-header.scrolled .navbar-brand {
    color: #fff !important;
    text-shadow: none;
}

/* Ana sayfa dışındaki sayfalarda scrolled durumunda */
body:not(.home-page) .main-header.scrolled .navbar-brand {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.6);
}

.navbar-brand span {
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-shadow: 0;
    position: relative;
    transform: scaleX(1.1);
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

/* Ana sayfa dışındaki sayfalarda menü linklerini daha görünür yap */
body:not(.home-page) .navbar-nav .nav-link {
 
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.main-header.scrolled .navbar-nav .nav-link {
    color: #000 !important;
  /*text-shadow: 
    0 0 5px white,
    0 0 10px white,
    0px 0px 2px black,
    1px 1px 2px black,
    -1px -1px 2px black,
    0px 0px 8px rgba(0, 0, 0, 0.8);
 text-shadow: 0 0 5px rgba(0, 0, 0, 1);*/
 
  paint-order: stroke fill;
   /*-webkit-text-stroke: 2px black;*/
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

/* Ana sayfa dışındaki sayfalarda scrolled durumunda */
body:not(.home-page) .main-header.scrolled .navbar-nav .nav-link {
	color:#000;
  	color:black;
   
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
    transform: scaleX(1);
    z-index: 1;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
	color:black;
}

.navbar-nav .nav-link:hover {
    color: black;
    border-bottom-color: var(--secondary-color);
}

.navbar-nav .nav-link.active {
    color: #000 !important;
    border-bottom-color: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 26, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Slider - Full Screen */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1.2s ease;
    font-weight: 300;
}

.slide-content .btn {
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    animation: fadeInUp 1.4s ease;
    border: 2px solid var(--secondary-color);
}

.btn-primary-custom {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #fff;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 5px 0;
}

.section-title {
    text-align: center;
    margin-top: 130px;
    margin-bottom: 8px;  
}

.section-title h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px; 
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.section-title .title-line {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto;
}

/* Footer */
footer {
    background: #fff;
    color: #000;
    padding: 40px 0 10px;
}

footer h5 {
    color: black;
    margin-bottom: 20px; 
    font-weight: 600;
}

footer a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.collapse.show {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-nav {
        background: rgba(46, 139, 139, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        text-shadow: none;
        padding: 10px 0;
    }
    
    .navbar-contact-icons {
        margin-left: 0;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
        justify-content: center;
        width: 100%;
    }
    
    .main-header.scrolled .navbar-contact-icons {
        border-top-color: rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .slide-content .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .navbar-contact-icons {
        gap: 15px;
    }
    
    .navbar-contact-icons .contact-icon {
        font-size: 12px;
    }
    
    .navbar-contact-icons .contact-icon i {
        font-size: 16px;
    }
    
    .navbar-contact-icons .contact-icon span {
        display: none;
    }
}

 
 