@import url('https://fonts.googleapis.com/css?family=Abel|Aguafina+Script|Artifika|Athiti|Condiment|Dosis|Droid+Serif|Farsan|Gurajada|Josefin+Sans|Lato|Lora|Merriweather|Noto+Serif|Open+Sans+Condensed:300|Playfair+Display|Rasa|Sahitya|Share+Tech|Text+Me+One|Titillium+Web');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F6F3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4F200D;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    /* background-color: #4F200D; */
    /* background-color: #572D17; */
    /* background-color: #A6B28B; */
    background-color: #f4dfaa;
    color: #FFD93D;
    padding: 1.4rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 1rem;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    color:#002637;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #F35F23;
}

header .logo {
    font-weight: bold;
    transition: font-size 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

header .logo img {
    max-height: 60px;
    width: auto;
    transition: max-height 0.3s ease;
}

header.scrolled .logo img {
    max-height: 50px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #4F200D;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f4dfaa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 300px;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 2rem;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    color: #4F200D;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #F35F23;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 3em auto;
}
.hero {
    max-width: 80%;
    width: 100%;
    margin: 2.5em auto 0;
    padding: 3rem 2rem;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(255, 217, 61, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(87, 45, 23, 0.25), transparent 55%),
    #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    color: #004C71;
    margin-bottom: 0.6rem;
}

.hero-content p {
    max-width: 640px;
    margin: 0 auto 1.8rem;
    font-size: 1.05rem;
    /* color: #F35F23; */
    color: #000;
}

.hero-cta {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    /* background-color: #f4dfaa; */
    background-color: #F35F23;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.hero-cta:hover {
    background-color: #ed784a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.instagram-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4F200D;
    margin-right: 1rem;
}
.hizmetler-section {
    margin: auto;
    max-width: 88%;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: radial-gradient(circle at top left, rgba(255, 217, 61, 0.2), transparent 55%),
                radial-gradient(circle at bottom right, rgba(87, 45, 23, 0.15), transparent 55%),
                #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(79, 32, 13, 0.2);
}

.hizmetler-baslik {
    color: #004C71;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.hizmetler-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hizmet-item {
    /*background-color: #fff;*/
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    /*box-shadow: 0 4px 15px rgba(79, 32, 13, 0.2);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.hizmet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(79, 32, 13, 0.3);
}

.hizmet-video {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-video {
    width: 400px;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hizmet-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.hizmet-text h4 {
    color: #004C71;
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.hizmet-text p {
    color: #4F200D;
    font-size: 0.9rem;
    line-height: 1.8;
}
.sosyal-medya {
    display: flex;
    align-items: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #E4405F;
    background-color: transparent;
    color: #E4405F;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.instagram-link i {
    font-size: 1.1rem;
}

.arrow-effect {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.25s ease;
}

.instagram-link:hover {
    background-color: #E4405F;
    color: #fff;
    transform: translateY(-1px);
}

.instagram-link:hover .arrow-effect {
    transform: translateX(6px);
}
.video-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content video {
    width: 100%;
    max-width: 500px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hakkimizda-section {
    margin: auto;
    max-width: 88%;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: radial-gradient(circle at top left, rgba(255, 217, 61, 0.2), transparent 55%),
                radial-gradient(circle at bottom right, rgba(87, 45, 23, 0.15), transparent 55%),
                #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(79, 32, 13, 0.2);
}

.hakkimizda-baslik {
    color: #004C71;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.4rem;
    font-weight: bold;
}

.hakkimizda-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hakkimizda-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hakkimizda-text {
    text-align: center;
}

.hakkimizda-text h4 {
    color: #004C71;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hakkimizda-text p {
    color: #4F200D;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hakkimizda-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hakkimizda-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f4dfaa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hakkimizda-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(79, 32, 13, 0.3);
}

.hakkimizda-feature i {
    font-size: 3rem;
    color: #004C71;
    margin-bottom: 1.5rem;
}

.hakkimizda-feature h4 {
    color: #004C71;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hakkimizda-feature p {
    color: #4F200D;
    font-size: 1rem;
    line-height: 1.6;
}

.iletisim-section {
    margin: auto;
    max-width: 88%;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(79, 32, 13, 0.2);
}

.iletisim-baslik {
    color: #004C71;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: bold;
}

.iletisim-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.iletisim-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f4dfaa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iletisim-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(79, 32, 13, 0.3);
}

.iletisim-item i {
    font-size: 3rem;
    color: #004C71;
    margin-bottom: 1.5rem;
}

.iletisim-bilgi h3 {
    color: #004C71;
    /* color: #F35F23; */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.iletisim-bilgi p {

    color: #4F200D;
    font-size: 1rem;
    line-height: 1.6;
}

.iletisim-bilgi a {
    font-size: 1rem;
    line-height: 1.6;
    color: #4F200D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.iletisim-bilgi a:hover {
    color: #4F200D;
    text-decoration: underline;
}

footer {
    background-color: #f4dfaa;
    color: #002637;
    padding: 1.5rem;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
footer a {
    text-decoration: none;
    color:#002637 ;
}
.back-to-top {
    position: fixed;
    right: 1.8rem;
    bottom: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* background-color: #f4dfaa; */
    /* background-color: #004A6D; */
    background-color: #F35F23;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    z-index: 999;
}

.back-to-top i {
    font-size: 1.1rem;
}

.back-to-top:hover {
    background-color: #e78158;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

footer p {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .content-item {
        max-width: 88%;
    }
    
    .header-nav {
        padding: 0 1rem;
        justify-content: space-between;
        position: relative;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 1rem;
        width: 25px;
    }
    
    .mobile-menu {
        display: block;
    }
    
    header .logo {
        font-size: 1rem;
        flex: 1;
        display: flex;
        justify-content: center;
        margin: 0;
    }
    
    .nav-menu-left,
    .nav-menu-right {
        width: 25px;
    }

    header.scrolled .logo {
        font-size: 1rem;
    }
    
    header.scrolled .logo img {
        /* max-height: 35px; */
    }

    header h1 {
        font-size: 1.8rem;
    }

    main {
        padding: 1rem;
    }

    .hizmetler-section {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }

    .hizmetler-baslik {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hizmet-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .hizmet-video {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .instagram-video {
        width: 380px;
        height: 400px;
    }

    .hizmet-text {
        order: 2;
        width: 100%;
    }

    .hizmet-text h3 {
        font-size: 1.5rem;
    }

    .hizmet-text p {
        font-size: 1rem;
    }
    
    .hakkimizda-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .hakkimizda-baslik {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .hakkimizda-text h3 {
        font-size: 1.5rem;
    }
    
    .hakkimizda-text p {
        font-size: 1rem;
    }
    
    .hakkimizda-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hakkimizda-feature {
        padding: 1.5rem;
    }
    
    .hakkimizda-feature i {
        font-size: 2.5rem;
    }
    
    .hakkimizda-feature h4 {
        font-size: 1.2rem;
    }
    
    .wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.2rem;
    }

    header.scrolled {
        /* padding: 0.75rem; */
    }

    header .logo {
        /* font-size: 1.5rem; */
    }

    header.scrolled .logo {
        /* font-size: 0.9rem; */
    }

    header h1 {
        /* font-size: 1.5rem; */
    }
    .hero-cta {
        padding: 0.75rem 1.5rem;
    }
    .hizmetler-section {
        padding: 1.5rem 1rem;
    }

    .hizmetler-baslik {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hizmet-item {
        padding: 1rem;
        gap: 1.5rem;
    }

    .instagram-video {
        max-width: 260px;
        height: 330px;
        box-shadow: none;
        border-radius: 6px;
    }
    .hizmet-text h4 {
        color: #004C71;
        /* margin-bottom: 0.2rem; */
        font-size: 1.1rem;
        font-weight: bold;
    }
    .hizmet-text h3 {
        font-size: 1.3rem;
    }

    .hizmet-text p {
        font-size: 0.95rem;
    }

    .iletisim-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .iletisim-baslik {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .iletisim-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .iletisim-item {
        padding: 1.5rem;
    }

    .iletisim-item i {
        font-size: 2.5rem;
    }

    .iletisim-bilgi h3 {
        font-size: 1.3rem;
    }

    .iletisim-bilgi p {
        font-size: 1rem;
    }
    
    .hakkimizda-section {
        padding: 1.5rem 1rem;
    }
    
    .hakkimizda-baslik {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hakkimizda-text h3 {
        font-size: 1.3rem;
    }
    
    .hakkimizda-text p {
        font-size: 0.95rem;
    }
    
    .hakkimizda-feature {
        padding: 1.25rem;
    }
    
    .hakkimizda-feature i {
        font-size: 2rem;
    }
    
    .hakkimizda-feature h4 {
        font-size: 1.1rem;
    }
    
    .hakkimizda-feature p {
        font-size: 0.9rem;
    }
}

#container{
	box-shadow: 0 15px 30px 1px rgba(128, 128, 128, 0.31);
	background: rgba(255, 255, 255, 0.90);
	text-align: center;
	border-radius: 5px;
	overflow: hidden;
	margin: 5em auto;
	height: 350px;
	width: 700px;
	
}

.product-details {
	position: relative;
	text-align: left;
	overflow: hidden;
	padding: 30px;
	height: 100%;
	float: left;
	width: 40%;

}

#container .product-details h1{
	font-family: 'Old Standard TT', serif;
	display: inline-block;
	position: relative;
	font-size: 34px;
	color: #00496F;
	margin: 0;
	
}

#container .product-details h1:before{
	position: absolute;
	content: '';
	right: 0%; 
	top: 0%;
	transform: translate(25px, -15px);
	font-family: 'Farsan', cursive;
	display: inline-block;
	background: #FFA69E;
	border-radius: 5px;
	font-size: 14px;
	padding: 5px;
	color: #FFF;
	margin: 0;
	animation: chan-sh 6s ease infinite;

}


@keyframes chan-sh {
	from  {content: 'free shipping';}
	to  {content: 'New';}
	
}

.hint-star {
	display: inline-block;
	margin-left: 0.5em;
	color: gold;
	width: 50%;
}


#container .product-details > p {
	font-family: 'Farsan', cursive;
	text-align: center;
	font-size: 20px;
	color: #00496F;
	
}

.control{
	position: absolute;
	bottom: 20%;
	left: 22.8%;
	
}
.btn {
	transform: translateY(0px);
	transition: 0.3s linear;
	background: #49C608;
	border-radius: 5px;
    position: relative;
    overflow: hidden;
	cursor: pointer;
	outline: none;
	border: none;
	color: #00496F;
	padding: 0;
	margin: 0;
}

.btn:hover{transform: translateY(-4px);}

.btn span {
	font-family: 'Farsan', cursive;
	transition: transform 0.3s;
	display: inline-block;
  padding: 10px 20px;
	font-size: 1.2em;
	margin:0;
	
}
.btn .price, .shopping-cart{
	background: #333;
	border: 0;
	margin: 0;
}

.btn .price {
	transform: translateX(-10%); padding-right: 15px;
}

.btn .shopping-cart {
	transform: translateX(-100%);
  position: absolute;
	background: #333;
	z-index: 1;
  left: 0;
  top: 0;
}

.btn .buy {z-index: 3; font-weight: bolder;}

.btn:hover .price {transform: translateX(-110%);}

.btn:hover .shopping-cart {transform: translateX(0%);}

.wrapper {
  height: 420px;
  width: 654px;
  margin: 50px auto;
  border-radius: 7px 7px 7px 7px;
  -webkit-box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.15);
}

.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    height: 420px;
}

.product-img img {
  border-radius: 7px 0 0 7px;
}

.product-info {
  float: left;
  height: 420px;
  width: 327px;
  border-radius: 0 7px 10px 7px;
  background-color: #00496F;
}

.product-text {
  height: 300px;
  width: 327px;
}

.product-text h1 {
  margin: 0 0 0 38px;
  padding-top: 52px;
  font-size: 34px;
  color: #474747;
}

.product-text h1,
.product-price-btn p {
  font-family: 'Bentham', serif;
}

.product-text h2 {
  margin: 0 0 47px 38px;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #d2d2d2;
  letter-spacing: 0.2em;
}

.product-text p {
  height: 125px;
  margin: 0 0 0 38px;
  font-family: 'Playfair Display', serif;
  color: #8d8d8d;
  line-height: 1.7em;
  font-size: 15px;
  font-weight: lighter;
  overflow: hidden;
}

.product-price-btn {
  height: 103px;
  width: 327px;
  margin-top: 17px;
  position: relative;
}

.product-price-btn p {
  display: inline-block;
  position: absolute;
  top: -13px;
  height: 50px;
  font-family: 'Trocchi', serif;
  margin: 0 0 0 38px;
  font-size: 28px;
  font-weight: lighter;
  color: #474747;
}

span {
  display: inline-block;
  height: 50px;
  font-family: 'Suranna', serif;
  font-size: 34px;
}

.product-price-btn button {
  float: right;
  display: inline-block;
  height: 50px;
  width: 176px;
  margin: 0 40px 0 16px;
  box-sizing: border-box;
  border: transparent;
  border-radius: 60px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  background-color: #9cebd5;
  cursor: pointer;
  outline: none;
}

.product-price-btn button:hover {
  background-color: #79b0a1;
}

.sosyal-medya ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sosyal-medya ul li {
    display: inline-block;
    margin-right: 1rem;
}
.sosyal-medya ul li a {
    display: inline-block;
    color: #8f7272;
    transition: transform 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}
