﻿:root {
    --ana-renk: #7A7464;
    --vurgu: #BA931D;
    --yazi: #FAF9F6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

body {
    
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    color: var(--yazi);
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(122, 116, 100, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(250, 249, 246, 0.1);
}

.logo a {
    text-decoration: none;
}

.site-logo {
    max-height: 40px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.20);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--yazi);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a:hover {
    color: var(--vurgu);
}


.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--vurgu);
    box-shadow: 0 0 10px var(--vurgu), 0 0 20px var(--vurgu);
    border-radius: 10px;
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-panel {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 60px;
    border-radius: 15px;
    border: 1px solid rgba(250, 249, 246, 0.1);
    max-width: 800px;
    margin: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--yazi);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--vurgu);
    color: var(--yazi);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--yazi);
    color: var(--ana-renk);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.content-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 80px 50px;
    background: rgba(122, 116, 100, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(250, 249, 246, 0.1);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--vurgu);
    margin-bottom: 10px;
}

.section-subtitle {
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--yazi);
    opacity: 0.8;
}


.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-width: 300px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 15px;
    border-radius: 12px;
    border: 1px solid var(--vurgu);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(186, 147, 29, 0.1);
    transform: translateY(-5px);
}

.stat-box h3 {
    color: var(--vurgu);
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

.stat-box span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400; 
    font-family: 'Montserrat', sans-serif;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.catalog-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Derinlik için hafif bir gölge */
    transition: box-shadow 0.4s ease;
}


.catalog-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}


.card-img {
    width: 100%;
    height: 280px; 
    overflow: hidden;
}


.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
}


.catalog-card:hover .card-img img {
    transform: scale(1.15); 
}


.info-box h3 {
    color: var(--vurgu);
    font-size: 1.4rem; 
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    letter-spacing: 1px;
}

.info-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300; 
    line-height: 1.6;
    color: var(--yazi);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}


.btn-action {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-size: 0.85rem;
    font-weight: 600;
    
}


.text-link {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px; 
    color: var(--vurgu);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.text-link:hover {
    border-bottom: 1px solid var(--vurgu); 
    opacity: 1;
}
.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch; 
}


.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.info-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--vurgu); 
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px); 
    background: rgba(0, 0, 0, 0.3);
}

.info-box h3 {
    color: var(--vurgu);
    font-size: 1.2rem; 
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif; 
    font-style: normal; 
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.info-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--yazi);
    line-height: 1.5;
}


.text-link {
    color: var(--vurgu);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.7;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-action {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yazi);
    transition: all 0.3s ease;
    text-align: center;
    flex: 1; 
}

.call-btn {
    background-color: var(--ana-renk); 
    border: 1px solid rgba(250, 249, 246, 0.2);
}

.call-btn:hover {
    background-color: var(--yazi);
    color: var(--ana-renk);
}

.wa-btn {
    background-color: #25D366; 
    color: #fff;
}

.wa-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
}


.contact-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden; 
    border: 1px solid rgba(250, 249, 246, 0.1);
    min-height: 300px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
    margin-left: auto; 
}


.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--yazi);
    transition: all 0.3s ease;
    border-radius: 3px;
}


@media (max-width: 900px) {
    .header {
        padding: 15px 20px; 
    }
    
    
    .menu-toggle {
        display: flex; 
    }
    
    
    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%; 
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 200px;
        text-align: center;
        padding: 30px 0;
        border-radius: 10px 0 0 10px;
        transition: right 0.4s ease; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    
    .nav-links.nav-active {
        right: 0; 
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links li a {
        font-size: 1.1rem; 
    }

    
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    
    .contact-wrapper { flex-direction: column; }
    .contact-map { min-height: 400px; }
    .about-wrapper { flex-direction: column; }
    .about-text { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
}

.insta-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #E1306C; 
    color: white;
    padding: 10px 20px;
    border-radius: 50px; 
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 999; 
    transition: all 0.3s ease;
}

.insta-float img {
    width: 25px;
    height: 25px;
}


.insta-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #bc2a8d; 
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}


@media (max-width: 600px) {
    .insta-float span {
        display: none;
    }
    .insta-float {
        padding: 12px;
        bottom: 20px;
        right: 20px;
    }
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px); 
}


.modal.show {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out forwards; 
}


@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--yazi);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--vurgu); 
}



.catalog-grid .catalog-card:nth-child(n+5) {
    display: none;
}


.catalog-grid.expanded .catalog-card:nth-child(n+5) {
    display: block;
    animation: fadeInYumusak 0.5s ease-in-out forwards;
}


@keyframes fadeInYumusak {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.catalog-actions {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}


#loadMoreBtn {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif; 
    padding: 15px 40px;
}

.site-footer {
    background: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(15px);
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    margin-top: 100px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.site-footer h2 {
    font-size: 2.5rem;
    color: var(--vurgu);
    margin-bottom: 10px;
}


.contact-map {
    flex: 1.2;
    min-height: 400px; 
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(250, 249, 246, 0.1);
    position: relative;
}


.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(250, 249, 246, 0.05);
    font-size: 0.8rem;
    opacity: 0.6;
}


@media (max-width: 900px) {
    .site-footer {
        padding: 60px 0 20px 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-map {
        width: 100%;
        min-height: 300px; 
        height: 300px;
    }
}