/* Genel Sıfırlama */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Red Hat Display", sans-serif;
  font-weight:500;
  background-color: #fff;
  color: #333;
}

/* HEADER ALANI */
.site-header {
  width: 100%;
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-logo img {
  height: 45px;
  object-fit: contain;
}

.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}


/* LOGO */
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}





/* NAV MENÜ */
.site-nav ul {
  display: flex;
gap:25px;
  
}

.site-nav li {
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  color: #444;

  transition: color 0.3s, background-color 0.3s;
  padding: 10px 17px;
  font-size:15px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:800;
 
  
}

/* Hover efekti (diğer linkler için) */
.site-nav a:hover {
  color: #000;
}

/* Öne çıkarılmış bağlantı */
.highlight-link {
  background-color: #000;
  color: #fff !important;
  border-radius: 20px;
  text-decoration: none;
  padding: 6px 12px;
  font-size:14px;

  
}

.highlight-link:hover {
  background-color: #333;	
   text-decoration: none;
}


/* ... önceki kodlar aynen kalıyor ... */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .site-nav .nav-links {
    display: none;
    position: absolute;
    top: 60px;
	right:0px;
    background: #f8f8f8;
    flex-direction: column;
	padding:20px 70px 20px 0px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	gap:25px;
  }
  .site-logo img {
  height: 35px;
  object-fit: contain;
}

  .site-nav .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .highlight-link {
    padding: 6px 12px;
    font-size: 0.6rem;
	border-radius: 20px;
	font-size:14px;
	margin-left:10px;
  }
}







/* About Section */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  width: 100%;
  
  

  flex-wrap: wrap;
}

.about-left, .about-right {
  width: 50%;
  position: relative;
}

.about-left {
  background-image: url('images/upcoming-bg.jpg');
  background-size: cover;
 

  background-position: center;
  padding: 35px;
  color: white;
  text-align: center;
}

.desc {
  font-size: 14px;
  margin-top:20px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:500;

}
.about-left h2 {
  font-size: 45px;
  
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
}
.about-left h1 {
  font-size: 32px;
  margin-bottom:40px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  margin-top:20px;
}

.blurbg {
background: rgba(255, 255, 255, 0.2); /* yarı saydam beyaz */
  backdrop-filter: blur(50px);          /* arka planı bulanıklaştır */
  -webkit-backdrop-filter: blur(50px);  /* Safari için */
  border-radius: 10px;                  /* isteğe bağlı */
  padding: 45px;                        /* isteğe bağlı içerik boşluğu */
}


.about-left p {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 20px;
   font-family: "Red Hat Display", sans-serif;
  font-weight:500;
  
}

#countdown {
  font-size: 40px;
  font-weight: bold;
  font-family: "Cal Sans", sans-serif;
  font-weight: 300;
  margin-top:10px;
  
}

.sponsors {
  display: flex;
  justify-content: space-around;
  margin-top:50px;
  
  
  
}

.sponsors img {
  width: 80px;
  height: auto;
  margin: 0px 10px;
}

.about-right {
  background-color: #fff;

   padding: 21px;
  
}

.about-right h2 {
  font-size: 78px;
  margin-bottom: 15px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 600;
  line-height:80px;
  
}

.about-right p {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:400;
  max-width:800px;
}
.line {

font-family: "Codystar", sans-serif;
font-size:100px;
}
.artist-photo img {

  height: 300px;
  border-radius: 8px;
}
.resim-photo img {
	margin-top:10px;
  max-height: 250px;
  border-radius: 8px;
}

.icon-text-container {
  display: flex;
  flex-wrap: wrap; /* mobilde satır altına geçmesini sağlar */
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.icon-text-container i {
 
  margin-top: 4px;
  color: #333;
}

.text-block {
  max-width: 250px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:500;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.buton {
 width:auto;
 height:auto;
 padding:10px;

text-align:center;
 border-radius:20px;
 margin:20px 80px 30px 80px;
 background-color:#111;
 font-family: "Red Hat Display", sans-serif;
  font-weight:800;
  font-size: 17px;
  
  color: #333;
 
}

.buton a {
 text-decoration:none;
 color:#fff;
 
 
}



.section-title {
  text-align: center;

 margin-top:20px;
  margin-bottom: 1.5rem;
font-size: 35px;
  
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
}
.section-title2 {
  text-align: center;

 margin-top:20px;
  margin-bottom: 1.5rem;
font-size: 35px;
  
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
}

/* Hot Sales Section */
.hotsales-section {
	max-width: 1200px;
	
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
 
}

.hotsales-container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  height: 400px;
}

.hotsales-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  
}

.hotsales-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotsales-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  
}

.hotsales-info h3 {
  margin: 0;
  font-size: 1.2rem;
  
}

.hotsales-info p {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: bold;
}

