* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Bahnschrift';
    src: url('fontssubset-Bahnschrift.woff2') format('woff2'),
        url('fontssubset-Bahnschrift.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adam';
    src: url('fontssubset-Adam-Light.woff2') format('woff2'),
        url('fontssubset-Adam-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.container {
    width: 1000px;
    background-color: #ffffff;
    padding: 0px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0px;

}

.logo img {
    display: block;
	position: relative;
    top:-20px;
}

nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    margin-right: 20px;
    position: relative;
}

nav ul::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 1.5px;
    background-color: #CCCCCC;
}

nav ul li {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 13px;
    position: relative; 
    overflow: hidden; 
    height: 1.2em; 
}

nav ul li a {
    text-decoration: none;
    color: #333333;
    display: block;
    position: relative;
    transition: transform 0.3s ease; 
}

a.bold {
	font-weight: 700;
}

nav ul li a::before {
    content: attr(data-text); 
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%; 
    color: #333333;  
    transition: bottom 0.3s ease;  
    text-align: center;  
}

nav ul li:hover a {
    transform: translateY(-100%);  
}


.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 0px;
    margin-left: 30px;
}

.text-content {
    max-width: 50%;
}

.text-content a { 
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    color: #333333;
    margin-top: 10px;
    display: block;
    position: relative;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;  
	font-family: 'Adam';
}

.text-content h1 {
	font-family: 'Adam';
    font-size: 55px;
    margin: 0;
    line-height: 1.2;
    font-weight: 300;
}

.cta::after {
    content: " →";
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;  
    right: 0;  
    bottom: 6px;
    color: #333333;
}

.cta:hover::after {
    opacity: 1;  
}

.cta:hover {
    border-bottom-color: #CCCCCC;  
    color: #333333;
}
.sofa-slider {
    position: relative;
    width: 100%;
    max-width: 650px;
    overflow: hidden;
}


footer {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #e0e0e0;
    font-family: 'Bahnschrift', sans-serif;
    font-size: 13px;
    background-color: #fcfcfc;
    width: 100%;
    box-sizing: border-box;
}


.footer-content  {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-content p {
    margin: 0;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media a {
    display: flex;
    align-items: center;  
    font-family: 'Bahnschrift', sans-serif;
    font-size: 13px;
    color: #222;
    text-decoration: none;
}

.social-media img {
    height: 20px;
    width: auto;
    display: inline-block;  
	margin-right: 5px;
}


 
.inner-page header {
    display: flex;
    justify-content: space-between;
    align-items: center;  
    padding-bottom: 0;
}

.inner-page .logo img {
    height: 80px;  
    display: block;
    margin-left: 20px;
}

.inner-page nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 60px;
    margin-right: 70px;
    align-items: center;  
}

.about-us {
    padding: 50px 20px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 930px;  
    margin: 0 auto 15px auto;  
}

.about-left h1 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 28px;
    margin-bottom: 5px;
    color: #333333;
}

.about-left p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 0;
}


.contact-left h1 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
    color: #333333;
}

.contact-left p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 13px;
    color: #333333;
    margin-bottom: 0;
}

.about-right h2 {
	font-family: 'Adam';
    font-size: 24px;
    color: #333333;
    text-align: right;
    margin-bottom: 0;
}

.separator-line {
    width: 930px;  
    height: 1px;
    background-color: #999999;  
    margin: 0 auto 40px auto;  
}

.about-content {
    display: flex;
    gap: 80px;  
    max-width: 930px;
    margin: 0 auto;
	margin-top: 50px;
}

.contact-content {
    display: flex;
    max-width: 930px;
    margin: 0 auto;
	margin-top: -10px;
}


.about-image img {
    max-width: 400px;  
    height: auto;
}

.about-text {
    max-width: 500px;
}

.about-text p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 3;
}

.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.slider-dots .dot.active {
    background-color: #222;
}

 
.fresco-page .fresco-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: -120px;
    z-index: 0;
}

