body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover; /* Video boyutunu düzgün şekilde ayarlar */
    z-index: -1;
}
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #CC9966;
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sayfa bölümleri */
#intro, #menu, #about, #contact {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

/* Animasyonlar için */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: rgba(204, 153, 102, 0.9) !important;
    color: white !important;
    font-size: 24px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.owl-nav button:hover {
    background: rgba(204, 153, 102, 1) !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-prev {
    left: -25px;
}

.owl-next {
    right: -25px;
}

.owl-nav button span {
    display: block;
    line-height: 35px;
}


.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background: #ddd !important;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #CC9966 !important;
    transform: scale(1.2);
}

/* Previous working code */
.section {
    position: relative;
    z-index: 1;
}

#intro {
    height: 100vh;
    position: relative;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#tm-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* From https://css.glass */
background: rgba(240, 233, 233, 0);
border-radius: 0px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(240, 233, 233, 0.3);
    
}
#tm-nav-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
}

#menu, #about, #contact {
    background: white;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}
/* Section ve carousel görünürlük düzeltmeleri */
.section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

#menu {
    background: white;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: 80px;
}

.product-carousel {
    position: relative;
    z-index: 3;
    opacity: 1 !important;
    visibility: visible !important;
}

.menu-item {
    background: white;
    opacity: 1 !important;
    visibility: visible !important;
}
.section {
    position: relative;
    z-index: 1;
}

#menu {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

#menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: -1;
    animation: gradientMove 15s ease infinite;
}

.menu-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.product-name {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-tag {
    color: #da2e10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* About ve Contact Sections için Glassmorphism */
#about, #contact {
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1) !important;
    overflow: hidden;
}

#about::before, #contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: -1;
    animation: gradientAnimation 15s ease infinite;
}

.tm-item-container {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.tm-item-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

.tm-text-green {
    color: #da2e10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* About ve Contact içindeki metin stilleri */
#about p, #contact p {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#about a, #contact a {
    color: #da2e10;
    transition: all 0.3s ease;
}

#about a:hover, #contact a:hover {
    color: #fff;
    text-shadow: 0 0 10px #da2e10;
}

/* Gradient animasyonu */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* İletişim butonları */
.contact-btn {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}
/* About ve Contact bölümleri için metin stilleri */
#about .tm-item-container, 
#contact .tm-item-container {
    background: rgba(255, 255, 255, 0.9) !important;
}

#about p, 
#contact p {
    color: #333 !important;
    text-shadow: none;
}

#about h2, 
#contact h2 {
    color: #333 !important;
    text-shadow: none;
}

#about a, 
#contact a {
    color: #CC9966;
    transition: all 0.3s ease;
}

#about a:hover, 
#contact a:hover {
    color: #fff;
    text-shadow: none;
}
.tm-logo-font {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.animate__fadeInUp {
    animation-duration: 4s!important;
}

.bg-black {
    transition: all 0.3s ease;
}

.bg-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tm-text-2xl {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
}
@keyframes rgbText {
    0% {
        color: #ff0000;
        text-shadow: 2px 2px 10px rgba(255, 0, 0, 0.5);
    }
    33% {
        color: #00ff00;
        text-shadow: 2px 2px 10px rgba(0, 255, 0, 0.5);
    }
    66% {
        color: #0000ff;
        text-shadow: 2px 2px 10px rgba(0, 0, 255, 0.5);
    }
    100% {
        color: #ff0000;
        text-shadow: 2px 2px 10px rgba(255, 0, 0, 0.5);
    }
}

.rgb-text {
    animation: rgbText 5s linear infinite;
    font-weight: bold;
}
.degisen-yazi {
    text-align: center;
    z-index: 1;
  }
  
  .degisen-yazi h1 {
    font-size: 5rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: #333;
  }
  
  .degisen-yazi h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #555;
  }
  
  .degisen-yazi span {
    color: #aa301a;
  }
  .company-title {
    font-size: 7rem !important; /* 112px */
    line-height: 1.2;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .company-title {
        font-size: 5rem !important; /* 80px */
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 3.5rem !important; /* 56px */
    }
}
.about-section {
    position: relative;
    padding: 4rem 0;
}

.about-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.about-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.45);
}

.about-title {
    font-size: 3rem;
    background: linear-gradient(90deg,#080808, #080808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #ce2c0c,#bc6554);
    border-radius: 2px;
}

.about-content {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
}
.contact-section {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-container {
    padding: 2rem;
}

.contact-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg,#080808, #080808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #ce2c0c,#ce2c0c);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.icon-wrapper {
    font-size: 2.5rem;
    color: #CC9966;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card a, .contact-card p {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #CC9966;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Google Fonts (Daha modern bir görünüm için) --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* --- Genel Ayarlar ve Değişkenler --- */
:root {
    --primary-color: #007bff; /* Ana renk (buton vb. için) */
    --card-bg-color: #ffffff;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --text-color: #333;
    --text-light-color: #666;
    --transition-speed: 0.35s;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Sayfa arkaplan rengi */
}

.menu-title {
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--text-color);
}

/* --- Ürün Grid Yapısı --- */
.product-grid {
    display: grid;
    /* Her sütun min 280px, max 1fr olacak şekilde esnek bir yapı */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; /* Kartlar arası boşluk */
    padding: 1rem;
}

/* --- Modern Ürün Kartı Tasarımı --- */
.product-card {
    background-color: var(--card-bg-color);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    
    /* Giriş animasyonu için başlangıç durumu */
    opacity: 0;
    transform: translateY(40px);
}

/* Giriş animasyonun aktif hali */
.product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

/* --- Ürün Resmi --- */
.product-image-container {
    width: 100%;
    /* Resimlerin orantılı görünmesi için */
    aspect-ratio: 4 / 3; 
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin kapsayıcıya tam sığmasını sağlar */
    transition: transform var(--transition-speed) ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* --- Ürün Bilgileri --- */
.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light-color);
    min-height: 40px; /* Kartların aynı hizada kalmasına yardımcı olur */
}