.hotsales-section {
  padding: 2rem 1rem;
 
}

.hotsales-container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  height: 400px;
  flex-wrap: nowrap; /* Tek satırda kal */
}

.hotsales-item {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.hotsales-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hotsales-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.hotsales-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.hotsales-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.hotsales-button {
  padding: 15px 20px;
  background-color: #fff;
  color: #444;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hotsales-button:hover {
  background-color: #111;
}

.hotsales-link:hover img {
  opacity: 1;
}

.hotsales-link:hover .hotsales-overlay {
  opacity: 1;
}





/* === Ürün Sayfası Genel Ayarları === */
.product-page {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
font-family: "Cal Sans", sans-serif;
  font-weight: 200;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.main-image {
  flex: 1 1 100%;
  max-width: 700px;
  
}

.main-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 28px;

}

.thumbnails {
  flex: 1 1 35%;

  flex-direction: column;
  gap: 1.0rem;
  justify-content: flex-start;
  border-radius:15px;
 
}

.thumbnails img {
  width: 140px;
  max-height: 140px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.7s ease;
  border-radius:15px;
}

.thumbnails img.active,
.thumbnails img:hover {
  opacity: 1;
  border: 1px solid #000;
}

/* === Fiyat ve Teklif Formu === */
.product-offer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.price-box .label {

	font-size:20px;
	  font-family: "Cal Sans", sans-serif;
	  font-weight: 100;
}

.price-box .price {
 
  color: darkgreen;
  margin-left: 0.5rem;
  
  font-size:22px;
	  font-family: "Cal Sans", sans-serif;
	  font-weight: 500;
}

.offer-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-family: "Red Hat Display", sans-serif;
  font-weight:400;
  font-size:13px;
}

.offer-form input[type="number"] {
 
  padding: 0.5rem;
  width: 150px;
    font-size:12px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:400;
  border-radius:15px;
  
}


.offer-form button {
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius:15px;
    font-size:15px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:800;
}

.offer-form button:hover {
  background: #222;
}

/* === Ürün Detayları === */
.product-details {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

.product-details h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
   font-family: "Cal Sans", sans-serif;
	  font-weight: 500;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-item {
  background: #f9f9f9;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight:600;
  
}

@media (max-width: 850px) {
  .product-gallery {
    flex-direction: column;
  }
  
  .offer-form input[type="number"] {
 
  padding: 0.5rem;
  width: 120px;
    font-size:12px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:400;
  border-radius:15px;
  
}

  
  .detail-item {
  background: #f9f9f9;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight:600;
  max-width:750px;
  
}

  .thumbnails {
    flex-direction: row;
    flex-wrap: wrap;
		 max-width: 700px;
  }

  .thumbnails img {
    max-height: 70px;
	 max-width: 70px;
    
  }

  .product-offer {
    flex-direction: column;
    align-items: flex-start;
	max-width:300px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .main-image {
  flex: 1 1 100%;
  
  
}

.main-image img {
  max-width:700px;
  height: 350px;
  object-fit: cover;
  border-radius: 18px;

}
}



















@media (max-width: 850px) {
  .about-left, .about-right {
    width: 100%;
    
  }
   .hotsales-container {
    flex-direction: column;
  }

  .hotsales-item {
    flex: none;
    width: 100%;
    height: 250px;
    max-height: 400px;
  }

  .hotsales-link img {
    height: 100%;
    object-fit: cover;
  }
  
  .about-right {
  background-color: #fff;
 height:auto;
   padding: 30px;
  
}
  .about-right h2 {
  font-size: 40px;
  line-height:45px;
  margin-bottom: 10px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 600;
  
}
.about-right p {
  font-size: 15px;
  margin-bottom: 0px;
}
  
  #countdown {
  font-size: 40px;
  font-weight: bold;
  font-family: "Cal Sans", sans-serif;
  font-weight: 300;
  margin-top:20px;
 
}
.about-left {
  background-image: url('images/upcoming-bg.jpg');
  background-size: cover;
  height:auto;

  background-position: center;
  padding: 30px;
  color: white;
  text-align: center;
}
  .about-right {
    border-left: none;
  }
  
  .about-left p {
  font-size: 15px;
  margin-bottom: 20px;
  margin-top: 20px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:500;
}

 .icon-text-container {
    
    align-items: flex-start;
  }
  
    
  .resim-photo {
	Display:none;
  max-height: 100px;

  
}

  
  
  
  
}


.gallery-section {
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  
  
}

.gallery-container {
  width: 100%;
  overflow: hidden;
  
}

.gallery-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  
}

.gallery-wrapper:active {
  cursor: grabbing;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}	