.fresco-page .fresco-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;

}

.fresco-page .fresco-slider .slide.active {
    opacity: 1;
}

.fresco-page .fresco-slider .prev, .fresco-page .fresco-slider .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    color: black;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.fresco-page .fresco-slider .prev {
    left: 10px;
}

.fresco-page .fresco-slider .next {
    right: 10px;
}

.fresco-page .fresco-content {
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

.fresco-page .fresco-content h1 {
	font-family: 'Adam';
    font-size: 36px;
    color: #333;
}

.fresco-page .fresco-content p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 18px;
    color: #666;
}


.fresco-page header {
    position: relative;
    z-index: 10;  
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.fresco-page .logo img {
    display: block;
	margin-left: 0px;
}

.fresco-page nav ul::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background-color: #666666;
}

.welcoming{
    width: 60%; 
    margin-left: 30px;
	margin-top: 20px;
}

.welcoming h1 {
	font-family: 'Adam';
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
	font-weight: 400;
}

.welcoming h2 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.welcoming p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.2;
    margin-bottom: 15px;
}
 
.fresco-sofa-content {
    display: flex;
    margin: 50px 0;
}
.left-section {
    width: 60%; 
    margin-left: 30px;
}

.left-section h1 {
	font-family: 'Adam';
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
	font-weight: 400;
}

.left-section h2 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.left-section p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
    margin-bottom: 15px;
}

.right-section {
    width: 35%;  
    text-align: center;
    margin-right: 20px;
}

.right-section img {
    max-width: 220px;
    margin-bottom: 15px;
}

.download-section {
    margin-top: 20px;
}

.download-link {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    padding: 10px 20px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.download-link:hover {
    background-color: #333;
    color: #fff;
}

.accordion-header {
    padding: 10px 30px;  
    font-family: 'Bahnschrift', sans-serif;
    font-size: 15px;
    color: #333;
    border: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 950px;
	margin: 0 auto;
}

.accordion {
	border-top: 1px solid #e0e0e0;
	width:950px;
	margin:0 auto;
}

 
.accordion-header::after {
    font-family: 'Trebuchet MS';
    content: '+';  
    font-size: 30px;
    transition: transform 0.4s ease;
    transform: rotate(0deg);
}

 
.accordion-content {
    max-height: 0;
	width:950px;
    overflow: hidden;
    transition: max-height 0.8s ease;
    padding: 0 5px;  
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
	margin: 0 auto;
}

.accordion-content p {
	margin-left: 25px;
	font-size: 12px;  
    color: #666;  
	
}

 
.accordion-header.active::after {
    content: '+';  
    transform: rotate(45deg);  
    -webkit-transform: rotate(45deg);
}

.image-container {
    display: flex;
    justify-content: flex-start;  
    gap: 40px;  
    margin-left: 20px;
}

.image-container img {
	opacity: 0;  
    transform: translateY(20px);  
    transition: opacity 0.6s ease, transform 0.6s ease;  
}

.image-caption {
    margin-top: 10px;  
    font-size: 12px;  
    color: #666;  
}

 
.accordion-content[style*="max-height"] .image-container img {
    opacity: 1;  
    transform: translateY(0);  
}


.flip-container {
  perspective: 1000px;
  width: 139px;  
  height: 69px;  
  position: relative;
}

.flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-style: preserve-3d;
}

.flip-container:hover .flipper {
  transform: rotateY(180deg);
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0px;  
  overflow: hidden;

}

.back {
  transform: rotateY(180deg);
}

.hero-section2 {
  position: relative;
  background-image: url('img/hero-main2.png'); /* kendi görselinle değiştir */
  background-size: cover;
  background-position: center;
  height: 450px;
  overflow: hidden;
}

.hero-section2:hover .hero-overlay {
  background-color: rgba(0, 0, 0, 0.1); /* şeffaflık azalıyor */
}