/* --- Hover'da Görünecek Detaylar --- */
.product-details-hover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    /* Başlangıçta gizli ve aşağıda */
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-speed) ease;
}

.product-card:hover .product-details-hover {
    /* Hover'da görünür ve yerine gelir */
    opacity: 1;
    transform: translateY(0);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-details {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px; /* Yuvarlak kenarlı buton */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.btn-details:hover {
    background-color: #0056b3; /* Butonun hover rengi */
}
/* --- Google Fonts (Daha premium ve okunaklı bir font) --- */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600&display=swap');

/* --- Tasarımın Kalbi: CSS Değişkenleri --- */
/* Buradaki renkleri değiştirerek tüm temayı kolayca özelleştirebilirsiniz */
:root {
    --bg-color: #0d0d0f; /* Sayfa arkaplanı (çok koyu) */
    --card-color: #1a1a1f; /* Kart arkaplanı */
    --glass-color: rgba(26, 26, 31, 0.5); /* Cam efekti rengi ve şeffaflığı */
    --border-color: rgba(255, 255, 255, 0.1); /* Normal durumdaki kart kenarlığı */
    --glow-color-1: #00f2ff; /* Işıltı için 1. renk (turkuaz) */
    --glow-color-2: #c63cff; /* Işıltı için 2. renk (mor) */
    --text-primary: #f0f0f0; /* Ana metin rengi */
    --text-secondary: #a0a0a0; /* İkincil metin rengi */
    --transition-duration: 0.5s; /* Animasyon hızı */
    --border-radius: 16px; /* Kenar yuvarlaklığı */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Lexend', sans-serif;
    overflow-x: hidden; /* Yatay scroll'u engelle */
}

.menu-title {
    font-weight: 600;
    font-size: 2.8rem;
    background: linear-gradient(90deg,#080808, #080808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

/* --- Ürün Grid Yapısı (Değişiklik yok) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

/* --- ŞAHANE Ürün Kartı Tasarımı --- */
.product-card {
    background: var(--card-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    cursor: pointer;
    overflow: hidden; /* İçerideki efektlerin taşmasını önler */
    position: relative; /* İçindeki mutlak konumlu öğeler için referans noktası */
    transition: transform 0.4s ease, border-color 0.4s ease;
    
    /* Giriş animasyonu için başlangıç durumu */
    opacity: 0;
    transform: translateY(40px);
}

.product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Kartın üzerine gelince 3D bir "kalkma" efekti */
.product-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px) scale(1.02);
    border-color: rgba(0, 242, 255, 0.3);
}

/* --- Kart Işıltı Efekti (Pseudo-element ile) --- */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--glow-color-1), transparent 40%),
                radial-gradient(circle at 50% 100%, var(--glow-color-2), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-duration) ease-in-out;
    z-index: 2; /* Bilgi katmanının altında ama resmin üstünde */
}

.product-card:hover::before {
    opacity: 0.2; /* Işıltıyı yumuşak bir şekilde göster */
}

/* --- Ürün Resmi --- */
.product-image-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-duration) ease;
}

.product-card:hover .product-image {
    transform: scale(1.15);
}

/* --- Cam Efektli Bilgi Alanı --- */
.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: var(--glass-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari için */
    border-top: 1px solid var(--border-color);
    
    /* Başlangıçta kartın altında gizli */
    transform: translateY(100%);
    transition: transform var(--transition-duration) cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 3; /* En üst katman */
}

/* Kartın üzerine gelince bilgi alanı yukarı kayar */
.product-card:hover .product-info {
    transform: translateY(0);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color:#f0f0f0 !important;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    height: 0; /* Başlangıçta gizli */
    opacity: 0;
    transition: all var(--transition-duration) ease;
    transition-delay: 0.1s; /* İsimden biraz sonra belirsin */
}

/* Hover'da açıklama alanı görünür hale gelir */
.product-card:hover .product-description {
    height: 40px; /* Açıklama alanı için yer aç */
    opacity: 1;
}

/* --- Hover'da Görünecek Detaylar --- */
.product-details-hover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity var(--transition-duration) ease;
    transition-delay: 0.2s; /* Diğerlerinden sonra belirsin */
}

.product-card:hover .product-details-hover {
    opacity: 1; /* Hover'da görünür hale gelir */
}

.product-price {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    background: linear-gradient(90deg, var(--glow-color-1), var(--glow-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-details {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.7rem 1.4rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--text-primary);
    color: var(--card-color);
    border-color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.address-link{ color: inherit; text-decoration: none; }
.address-link:hover{ text-decoration: underline; }

html { scroll-behavior: smooth; }



