@font-face {
    font-family: 'Josefin Sans';
    src: url('../fonts/JosefinSans.ttf');
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramondBold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramondLight.ttf');
    font-weight: 300;
}

:root {
    --text-font: 'Cormorant Garamond';
    --title-font: 'Josefin Sans';
    --primary-color: #c6a786;
    --background-color: #062726;
    --background-alternative-color: #f5f5f5;
    --background-dark-color: #041c1b;
    --text-color: #fff;
    --text-alternative-color: #ddd;
    --product-background-color: #fff;
    --secondary-text-color: #000;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--text-font);
}

ul { list-style: none; }

a { text-decoration: none; }

h1, h2, h3, h4, h5, strong {
    font-family: var(--title-font);
    color: var(--primary-color);
}

body {
    background-color: var(--background-color);
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

header .logo {
    height: 5rem;
}

header .logo img {
    height: 100%;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav ul li a {
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--title-font);
    transition: .5s all;
}

header nav ul li a:hover {
    color: var(--primary-color);
}

header nav ul li:last-child a {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--primary-color);
}

header nav ul li:last-child a span {
    padding-top: .1rem;
    font-weight: 400;
    font-family: var(--title-font);
}

header nav ul li:last-child a i {
    font-size: 1.5rem;
}

section#slider {
    height: 30rem;
    width: 100%;
}

section#slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#slogan {
    padding: 2rem 10rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-items: center;
    min-height: 25rem;
    gap: 10rem;
}

section#slogan .photo {
    height: inherit;
    width: 100%;
}

section#slogan .photo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

section#slogan .text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

section#slogan .text h1 {
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 1.7rem;
}

section#slogan .text h2 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.7rem;
}

section#slogan .text p {
    color: var(--text-alternative-color);
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
}

section#urunler {
    min-height: 50rem;
    background: var(--background-color);
    padding: 2rem 8rem;
}

section#urunler .urunler-group {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

section#urunler .urunler-group .category {
    background: var(--background-color);
    width: 18rem;
    height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

section#urunler .urunler-group .category h2 {
    color: var(--text-color);
}

section#urunler .urunler-group .category h3 {
    color: var(--text-color);
    font-family: var(--text-font);
    text-align: center;
    font-weight: normal;
}

section#urunler .urunler-group .urunler-list {
    height: 18rem;
    width: 100%;
}

section#urunler .urunler-group .urunler-list .card-list {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
}

section#urunler .urunler-group .urunler-list .card-list .card-item .card-link {
    height: 18rem;
    display: block;
    background-color: var(--product-background-color);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    transition: .2s ease;
    border: 2px solid transparent;
}

section#urunler .urunler-group .urunler-list .card-list .card-item .card-link:hover {
    border: 2px solid var(--primary-color);
}

section#urunler .urunler-group .urunler-list .card-list .card-item .card-link img {
    width: 100%;
    height: 75%;
    object-fit: cover;
}

section#urunler .urunler-group .urunler-list .card-list .card-item .card-link .card-text {
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

section#urunler .urunler-group .urunler-list .card-list .card-item .card-link .card-text h3 {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    font-weight: normal;
}

section#urunler .urunler-group .urunler-list .card-list .card-item .card-link .card-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: normal;
}

section#urunler .show-all {
    padding: 2rem 0;
}

section#urunler .show-all a {
    font-size: 1.3rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: .5s all;
}

section#urunler .show-all a:hover {
    color: var(--text-alternative-color);
    scale: 1.05;
}

section#urunler .show-all a i {
    font-family: var(--title-font);
    font-weight: 500;
    font-size: 2.5rem;
}

section#urunler .show-all a span {
    font-family: var(--title-font);
    font-weight: 500;
    margin-top: .35rem;
}

img.borderline {
    height: 2rem;
    margin: 0 auto;
    display: block;
}

section#hakkimizda {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 30rem;
    width: 100%;
}

section#hakkimizda .photo {
    width: 100%;
    height: inherit;
}

section#hakkimizda .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#hakkimizda .text {
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

section#hakkimizda .text h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 500;
}

section#hakkimizda .text p {
    color: var(--text-color);
    font-weight: 300;
    font-size: 1.4rem;
}

section#katalog {
    padding: 2rem 8rem;
}

section#katalog h1 {
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: .6rem;
    font-size: 1.8rem;
}

section#katalog .group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

section#katalog .group .item {
    position: relative;
    height: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    cursor: pointer;
}

section#katalog .group .item:hover h2 {
    color: var(--primary-color);
}

section#katalog .group .item:hover img {
    opacity: 1;
}

section#katalog .group .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    opacity: .8;
    transition: .3s all;
}

section#katalog .group .item h2 {
    z-index: 10000;
    text-align: center;
    text-shadow: 1px 1px 2px black;
    font-size: 1.7rem;
    transition: .3s all;
    color: #fff;
}

section#iletisim, footer.katalogfooter {
    padding: 3rem 10rem;
    display: flex;
    justify-content: space-between;
}