.hero-section2:hover .discover-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-section2:hover .hero-overlay {
  background-color: rgba(0, 0, 0, 0.1); /* şeffaflık azalıyor */
}

.hero-section2:hover .discover-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-section3 {
  position: relative;
  background-image: url('img/hero-main3.png'); /* kendi görselinle değiştir */
  background-size: cover;
  background-position: center;
  height: 450px;
  overflow: hidden;
}

.hero-section3:hover .hero-overlay {
  background-color: rgba(0, 0, 0, 0.1); /* şeffaflık azalıyor */
}

.hero-section3:hover .discover-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  position: relative;
  background-image: url('img/hero-main.png'); /* kendi görselinle değiştir */
  background-size: cover;
  background-position: center;
  height: 450px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* siyah şeffaf */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  transition: background-color 0.6s ease;
}

.discover-btn {
  margin-top: 0px;
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 50px;
  background: transparent;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  text-decoration: none;
}

.hero-section:hover .hero-overlay {
  background-color: rgba(0, 0, 0, 0.1); /* şeffaflık azalıyor */
}

.hero-section:hover .discover-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-overlay h1 {
  font-size: 1rem;
  font-family: 'Adam-Light', sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-button {
    background-color: white;
    color: black;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}

.hero-button:hover {
    background-color: #e0e0e0;
}


@media (max-width: 768px) {
.container {
	width: 100%;  
	padding: 0 20px;  
	margin: 0 auto;
}

  .hero-section {
    height: 300px;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
  }

  .discover-btn {
    font-size: 12px;
    padding: 10px 24px;
  }

    nav ul {
        flex-direction: column;  
        gap: 0px;  
        align-items: flex-start;  
        margin-right: 0px;  
		position: relative;
		top: 32px;
		background-color: rgba(0, 0, 0, 0.5);  
		border-radius: 5px 0px 0px 5px;
        padding: 20px 10px 10px 10px; 
    }

    nav ul li {
        margin-bottom: 10px;  
    }
	
	nav ul li a {
	color: white;
	}
	nav ul li a::before {
		color: white;
	}


    nav ul::after {
        display: none;  
    }

.product-content {
    width: 100%; 
    margin-left: 30px;
}

.product-content h1 {
	font-family: 'Adam';
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
	font-weight: 400;
}

.product-content h2 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.product-content p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
    margin-bottom: 15px;
}
	
.left-section {
	width: 90%; 
	margin-left: 10px;
}

.right-section {
    width: 90%;  
    text-align: center;
    margin-right: 0px;
	}

.fresco-sofa-content {
    display: block;
    margin: 50px 0;
}

.download-link {
display: block;
}

.accordion {
		width: 100% !important;
}

.accordion-header {
	width: 100% !important;
}

  .accordion-content {
        width: 100% !important; 
    }
	
	
.image-container {
    display: block;
}

.image-container img {
margin-bottom: 20px;	
}

.header-section {
width: 95%;
}


.separator-line {
width: 95%;
}


.about-left h1 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
    color: #333333;
}

.about-left p {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 13px;
    color: #333333;
    margin-bottom: 0;
}

.about-right h2 {
    font-size: 18px;
}


.contact-left h1 {
    font-size: 20px;
}


.contact-left p {
    font-size: 13px;
}


.about-content {
    display: block;
}
.about-text {
margin-top: 20px;	
}

.contact-content {
width: 95%;
}

.urun-icerik {
width: 95%;
}

.urun-icerik {
	flex-direction: column; 
    max-width: 930px;
    margin: 0 auto;
	margin-top: -10px;
}

.urun-icerik img {
max-width: 100%;
height: auto;
display: block;
}

.about-image img {
    height: 195px;
}

  .fresco-slider .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .prev, .next {
    font-size: 28px;
    top: 50%;
    transform: translateY(-50%);
  }
  
 .fresco-page {
	 display: block;

 }
  
  
}


@media screen and (max-width: 393px) {

  .fresco-slider .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .prev, .next {
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
  }



}




