/* #csss #lookk #designn */
/**
 * Akıllı Yazılım Mimarisi (AYM) - Tasarım Felsefesi: KASITLI MİNİMALİZM
 * Anti-Generic, Benzersizlik, Minimalizm
 */

:root {
    --primary: #e67e22;
    --secondary: #d35400;
    --dark: #0d0d0d;
    --dark-surface: #1a1a1a;
    --text: #ffffff;
    --text-muted: #888888;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(13, 13, 13, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--dark);
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0),
        linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
        url('image/pattern.png'); /* Opsiyonel desen, fallback olarak radial dot var */
    background-size: 40px 40px, cover, cover;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* #loaderr */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

#loader .loader-content {
    text-align: center;
}

.loader-logo {
    width: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(230, 126, 34, 0.3));
    animation: pulse 2s infinite ease-in-out;
}

.loader-content .progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-content .progress {
    height: 100%;
    background: var(--primary);
    width: 0;
    transition: width 0.4s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* #navv Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

#main-nav.scrolled {
    padding: 10px 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 60px;
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    gap: 40px;
}

.nav-logo img {
    height: 75px; /* Even bigger nav logo */
    margin-right: 20px;
    transition: var(--transition);
}

.photoshow__thumbnail {
    height: 350px; /* BIG logo in hero */
    margin-bottom: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-selector {
    position: relative;
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark-surface);
    padding: 10px;
    border: 1px solid var(--glass-border);
    display: none;
    border-radius: 8px;
    min-width: 120px;
}

.lang-selector:hover .lang-dropdown {
    display: flex;
    flex-direction: column;
}

.lang-dropdown a {
    padding: 8px 12px;
    font-size: 13px;
}

.nav-social-btn {
    font-size: 20px;
    color: var(--primary);
}

#mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-content {
    padding: 0 100px;
    max-width: 950px; /* Better for wider titles */
    z-index: 2;
    position: relative;
    text-align: left;
}

.hero h1 {
    font-size: 9rem; /* Much bigger title */
    line-height: 0.8;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.hero h1 span.accent {
    color: var(--primary);
    display: block;
    position: relative;
}

.hero h1 .branch {
    display: block;
    font-size: 2.5rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 5px;
    margin-top: -10px;
    text-align: right;
    width: 100%;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-video-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-video-sidebar video, .hero-video-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

/* Scroll Animation Canvas Section */
.scroll-canvas-section {
    position: relative;
    height: 300vh;
    background: #000;
}

canvas#video-canvas {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 100px;
}

.scroll-text {
    opacity: 0;
    transition: var(--transition);
    font-size: 4rem;
    color: #fff;
}

.scroll-text.active {
    opacity: 1;
}

/* Sections */
.section { padding: 150px 0; }
.container { max-width: 1600px; margin: 0 auto; padding: 0 60px; }

.section-title {
    margin-bottom: 80px;
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.section-title h1 {
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.section-title h2 { font-size: 5rem; }

.section-title .count {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: #e67e22; /* Image 2 Orange */
    color: #fff;
    border-radius: 100px; /* Fully rounded like Image 2 */
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    backdrop-filter: blur(10px);
}

.btn.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50px;
    padding: 18px 60px;
    min-width: 300px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.4);
    color: #fff;
    font-weight: 800;
}

.btn.instagram-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(220, 39, 67, 0.6);
}

/* Services / Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    border-radius: 20px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
}

.card-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card-info .price {
    display: none !important; /* #price-hide */
}

/* Home Blog Section */
.home-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    background: var(--dark-surface);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.blog-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-item-content {
    padding: 30px;
    flex-grow: 1;
}

.blog-item-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* AI Section Refined */
.ai-strip {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(26, 26, 26, 1) 50%);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(230, 126, 34, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 50px; /* Prevents overlapping */
}

.ai-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(230, 126, 34, 0.15), transparent);
    pointer-events: none;
}

.btn.ai-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn.ai-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 30px rgba(230, 126, 34, 0.4);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    background: var(--dark-surface);
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:nth-child(4n+1) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(4n+2) { grid-column: span 6; grid-row: span 1; }
.gallery-item:nth-child(4n+3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4n+4) { grid-column: span 3; grid-row: span 1; }

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-content { padding: 0 60px; }
    .hero h1 { font-size: 6rem; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    #mobile-toggle { display: block; }
    .hero-video-sidebar { width: 100%; opacity: 0.3; }
    .hero-content { text-align: center; margin: 0 auto; padding: 0 20px; }
    .hero h1 { font-size: 5rem; }
    .hero p { margin: 0 auto 40px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 4rem; }
    .product-grid { grid-template-columns: 1fr; }
    .section-title h1 { font-size: 4rem; }
}

/* #foooter Footer Redesign */
#main-footer {
    padding: 120px 0 60px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.footer-nav h4 {
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.footer-nav li:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.footer-nav i {
    color: var(--primary);
    width: 20px;
}

.security-seal {
    background: rgba(230, 126, 34, 0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(230, 126, 34, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    transition: var(--transition);
}

.security-seal:hover {
    background: rgba(230, 126, 34, 0.1);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.1);
}

.security-seal i {
    font-size: 50px;
}

.footer-bottom {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}
/* ---- css/index.css Finish ---- */