section#iletisim .telefon a, footer.katalogfooter .telefon a {
    font-size: 1.3rem;
    font-family: var(--title-font);
    color: var(--primary-color);
}

section#iletisim .isim, footer.katalogfooter .isim {
    font-size: 1.2rem;
    font-family: var(--title-font);
    color: var(--text-color);
}

section#urun {
    background: var(--background-dark-color);
    padding: 3rem 0;
}

section#urun h3 {
    padding-left: 10rem;
    display: inline-block;
}

section#urun h3 a {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-alternative-color);
    font-size: 1.1rem;
    transition: .5s all;
}

section#urun h3 a:hover {
    color: var(--primary-color);
}

section#urun h3 a i {
    font-size: 1.3rem;
}

section#urun h3 a span {
    font-family: var(--title-font);
    font-weight: 400;
    margin-top: .2rem;
}

section#urun .urun-container {
    display: grid;
    padding: 2rem 10rem;
    grid-template-columns: 3fr 4fr;
    height: 30rem;
}

section#urun .urun-container .photo {
    width: 100%;
    height: calc(30rem - 4rem);
}

section#urun .urun-container .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
}

section#urun .urun-container .text {
    display: flex;
    align-items: flex-start;
    padding: 0 3rem;
    flex-direction: column;
    gap: 1.5rem;
}

section#urun .urun-container .text .urunkodu {
    color: #ddd;
    font-family: var(--title-font);
    font-weight: 300;
}

section#urun .urun-container .text .title {
    font-family: var(--title-font);
    font-size: 2.1rem;
    color: var(--text-color);
}

section#urun .urun-container .text .fiyat {
    font-family: var(--title-font);
    font-size: 1.6rem;
    color: var(--primary-color);
}

section#urun .urun-container .text .desc {
    font-size: 1.4rem;
    color: var(--text-alternative-color);
    font-weight: 300;
}

section#urun .urun-container .text .button a {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: block;
    color: var(--text-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: .5s all;
}

section#urun .urun-container .text .button a i {
    font-size: 1.3rem;
}

section#urun .urun-container .text .button a span {
    font-family: var(--title-font);
    margin-top: .2rem;
}

section#urun .urun-container .text .button a:hover {
    opacity: .9;
}

section#benzerurunler .urunler-group {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

section#benzerurunler .urunler-group .category {
    background: var(--background-color);
    width: 18rem;
    height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

section#benzerurunler .urunler-group .category h2 {
    color: var(--text-color);
}

section#benzerurunler .urunler-group .category h3 {
    color: var(--text-color);
    font-family: var(--text-font);
    text-align: center;
    font-weight: normal;
}

section#benzerurunler .urunler-group .urunler-list {
    height: 18rem;
    width: 100%;
}

section#benzerurunler .urunler-group .urunler-list .card-list {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
}

section#benzerurunler .urunler-group .urunler-list .card-list .card-item .card-link {
    height: 18rem;
    display: block;
    background-color: var(--product-background-color);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    transition: .2s ease;
    border: 2px solid transparent;
}

section#benzerurunler .urunler-group .urunler-list .card-list .card-item .card-link:hover {
    border: 2px solid var(--primary-color);
}

section#benzerurunler .urunler-group .urunler-list .card-list .card-item .card-link img {
    width: 100%;
    height: 75%;
    object-fit: cover;
}

section#benzerurunler .urunler-group .urunler-list .card-list .card-item .card-link .card-text {
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

section#benzerurunler .urunler-group .urunler-list .card-list .card-item .card-link .card-text h3 {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    font-weight: normal;
}

section#benzerurunler .urunler-group .urunler-list .card-list .card-item .card-link .card-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: normal;
}

section#benzerurunler {
    padding: 2rem 10rem 0 10rem;
}

section#benzerurunler h2 {
    margin-top: 2rem;
}

section#kategori {
    padding: 2rem 10rem;
}

section#kategori h1 {
    margin-bottom: 2rem;
    font-family: var(--title-font);
    text-transform: uppercase;
}

section#kategori .urunler {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

section#kategori .urunler .urun .card-link {
    height: 18rem;
    display: block;
    background-color: var(--product-background-color);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    transition: .2s ease;
    border: 2px solid transparent;
}

section#kategori .urunler .urun .card-link:hover {
    border: 2px solid var(--primary-color);
}

section#kategori .urunler .urun .card-link img {
    width: 100%;
    height: 75%;
    object-fit: cover;
}

section#kategori .urunler .urun .card-link .card-text {
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

section#kategori .urunler .urun .card-link .card-text h3 {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    font-weight: normal;
}

section#kategori .urunler .urun .card-link .card-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: normal;
}

section#urunler .urunler-group:nth-child(4n) {
    flex-direction: row-reverse;
}

footer.mainfooter {
    text-align: center;
    padding: 1rem 0;
    color: #fff;
}

footer.mainfooter a {
    color: skyblue;
}