.gallery-item {
  flex: 0 0 auto;
  width: 550px;
  height: 710px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius:30px 30px 0px 0px;
 
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.art-title {
  font-size: 20px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 300;
  
}

.view-button {
  background: #fff;
  color: #111;
  padding: 12px 12px;
  text-decoration: none;
  border-radius: 25px;
  margin-top:15px;
  
 
    font-family: "Red Hat Display", sans-serif;
  font-weight:700;
  border:1px solid #333;
}

.view-button:hover {
  color: #444;
}
.gallery-item {
  position: relative;
}

.gallery-item img {
  pointer-events: none; /* Görsellere tıklanmayı engelliyoruz */
}






@media (max-width: 850px) {
.gallery-section {
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  
  
}

.gallery-container {
  width: 100%;
  overflow: hidden;
  
}

.gallery-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  
}

.gallery-wrapper:active {
  cursor: grabbing;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}	

.gallery-item {
  flex: 0 0 auto;
  width: 345px;
  height: 700px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius:30px 30px 0px 0px;
  margin-left:10px;
 
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  
}

.art-title {
  font-size: 20px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 300;
  
}

.view-button {
  background: #fff;
  color: #111;
  padding: 12px 12px;
  text-decoration: none;
  border-radius: 25px;
  margin-top:15px;
 
    font-family: "Red Hat Display", sans-serif;
  font-weight:700;
  border:1px solid #333;
}

.view-button:hover {
  color: #444;
}
.gallery-item {
  position: relative;
}

.gallery-item img {
  pointer-events: none; /* Görsellere tıklanmayı engelliyoruz */
}

/* === Ürün Detayları === */
.product-details2 {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

.product-details2 h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
   font-family: "Cal Sans", sans-serif;
	  font-weight: 500;
}

.detail-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-item2 {
  background: #f9f9f9;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight:600;
  
}
    
  }


/* === Ürün Detayları === */
.product-details2 {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

.product-details2 h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
   font-family: "Cal Sans", sans-serif;
	  font-weight: 500;
}

.detail-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-item2 {
  background: #f9f9f9;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight:600;
  
}
















/* Sadece mobilde göster */
.mobile-gallery {
  display: none;
}

@media (max-width: 850px) {
  .mobile-gallery {
    display: block;
    overflow-x: auto;
    padding: 1rem 0;
	margin-bottom:50px;
  }

  .gallery-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-scroll img {
    
    height: 200px;
    border-radius: 8px;
    flex-shrink: 0;
    scroll-snap-align: start;
    object-fit: cover;
  }
  
  .section-title2 {
 

 margin-top:10px;
  margin-bottom: 1.0rem;
font-size: 25px;
  
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
}
}















.site-footer {
  background-color: #111;
  color: #fff;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-text {
  flex: 2;
  text-align: left;
  font-size: 14px;
  color: white;
}

.footer-logo {
  flex: 1;
  text-align: right;
}

.footer-logo img {
  height: 30px;
  object-fit: contain;
}





.bio-container {
  display: flex;
  
}

/* Ortak */
.bio-section {
  flex: 1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

/* 1. Parça - gri zemin ve 3 çerçeveli foto */
.section-1 {
  background-color: #f0f0f0;
}
.section-3 {
  background-color: #f0f0f0;
  
}

.vertical-photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.framed-photo {
  position: relative;
  border: 5px solid #ccc;
  padding: 10px;
  width: 150px;
  background: #fff;
}

.framed-photo img {
  width: 100%;
  display: block;
}

.caption {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: rotate(-90deg) translateY(-250%);
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

/* 2. Parça - metin alanı */
.section-2 .text-content {
  padding: 60px;
  text-align: center;
   font-size: 14	px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:500;
  
}

.section-2 h2 {
 
  margin-bottom: 10px;
    font-size: 1.6rem;
   font-family: "Cal Sans", sans-serif;
	  font-weight: 500;
}

.section-2 p {

}

/* 3. Parça - orta fotoğraf */
.highlight-photo {
  text-align: center;
  border: 12px solid #ccc;
  padding:5px;
  background: #fff;
  
}

.highlight-photo img {
  width: 230px;
  display: block;
  margin: 0 auto;
}

.description {
  margin-top: 10px;
  max-width:125px;
  text-align: center;
   font-size: 13px;
  font-family: "Red Hat Display", sans-serif;
  font-weight:500;
}

/* 4. Parça - tam fotoğraf */
.section-4 {
  padding: 0;
}

.full-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobil */
@media (max-width: 900px) {
	

  .bio-container {
    flex-direction: column;
	width: auto;
	height: auto;
  }

  .bio-section {
    width: 100%;
    height: auto;
    padding: 40px 0;
  }

  .caption {
    position: static;
    transform: none;
    margin-top: 4px;
    display: block;
    text-align: center;
  }

  .full-photo {
    height: auto;
  }
  
  .framed-photo {
  position: relative;
  border: 5px solid #ccc;
  padding: 10px;
  width: 200px;
  background: #fff;
}
}

