/* MARUS Website - Custom Styles */

:root {
    --primary-color: #2c3e50;
    --text-light: #ffffff;
    --text-dark: #333333;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 20px 0;
    background: rgb(0 0 0);
    overflow: visible;
}

.header .container {
    overflow: visible;
}

.header .row {
    overflow: visible;
}

.header nav {
    overflow: visible;
}

.logo {
    height: 28px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.nav-links li {
    position: relative;
    overflow: visible;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
}

.nav-links li a:hover {
    opacity: 0.8;
}

.nav-links li a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333333;
    min-width: 200px;
    z-index: 999;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.social-icons {
    display: flex;
    gap: 2px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    padding: 80px 20px 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
     font-size: 54px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    line-height: 1.1; /* Daha da sıkıştırdım */
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap; /* Satır geçişini sadece <br> ile zorla */
}
/* Slide Navigation */
.slide-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}


.slide-btn {
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Project Sections */
.project-bilkent,
.project-beytepe {
    padding: 60px 0;
    background: #ffffff;
}

.project-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-project-image {
    width: 100%;
}

.main-project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-item-large {
    flex: 1;
    overflow: hidden;
    margin-bottom: 0;
    height: 100%;
}

.gallery-item-small {
    height: 100%;
    overflow: hidden;
}

.gallery-item-large img,
.gallery-item-small img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item-large:hover img,
.gallery-item-small:hover img,
.main-project-image:hover img {
    transform: scale(1.05);
}

.gallery-container .row {
    flex: 1;
    margin: 0;
}

.gallery-container .row:first-child {
    flex: 1.5;
}

.gallery-container .row:last-child {
    flex: 1;
}

/* Project Content */
.project-branding {
    padding: 20px;
}

.project-logo {
    max-width: 182px;
    margin-bottom: 20px;
}

.flower-decoration {
    max-width: 160px;
}

.project-text {
    font-family: 'Inter', sans-serif;
    padding: 20px;
}

.project-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
    text-align: justify;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    background: #4a90e2;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-left: auto;
    float: right;
}

.project-btn:hover {
    background: #357abd;
    color: white;
    transform: translateX(5px);
}

.project-btn svg {
    transition: transform 0.3s ease;
}

.project-btn:hover svg {
    transform: translate(3px, -3px);
}

/* Parallax Section */
.parallax-section {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0,
0.4)), url('https://abrakadabraweb.com/m2/assets/img/parallax.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-content {
    text-align: center;
    z-index: 2;
}

.parallax-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
}

/* Completed Projects Section */
.completed-projects-section {
    background: #f8f9fa !important;
    padding: 80px 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #333;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999;
}

.project-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
    z-index: 10;
}

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

.project-card:hover a {
    gap: 12px !important;
}

.project-card:hover a i {
    transform: translateX(3px);
}

/* Contact Section */
.contact-section {
    background: white !important;
}

.contact-form-wrapper {
    background: white;
    padding: 80px 20px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: 100%;
    margin: 0;
    width: 100%;
}

.contact-input,
.contact-textarea {
    border: none;
    background: #f3f5f7;
    border-radius: 0;
    padding: 35px 30px;
    font-size: 18px;
    color: #666;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 80px;
    margin-bottom: 15px;
}

.contact-input:focus,
.contact-textarea:focus {
    background: #f0f0f0;
    box-shadow: none;
    border: 1px solid #ddd;
    outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #999;
    font-weight: 400;
    font-size: 18px;
}

.contact-textarea {
    resize: vertical;
    min-height: 220px;
    height: auto;
    padding: 35px 30px;
}

.form-check {
    margin: 40px 0;
}

.form-check-label {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin-left: 15px;
}

.form-check-input {
    margin-top: 0.25em;
    width: 22px;
    height: 22px;
}

.contact-btn {
    background: #6c8eb5;
    color: white;
    border: none;
    padding: 22px 45px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
}

.contact-btn:hover {
    background: #5a7ba3;
    color: white;
    transform: translateX(3px);
}

.contact-btn i {
    transition: transform 0.3s ease;
    font-size: 18px;
    margin-left: 8px;
}

.contact-btn:hover i {
    transform: translateX(3px);
}

