@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
:root {
  /* font family */
  /* colors */
  --marcellus-font-family: "Marcellus", serif;


  --white-color: #fff;
  --light-pink-color: #ce8272;
  --dark-pink-color: #c1614e;
  --bg-pink-color: #f5ebe9;

  --dark-color: #182c33;
 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.text-light-pink {
  color: var(--light-pink-color);
}

.text-dark-pink {
  color: var(--dark-pink-color);
}

.navbar-container-1 {
  height: 14vh;
}

.nav-icon {
  font-size: 2rem;
  color: var(--light-pink-color);
}

.nav-info-text {
  font-size: 0.8rem;
  color: var(--dark-color);
}

.nav-text {
  color: var(--dark-color);
  font-size: 1.2rem;
}

.nav-icon-box:hover .nav-icon, .nav-icon-box:hover .nav-text, .nav-icon-box:hover .nav-info-text {
  color: var(--dark-pink-color);
}

.navbar-container-2 {
  height: 8vh;
  background-color: none;
  background: none;
/*  background-color: var(--bg-pink-color); */
  width: 100%;
}

.nav-link {
  color: var(--bg-pink-color);
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--dark-pink-color);
}


body {
  font-size: 16px;
  font-family: var(--marcellus-font-family);
  color: var(--blue-color);
  font-weight: 300;
}


a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  transition: color 0.3s ease;

}

a:hover {
  color: var(--dark-color);
}


.navbar {
  position: fixed;
  font-weight: 500;
  top: 0;
  width: 100%;
  font-weight: 300;
  z-index: 3;
  background: none;
  padding: 0;
  color: var(--light-pink-color);
}



.navbar-scrolled {
  background-color: white;
}

.navbar-scrolled .navbar-container-2 {

  background-color: var(--bg-pink-color);
}

 
.navbar-scrolled .nav-container-1 {
  display: none;
  height: 0;
}

.navbar-scrolled .nav-link {
  color: var(--dark-color);
}

#navbar-2 {
  background-color: var(--bg-pink-color);
}

#navbar-2 .nav-link {
  color: var(--dark-color);
}

.sidebar-links {
  color: var(--blue-color);
  font-size: 1.4rem;
}

.sidebar-social {
  font-weight: 600;
  color: var(--sidebar-gray-color);
  font-size: 0.8rem;
}

.social-icon {
  font-weight: 300;
  background-color: var(--sidebar-gray-color);
  color: var(--white-color);
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.social-icon-transparent {
  font-weight: 300;
  color: var(--white-color);
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.sidebar-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.section-item {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
  background-size: cover;
  transition: transform 1s ease;
}
.brush-logo {
  width: 45% !important;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 40%;
}


.section-item {
  background-size: 100%;
  object-fit: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 3s ease-in-out;
}

.owl-item.active .section-item {
  background-size: 105%;
}



.hero-slogan-m {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0;
  color: var(--white-color);
}

.hero-slogan-xl {
  font-size: 3rem;
  font-weight: 600;
  color: var(--yellow-color);
}
.hero-arrow-btn {
  border: 1px solid var(--white-color);
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.hero-slogan-m, .hero-slogan-xl {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.slide-up-animation {
    opacity: 1;
    transform: translateY(0);
}

.scale-animation {
    transform: scale(1.1);
}


footer {
  background-color: var(--dark-pink-color);
  color: var(--white-color);
}




.polo-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
  margin: 10px;
  padding: 10px;
}

.polo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.polo-card-image {
  position: relative;
  overflow: hidden;
}

.polo-card-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.polo-card:hover .polo-card-image img {
  transform: scale(1.05);
}

.polo-card-content {
  padding: 20px;
}

.polo-card-content p {
  margin: 0;
  color: #333;
  font-size: 24px;
}



@media (max-width: 768px) {
  .hero-slogan-m {
    font-size: 1.5rem;
  }
  .hero-slogan-xl {
    font-size: 1.5rem;
  }

  .section-item {
    height: 40vh;
    background-size: 100%;
  }

  .nav-link {
    color: var(--dark-color);
  }
  
  
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 15px;
    padding: 15px;
}

.masonry-item {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.masonry-item:hover {
    transform: scale(1.02);
}

.masonry-content {
    height: 100%;
    width: 100%;
}

.masonry-content img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.masonry-item.small {
    grid-row: span 1;
}

.masonry-item.medium {
    grid-row: span 2;
}

.masonry-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 200px;
    }
    
    .masonry-item.large {
        grid-column: span 1;
    }
}
.photo-grid {
  column-count: 3;
  column-gap: 0px;
  padding: 10px;
}

.grid-item {
  break-inside: avoid;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 200px);
        height: auto;
    }
}

