﻿:root {

    --primary-gold: #D4AF37;

    --primary-pink: #FAF9F6;

    --secondary-pink: #EFEDE8;

    --text-dark: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);


    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;


    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #fdfaf6;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 5rem 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}


.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo img {
    height: 230px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
    margin: -40px 0;
}

.header.scrolled .logo img {
    height: 180px;
    margin: -40px 0;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    width: 100%;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    padding: 1rem 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-left: 2px solid var(--primary-gold);
}


.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-contact {
    background-color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: var(--text-dark);
    /* Siyah */
    border-color: var(--text-dark);
    color: var(--primary-gold) !important;
}

.btn-contact::after {
    display: none;
}


.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}


.hero {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect */
}

/* has-image sınıfına gerek kalmadı ama yedek olarak kalsın */
.hero.has-image {
    background: url('../images/hero-bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay'i azalttım ki arka plan görünsün */
    background: linear-gradient(135deg, rgba(243, 229, 230, 0.4) 0%, rgba(253, 250, 246, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--primary-gold);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}


.page-header {
    background: url('../images/page-header-bg.png') no-repeat center center;
    background-size: cover;
    padding: 16rem 0 5rem;

    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}


.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}


.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    border: none;
}

.btn-primary {
    background-color: var(--text-dark);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--white);
}


.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}


.footer {
    background-color: #0a0a0a;

    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;

    margin-bottom: 3rem;
}


.footer-brand,
.footer-links {
    background: rgba(255, 255, 255, 0.03);

    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: all 0.3s ease;
    height: 100%;

}

.footer-brand:hover,
.footer-links:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);

}

.footer-brand h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
}

.footer-social a:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

/* Contact Page Social Icons Fix */
.contact-info .footer-social a {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.contact-info .footer-social a:hover {
    color: var(--white);
    background-color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}


.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}


@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        /* Tablette biraz daha geniş olabilir */
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        gap: 1.5rem;
        /* Menü aralıklarını aç */
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }


    .nav-links.active {
        transform: translateX(0);

    }


    .dropdown>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown>a i {
        padding: 10px 20px;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 5px;
        margin-left: 10px;
        transition: all 0.3s;

        cursor: pointer;
    }

    .dropdown>a i:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-gold);
    }


    .nav-links li {
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        transform: translateX(0);
        opacity: 1;
    }


    .nav-links.active li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.35s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.45s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.5s;
    }

    .hamburger {
        display: flex;

        align-items: center;
        justify-content: center;
        z-index: 1001;
        position: relative;
        width: 50px;

        height: 50px;
        cursor: pointer;

    }

    .logo {
        max-width: 70%;

    }

    .logo img {
        height: 130px;
        width: auto;

        margin: -5px 0;
        max-width: 100%;

    }

    .header.scrolled .logo img {
        height: 90px;
        margin: -5px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 14rem 0 3rem;

    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
        /* Tablette 2 sütun */
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
        /* Mobilde Tek Sütun */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

.sales-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    left: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF !important;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 2px;
    /* Visual center adjustment */
}

/* Product Gallery Grid in Fason Uretim */
.production-gallery-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    background: #fff;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.production-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.production-gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Force Square for uniformity */
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.production-gallery-card:hover .production-gallery-img {
    transform: scale(1.05);
}