/* Map Section */
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-container-full {
    width: 100%;
    height: 600px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.map-container-full iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
    margin: 0;
    padding: 0;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-container-full:hover iframe {
    filter: grayscale(20%);
}

/* Footer */
.footer {
    background: #000000;
    color: var(--text-light);
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
}

.footer-logo-white {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* Sub Footer */
.sub-footer {
    background: #e5e5e5;
    border-top: 1px solid #ddd;
    margin: 0 !important;
    padding: 10px 0 10px 0 !important;
    position: relative;
    z-index: 1;
}

.sub-footer * {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #333;
}

.footer-separator {
    color: #999;
    font-size: 12px;
}

.sub-footer-text {
    color: #666;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #6c8eb5;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(108, 142, 181, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #5a7ba3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 142, 181, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links,
    .social-icons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 42px; /* %50 büyütüldü (28px -> 42px) */
        font-weight: 800;
        font-family: 'Inter', sans-serif;
    }
    
    .slide-nav {
        bottom: 30px;
        gap: 15px;
    }
    
    .slide-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-text {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .parallax-section {
        height: 300px;
        background-attachment: scroll;
    }
    
    .parallax-title {
        font-size: 32px;
        padding: 0 20px;
    }
    .project-container {
        padding: 0 20px;
    }
    
    /* Project Logo ve Branding Mobil */
    .project-branding {
        text-align: center;
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .project-logo {
        max-width: 200px;
        margin: 0 auto 20px auto;
    }
    
    .project-logo img {
        width: 100%;
        height: auto;
        max-height: 60px;
        object-fit: contain;
    }
    
    .flower-decoration {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .flower-decoration img {
        width: 100% !important;
        height: auto;
        max-height: 120px;
        object-fit: contain;
    }
    
    /* Project Text Mobil */
    .project-text {
        padding: 20px 0;
        text-align: left;
    }
    
    .project-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .project-btn {
        float: none;
        display: inline-block;
        margin: 20px 0 0 0;
        padding: 12px 20px;
        font-size: 11px;
    }
    
    /* Gallery Container Mobil */
    .gallery-container {
        margin-top: 20px;
    }
    
    .main-project-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px; /* %50 büyütüldü (24px -> 36px) */
        font-weight: 800;
        font-family: 'Inter', sans-serif;
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo {
        height: 24px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .contact-input,
    .contact-textarea {
        padding: 20px 20px;
        font-size: 15px;
        height: 55px;
    }
    
    .contact-textarea {
        min-height: 150px;
        padding: 20px 20px;
    }
    
    .contact-btn {
        padding: 15px 30px;
        font-size: 13px;
    }
    
    .map-container-full iframe {
        height: 400px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .footer-links {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .sub-footer-text {
        text-align: center !important;
    }
    .project-container {
        padding: 0 15px;
    }
    
    .project-logo {
        max-width: 180px;
    }
    
    .project-logo img {
        max-height: 50px;
    }
    
    .flower-decoration {
        max-width: 120px;
    }
    
    .flower-decoration img {
        max-height: 100px !important;
    }
    
    .project-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Proje bölümlerinin aralarındaki mesafe */
    .project-bilkent,
    .projects-section {
        padding: 40px 0;
    }
}
/* Sub-footer güçlü CSS düzeltmesi */

.sub-footer .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.sub-footer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.sub-footer .col-md-6 {
    padding-left: 0 !important;
}

.footer-links {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Mobilde */
@media (max-width: 768px) {
    .sub-footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 480px) {
    .sub-footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/* SON İKİ DÜZELTME - CSS dosyanızın en sonuna ekleyin */

/* ========== MOBİL HERO YAZISI DÜZELTMESİ ========== */

/* Mobil hero yazısı okunabilir yap */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        padding: 0 20px !important;
        margin-bottom: 20px !important;
        white-space: normal !important; /* Satır geçişine izin ver */
        word-wrap: break-word !important;
        text-align: center !important;
    }
    
    .hero-content {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px !important;
        line-height: 1.4 !important;
        padding: 0 15px !important;
    }
}

/* ========== FOOTER LİNK DÜZELTMELERİ ========== */

/* Footer linklerini düzelt */
.footer-link {
    color: rgba(255, 255, 255, 0.8) !important; /* Beyazımsı renk */
    text-decoration: none !important; /* Alt çizgi kaldır */
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white !important; /* Hover'da beyaz */
    text-decoration: none !important; /* Hover'da da alt çizgi yok */
}

/* Footer elements ortalama */
@media (max-width: 768px) {
    /* Footer genel ortalama */
    .footer {
        text-align: center !important;
    }
    
    /* Sub-footer ortalama */
    .sub-footer {
        text-align: center !important;
    }
    
    .footer-links {
        justify-content: center !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .sub-footer-text {
        text-align: center !important;
    }
    
    /* Footer içerik ortalama */
    .footer .col-lg-3,
    .footer .col-md-6 {
        text-align: center !important;
        margin-bottom: 25px !important;
    }
    
    .footer-title {
        text-align: center !important;
    }
    
    .footer-text {
        text-align: center !important;
    }
}
/* ========== EK MOBİL DÜZELTMELERİ ========== */

/* Sub-footer yazılarını siyah yap */
@media (max-width: 768px) {
    .footer-link {
        color: #333 !important; /* Siyah renk */
        text-decoration: none !important;
    }
    
    .footer-link:hover {
        color: #000 !important; /* Hover'da daha koyu siyah */
        text-decoration: none !important;
    }
    
    .sub-footer-text {
        text-align: center !important;
        color: #333 !important; /* Siyah renk */
    }
}

/* Footer sosyal medya ikonlarını ortala */
.footer-social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
}

@media (max-width: 768px) {
    .footer-social-icons {
        justify-content: center !important;
        margin: 15px auto !important;
        display: flex !important;
    }
}

/* Hamburger menüyü sağa getir */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        float: right !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 10px !important;
    }
    
    /* Header sağ kolon sağa hizala */
    .header .col-6:last-child {
        text-align: right !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
    
    /* Header sol kolon sola hizala */
    .header .col-6:first-child {
        text-align: left !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
}
/* Desktop'ta footer'ın son kolonu sağa hizalı */
@media (min-width: 769px) {
    .footer .col-lg-3:last-child,
    .footer .col-md-6:last-child {
        text-align: right !important;
    }
    
    .footer .col-lg-3:last-child .footer-content,
    .footer .col-md-6:last-child .footer-content {
        text-align: right !important;
    }
    
    .footer .col-lg-3:last-child .footer-title,
    .footer .col-md-6:last-child .footer-title {
        text-align: right !important;
    }
    
    .footer .col-lg-3:last-child .footer-text,
    .footer .col-md-6:last-child .footer-text {
        text-align: right !important;
    }
    
    .footer .col-lg-3:last-child .footer-social-icons,
    .footer .col-md-6:last-child .footer-social-icons {
        justify-content: flex-end !important;
    }
}
/* ========== MASAÜSTÜ TEK GÖRSEL DÜZELTMESİ ========== */

/* Sadece masaüstünde (768px ve üzeri) çalışsın */
@media (min-width: 768px) {
    
    /* Tüm gallery container'ları gizle */
    .gallery-container {
        display: none !important;
    }
    
    /* Ana görsel alanını tam genişlik yap */
    .col-md-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .col-md-4 {
        display: none !important;
    }
    
    /* Her proje için farklı background image - yumuşak geçiş ile */
    
    /* 1. Proje - Marus Bilkent */
    #mainProjectImage img {
        content: url('https://abrakadabraweb.com/marus/assets/img/proje1.png') !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        transition: all ease 0.1s !important;
    }
    
    /* 2. Proje - Marus Beytepe */
    #mainProjectImage2 img {
        content: url('https://abrakadabraweb.com/marus/assets/img/proje2.png') !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        transition: all ease 0.1s !important;
    }
    
    /* 3. Proje - Marus Art */
    #mainProjectImage3 img {
        content: url('https://abrakadabraweb.com/marus/assets/img/art1.png') !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        transition: all ease 0.1s !important;
    }
    
    /* 4. Proje - Marus İncek */
    #mainProjectImage4 img {
        content: url('https://abrakadabraweb.com/marus/assets/img/proje4.png') !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        transition: all ease 0.1s !important;
    }
}

/* Mobilde normal görünüm korunur */
@media (max-width: 767px) {
    .gallery-container {
        display: flex !important;
    }
    
    .col-md-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
}

/* ========== ÇİÇEK VE FIRÇA BÜYÜTME ========== */

/* Sadece masaüstünde (768px ve üzeri) */
@media (min-width: 768px) {
    
    /* Çiçek dekorasyonu %40 büyütme */
    .flower-decoration {
        max-width: 224px !important; /* 160px * 1.4 = 224px */
        transform: scale(1.4) !important;
        transform-origin: center !important;
    }
    
    .flower-decoration img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Fırça dekorasyonu - orijinal boyutta */
    img[src*="firca.png"] {
        transform: none !important;
        width: 160px !important; /* Sabit boyut */
        height: auto !important;
    }
    
    /* Alternatif: Eğer fırça da flower-decoration class'ı kullanıyorsa */
    .flower-decoration img[src*="firca.png"] {
        transform: none !important;
        width: 160px !important;
        height: auto !important;
    }
    
    /* Container'a ekstra margin ver ki büyüyen öğeler taşmasın */
    .project-branding {
        padding: 30px 20px !important; /* Eskisi 20px idi, artırdık */
    }
}

/* Mobilde normal boyut kalsın */
@media (max-width: 767px) {
    .flower-decoration {
        transform: none !important;
        max-width: 120px !important; /* Mobil için normale döner */
    }
    
    img[src*="firca.png"] {
        transform: none !important;
        width: 160px !important;
    }
}







/* Marus Yapı başlığı ve alt yazısı için özel stil */
.about-section .section-title {
    font-size: 36px;
    font-weight: 400 !important; /* Inter Regular */
    color: #506F92 !important; /* Belirtilen renk */
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif !important;
}

.about-section .section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #506F92 !important; /* Belirtilen renk */
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important; /* Inter Regular */
    margin-bottom: 20px;
}

/* Navbar konumu düzeltmesi */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-start !important; /* Sola hizala */
    padding-left: 30px !important; /* Logo'dan 30px boşluk */
    overflow: visible;
}

/* Slide overlay kaldırma - sadece slide'lardaki genel overlay */
.slide::before {
    display: none !important; /* Slide üstündeki transparan katmanı kaldır */
}

/* Proje sayfasına git buton rengi */
.project-btn {
    display: inline-flex;
    align-items: center;
    background: #506F92 !important; /* Belirtilen renk */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-left: auto;
    float: right;
}

.project-btn:hover {
    background: #3e5a7a !important; /* Hover için daha koyu ton */
    color: white;
    transform: translateX(5px);
}

/* Footer Mail & Social bölümünü sola yaslama */
@media (min-width: 769px) {
    .footer .col-lg-3:last-child,
    .footer .col-md-6:last-child {
        text-align: left !important; /* Sağdan sola değiştir */
    }
    
    .footer .col-lg-3:last-child .footer-content,
    .footer .col-md-6:last-child .footer-content {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-title,
    .footer .col-md-6:last-child .footer-title {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-text,
    .footer .col-md-6:last-child .footer-text {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-social-icons,
    .footer .col-md-6:last-child .footer-social-icons {
        justify-content: flex-start !important; /* Sosyal medya ikonları sola */
    }
}

/* Sub-footer renk güncellemesi */
.sub-footer {
    background: #B8C6D6 !important; /* #506F92'nin %28 açık hali */
    border-top: 1px solid #ddd;
    margin: 0 !important;
    padding: 10px 0 10px 0 !important;
    position: relative;
    z-index: 1;
}

/* Sub-footer yazı renkleri */
.footer-link {
    color: #808080 !important; /* #000000'ın %50'si */
    text-decoration: none !important;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #666666 !important; /* Hover için biraz daha koyu */
    text-decoration: none !important;
}

.sub-footer-text {
    color: #808080 !important; /* #000000'ın %50'si */
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

/* GÖNDER butonu stil güncellemesi - PROJE butonu ile tam aynı */
.contact-btn {
    display: inline-flex !important;
    align-items: center !important;
    background: #506F92 !important; /* Kurumsal renk */
    color: white !important;
    padding: 12px 24px !important; /* Proje butonuyla aynı padding */
    text-decoration: none !important;
    font-size: 12px !important; /* Proje butonuyla aynı font size */
    font-weight: 500 !important; /* Proje butonuyla aynı font weight */
    letter-spacing: 1px !important; /* Proje butonuyla aynı letter spacing */
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    margin-left: auto !important;
    border: none !important;
    text-transform: uppercase !important;
    font-family: 'Inter', sans-serif !important;
    min-height: auto !important; /* Yükseklik sınırlaması kaldır */
    line-height: normal !important; /* Line height sıfırla */
}

.contact-btn:hover {
    background: #3e5a7a !important; /* Hover için daha koyu ton */
    color: white;
    transform: translateX(3px);
}

/* Footer Mail & Social bölümünü sola yaslama */
@media (min-width: 769px) {
    .footer .col-lg-3:last-child,
    .footer .col-md-6:last-child {
        text-align: left !important; /* Sağdan sola değiştir */
    }
    
    .footer .col-lg-3:last-child .footer-content,
    .footer .col-md-6:last-child .footer-content {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-title,
    .footer .col-md-6:last-child .footer-title {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-text,
    .footer .col-md-6:last-child .footer-text {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-social-icons,
    .footer .col-md-6:last-child .footer-social-icons {
        justify-content: flex-start !important; /* Sosyal medya ikonları sola */
    }
}

/* Footer Mail & Social bölümünü sola yaslama */
@media (min-width: 769px) {
    .footer .col-lg-3:last-child,
    .footer .col-md-6:last-child {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-content,
    .footer .col-md-6:last-child .footer-content {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-title,
    .footer .col-md-6:last-child .footer-title {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-text,
    .footer .col-md-6:last-child .footer-text {
        text-align: left !important;
    }
    
    .footer .col-lg-3:last-child .footer-social-icons,
    .footer .col-md-6:last-child .footer-social-icons {
        justify-content: flex-start !important;
    }
}

/* Sub-footer container düzeltmesi */
.sub-footer .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.sub-footer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.sub-footer .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer-links {
    margin-left: 0 !important;
    padding-left: 0 !important;
    justify-content: flex-start !important;
}

/* MARUS © 2025 yazısı doğru hizalama */
@media (min-width: 769px) {
    .sub-footer-text {
        margin-left: 20px !important; /* Footer mail başlığı ile hizalı */
        text-align: left !important; /* Sol hizalı kal */
        padding-left: 0 !important; /* Padding sıfır */
        margin-right: 0 !important; /* Sağ margin sıfır */
        padding-right: 0 !important; /* Sağ padding sıfır */
    }
}

/* Mobilde sub-footer hizalama */
@media (max-width: 768px) {
    .sub-footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Mobilde sub-footer iki satır */
    .sub-footer .row {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .sub-footer .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* 1. Satır - Footer linkler üste */
    .sub-footer .col-md-6:first-child {
        order: 1 !important;
        margin-bottom: 15px !important; /* Boşluğu artır */
    }
    
    .footer-links {
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
        font-size: 10px !important; /* Küçük font */
        line-height: 1.2 !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }
    
    .footer-link {
        font-size: 10px !important;
        white-space: nowrap !important;
    }
    
    .footer-separator {
        margin: 0 3px !important;
        font-size: 10px !important;
    }
    
    /* 2. Satır - Copyright alta */
    .sub-footer .col-md-6:last-child {
        order: 2 !important;
        width: 100% !important;
    }
    
    .sub-footer-text {
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 10px !important; /* Küçük font */
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 375px) {
    .footer-links {
        font-size: 9px !important;
    }
    
    .footer-link {
        font-size: 9px !important;
    }
    
    .footer-separator {
        font-size: 9px !important;
        margin: 0 2px !important;
    }
    
    .sub-footer-text {
        font-size: 9px !important;
    }
}

/* Dropdown menü hover alanını tam kapla */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100% !important; /* Link genişliği %100 */
    box-sizing: border-box !important; /* Padding dahil genişlik hesaplansın */
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(255,255,255,0.1);
    width: 100% !important; /* Hover alanı tam genişlik */
}

/* Proje kartları gölge düzeltmesi */
.project-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none !important; /* İlk durumda gölge yok */
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important; /* Sadece hover'da gölge */
    z-index: 10;
}

/* Mobilde proje görsel hizalama düzeltmesi - ANASAYFA TÜM PROJELERİ */
@media (max-width: 767px) {
    /* Ana büyük görsel referans genişlik */
    .main-project-image {
        width: 100% !important;
        margin: 0 auto !important;
        max-width: none !important;
        padding: 0 !important;
    }
    
    .main-project-image img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Gallery container - üstteki tek görsel için */
    .gallery-container {
        margin-top: 15px !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    /* Üstteki tek görsel ROW - art2.png gibi */
    .gallery-container .row:first-child {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .gallery-container .row:first-child .col-12 {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    /* Üstteki tek görsel - art2.png - ana görselle TAM AYNI genişlik */
    .gallery-item-large {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .gallery-item-large img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Alt iki görsel container'ı - art3.png ve art4.png için */
    .gallery-container .row:last-child {
        margin: 10px 0 0 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    /* Alt iki görsel her biri ana görselin yarısı genişliğinde - ORANTILI BOŞLUK */
    .gallery-container .row:last-child .col-6 {
        padding: 0 3px !important; /* Her tarafta 3px boşluk = aralarında 6px */
        margin: 0 !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        box-sizing: border-box !important;
    }
    
    /* İlk görsel sol kenardan başlasın */
    .gallery-container .row:last-child .col-6:first-child {
        padding-left: 0 !important;
        padding-right: 3px !important;
    }
    
    /* İkinci görsel sağ kenardan bitsin */
    .gallery-container .row:last-child .col-6:last-child {
        padding-left: 3px !important;
        padding-right: 0 !important;
    }
    
    /* Alt görsellerin kendileri */
    .gallery-item-small {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
    }
    
    .gallery-item-small img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
    }
    
    /* Bootstrap row düzeltmeleri */
    .gallery-container .row {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .gallery-container .row.mb-3 {
        margin-bottom: 10px !important;
    }
    
    /* Gap kaldırma */
    .gallery-container .row.g-3 {
        gap: 0 !important;
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
    }
    
    /* Tüm col'ları sıfırla */
    .gallery-container [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ========== HEADER-FOOTER GRİD HİZALAMA DÜZELTMESİ ========== */

/* Header referans grid sistemi */
@media (min-width: 769px) {
    
    /* Header kolonları - gerçek oranlar */
    .header .col-6:first-child,
    .header .col-md-3:first-child {
        flex: 0 0 20% !important; /* Logo kolonu %20 */
        max-width: 20% !important;
    }
    
    .header .col-md-6 {
        flex: 0 0 60% !important; /* Navbar kolonu %60 */
        max-width: 60% !important;
    }
    
    .header .col-6:last-child,
    .header .col-md-3:last-child {
        flex: 0 0 20% !important; /* Social kolonu %20 */
        max-width: 20% !important;
    }
    
    /* Footer 4 kolonu header grid oranlarına göre */
    
    /* Footer 1. kolon - Header logo alanı */
    .footer .col-lg-3:nth-child(1),
    .footer .col-md-6:nth-child(1) {
        flex: 0 0 20% !important; /* Header logo ile aynı */
        max-width: 20% !important;
        padding-left: 0 !important;
        padding-right: 10px !important;
    }
    
    /* Footer 2. kolon - Header navbar alanının 1/3'ü */
    .footer .col-lg-3:nth-child(2),
    .footer .col-md-6:nth-child(2) {
        flex: 0 0 20% !important; /* Navbar alanının 1/3'ü */
        max-width: 20% !important;
        padding-left: 0 !important;
        padding-right: 10px !important;
    }
    
    /* Footer 3. kolon - Header navbar alanının 1/3'ü */
    .footer .col-lg-3:nth-child(3),
    .footer .col-md-6:nth-child(3) {
        flex: 0 0 20% !important; /* Navbar alanının 1/3'ü */
        max-width: 20% !important;
        padding-left: 0 !important;
        padding-right: 10px !important;
    }
    
    /* Footer 4. kolon - Header social alanı ile tam hizalı */
    .footer .col-lg-3:nth-child(4),
    .footer .col-md-6:nth-child(4) {
        flex: 0 0 40% !important; /* Navbar alanının 1/3'ü + social alanı */
        max-width: 40% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
        position: relative !important;
    }
    
    /* Footer 4. kolon içindeki social icons'ı header Facebook bitimi ile hizala */
    .footer .col-lg-3:nth-child(4) .footer-social-icons,
    .footer .col-md-6:nth-child(4) .footer-social-icons {
        justify-content: flex-end !important; /* Sağa yasla */
        padding: 0 !important;
        margin-top: 15px !important;
    }
    
    /* Sub-footer oranları footer ile uyumlu */
    .sub-footer .col-md-6:first-child {
        flex: 0 0 60% !important; /* İlk 3 footer kolonu */
        max-width: 60% !important;
    }
    
    .sub-footer .col-md-6:last-child {
        flex: 0 0 40% !important; /* Son footer kolonu */
        max-width: 40% !important;
        text-align: left !important;
    }
    
    /* Sub-footer copyright - Footer Facebook ikonu bitimi ile hizalı */
    .sub-footer-text {
        margin-left: 0 !important;
        text-align: right !important; /* Sağa hizala - footer Facebook bitimi ile */
        padding-left: 0 !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
    }
}