@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #d8b060;
    --darkBg: #303030;
    --white: #ffffff;
    --black: #000000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

.header {
    background-color: var(--white);
    width: 100%;
    z-index: 100;
    padding: 0.85rem 0;
}

.header.header--home {
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
}

.header .logo img {
    width: 170px;
}

.header .menu .desktop-menu li:not(:last-child) {
    margin-right: 2.4rem;
}

.header .menu .mobile-area {
    display: none;
    position: relative;
    top: 1px;
}

.header .menu .mobile-area .btn {
    color: var(--darkBg);
    padding: 0 !important;
    border-radius: 0 !important;
}

.header .menu .mobile-area .btn:focus {
    border: 0 !important;
    outline: 0;
    box-shadow: none !important;
}

.header .menu .mobile-area .btn:focus-within {
    border: 0 !important;
}

.header .menu .mobile-area .btn svg {
    font-size: 24px;
    overflow: visible;
}

.header .menu .mobile-area .dropdown-menu {
    padding: 0;
    min-width: 8.5rem;
    border-radius: 0;
    left: 0;
}

.header .menu .mobile-area .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgb(234, 234, 234);
}

.header .menu .mobile-area .dropdown-menu li a {
    font-size: 15px;
}

.header .menu .mobile-area .dropdown-menu li a.active {
    background-color: var(--darkBg);
}

.header .menu .desktop-menu li a {
    color: var(--black);
    font-weight: 200;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header .menu .desktop-menu li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    width: 0;
    height: 1px;
    transition: all .2s;
}

.header .menu .desktop-menu li:hover a::after,
.header .menu .desktop-menu li.active a::after {
    width: 100%;
}

/* home swiper */
.home-banner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}
.home-banner img {
    display: block;
    width: 100%;
    height: 85vh;
    object-fit: cover;
    object-position: top;
    filter: grayscale(80%);
}

.home-banner .text {
    position: absolute;
    bottom: 45%;
    left: 0;
    transform: translateY(45%);
    width: 100%;
    color: var(--white);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
}

.home-banner .social-area {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.96);
    padding: 0.6rem 2.05rem;
    z-index: 90;
}

.home-banner .social-area a {
    color: var(--black);
    display: inline-block;
    font-size: 20px;
    transition: .1s ease;
}
.home-banner .social-area a:not(:last-child) {
    margin-right: 1.35rem;
}

.home-banner .social-area a:hover {
    color: var(--primary);
}

.page-head {
    background-image: url(../images/banner-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    filter: grayscale(80%);
}

.page-head h1 {
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    position: relative;
}

/* hakkımızda */
.about-us {
    padding: 5.5rem 0;
    position: relative;
}

.about-us.about-us--home::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 18%;
    height: 65%;
    background: #f2f4f5;
    z-index: -1;
}

.about-us .about-us__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-us .about-us__text {
    padding: 2rem 0;
}

.about-us .about-us__text .title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.about-us .about-us__text p {
    font-weight: 300;
    margin-bottom: 2.15rem;
}

.about-us .about-us__text .action-link {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.4rem 1.45rem;
    font-weight: 300;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s ease;
}

.about-us .about-us__text .action-link:hover {
    background-color: var(--darkBg);
}

.about-us .about-us__text .action-link:nth-child(1) {
    margin-right: 0.85rem;
}

/* projects */
.projects {
    padding: 5.5rem 0;
}

.projects .project-item:not(:last-child) {
    margin-bottom: 4rem;
}

.projects .project-item img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.projects .project-item .swiper-button-next,
.projects .project-item .swiper-button-prev {
    color: var(--white);
}

.projects .project-item .swiper-button-next {
    right: 20px;
}

.projects .project-item .swiper-button-prev {
    left: 20px;
}

.projects .project-item .swiper-button-next::after,
.projects .project-item .swiper-button-prev::after {
    font-size: 30px;
}

.projects .project-item .project-item__title {
    padding: 30px 15px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
    position: relative;
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
    margin-top: 0px;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* contact - home */
.home-contact {
    padding: 3rem 0;
    border-top: 1px solid #f4f4f4;
}

.home-contact .contact-item .title {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.home-contact .contact-item a,
.home-contact .contact-item p {
    font-weight: 200;
    text-decoration: none;
    color: var(--black);
    margin-bottom: 0;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  z-index: 99999;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--darkBg);
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  -webkit-animation: spin 1.5s linear infinite;
          animation: spin 1.5s linear infinite;
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


/* contact */
.contact {
    padding: 5.5rem 0;
}
.contact .summary-text {
    text-align: center;
    margin-bottom: 2.5rem;
}
.contact .summary-text p {
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}
.contact .contact-info-area {
    margin-bottom: 1.5rem;
}
.contact .contact-info-area .info-item {
    display: flex;
    font-size: 17px;
}
.contact .contact-info-area .info-item:not(:last-child) {
    margin-bottom: 1.5rem;
}
.contact .contact-info-area .info-item .icon {
    margin-right: 0.65rem;
}
.contact .contact-info-area .info-item .icon svg {
    color: var(--primary);
    font-size: 18px;
}
.contact .contact-info-area .info-item .text a {
    display: block;
    text-decoration: none;
    color: var(--black); 
}
.contact .maps-area iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

/* Footer */
.footer {
    background-color: var(--darkBg);
    color: var(--white);
    padding: 1rem 0;
}

.footer .copyright {
    font-size: 0.9rem;
    font-weight: 300;
}

.footer .social-links ul li:not(:last-child) {
    margin-right: 0.85rem;
}
.footer .social-links ul li a {
    color: var(--white);
    font-size: 1.35rem;
}

@media (max-width: 992px) {
    .header .menu .desktop-menu {
        display: none !important;
    }
    .header .menu .mobile-area {
        display: block;
    }
    .header .logo img {
        width: 120px;
    }
    .home-banner .text {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .home-banner .text {
        font-size: 17px;
    }
    .home-banner img {
        height: 55vh;
    }
    .about-us, .projects, .contact {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .header, .about-us, .home-banner .text, .projects, .contact, .home-contact, .footer {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .about-us__image img {
        height: 300px !important;
    }
    .about-us .action-link {
        padding: 0.4rem 1rem !important;
        font-size: 13px !important;
    }
    .footer {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .footer .copyright {
        font-size: 0.75rem;
    }

    .page-head {
        padding: 2.35rem 0.5rem;
    }
    .page-head h1 {
        font-size: 22px;
    }
    .projects .project-item .img-col {
        order: 2;
    }
    .projects .project-item .text-col {
        order: 1;
    }
    .projects .project-item img {
        height: 350px;
    }
    .projects .project-item .project-item__title {
        font-size: 16px;
    }
    .contact .summary-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    .contact .summary-text p {
        font-size: 16px;
    }
    .contact .contact-info-area {
        margin-bottom: 1.25rem;
    }
    .contact .contact-info-area .info-item {
        font-size: 15px;
    }
    .contact .contact-info-area .info-item:not(:last-child) {
        margin-bottom: 1.25rem;
    }
    .contact .contact-info-area .info-item .icon {
        margin-right: 0.55rem;
    }
    .contact .contact-info-area .info-item .icon svg {
        font-size: 16px;
    }
    .contact .maps-area iframe {
        height: 260px;
    }
}