:root {
    --primary-color: #A0522D;
    --secondary-color: #F5F5DC; 
    --accent-color: #8B4513; 
    --text-color: #333;
    --light-text-color: #666;
    --white: #fff;
    --black: #000;
    --transition-speed: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden; 
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

h2 span {
    color: var(--primary-color);
}

/* Buton Stilleri */
.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

.button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Sosyal Medya Kenar Çubuğu */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.social-icon {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--black);
    border-radius: 50%;
    transition: transform var(--transition-speed);
    font-size: 1.2em;
}

.social-icon.instagram { background: radial-gradient at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #ee2d6c 60%, #cb0c9f 90%; }
.social-icon.whatsapp { background-color: #25D366; }


.social-icon:hover {
    transform: scale(1.1);
}


/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: padding var(--transition-speed), background-color var(--transition-speed);
}

.navbar.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 90px; 
    transition: height var(--transition-speed);
}

.navbar.sticky .logo img {
    height: 40px; 
}


.navbar .menu ul {
    display: flex;
    gap: 25px;
}

.navbar .menu ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.navbar .menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.navbar .menu ul li a:hover::after,
.navbar .menu ul li a.active::after {
    width: 100%;
}

/* Dropdown Menü */
.dropdown-parent {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); 
    list-style: none;
    padding: 10px 0; 
    min-width: 180px; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), visibility var(--transition-speed), transform var(--transition-speed);
    z-index: 101;
    border-radius: 5px;
    overflow: hidden; 
}


.dropdown-parent:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
    
}

.dropdown li a {
    padding: 10px 20px; 
    display: block; 
    white-space: nowrap; 
    transition: background-color var(--transition-speed), color var(--transition-speed);
    font-weight: 400; 
}

.dropdown li a::after {
    display: none; 
}

.dropdown li a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color); 
}


.hamburger {
    display: none; 
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all var(--transition-speed);
}

.hamburger.open .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.open .line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(60%);
    transform: scale(1.05); 
    transition: transform 0.8s ease-out;
}

.hero-section:hover .hero-background img {
     transform: scale(1); 
}


.hero-content {
    position: relative;
    z-index: 1;
    opacity: 0; 
    transform: translateY(20px); 
    animation: fadeInHero 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-content .cta-button {
    
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    display: inline-block; 
    z-index: 2; 
}

.hero-content .cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}


section {
    padding: 60px 0;
    opacity: 0; 
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.is-visible {
     opacity: 1;
     transform: translateY(0);
}


/* İçerik/Ürünler Section */
.content-section h2,
.about-section h2,
.gallery-section h2,
.reviews-section h2 {
    margin-bottom: 40px;
}


.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-cards .card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.product-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-cards .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.product-cards .card:hover img {
    transform: scale(1.05);
}


.product-cards .card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-cards .card p {
    padding: 0 15px;
    color: var(--light-text-color);
    font-size: 0.95em;
}


/* Hakkımızda Section */
.about-section {
    background-color: var(--secondary-color);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; 
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1.5;
    min-width: 300px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--light-text-color);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::before {
    opacity: 1;
}


/* Müşteri Yorumları */
.reviews-section {
    background-color: var(--white);
}

.reviews-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: thin; 
    scrollbar-color: var(--primary-color) var(--secondary-color); 
}


.reviews-container::-webkit-scrollbar {
  height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
  background: var(--secondary-color);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}


.review-card {
    flex: 0 0 300px; 
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 30px; 
    min-height: 200px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card .fa-quote-left {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2em;
    color: rgba(160, 82, 45, 0.3);
}


.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
    flex-grow: 1; 
}

.review-author {
    font-weight: 600;
    text-align: right;
    display: block;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative; 
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2em;
    text-align: left;
}

.footer-section p, .footer-section ul li {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
     color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5em;
    color: var(--white);
    transition: color var(--transition-speed);
}

.footer-social a:hover {
    color: var(--secondary-color);
}
/*--------------------------------------------------------------------------------------------*/

.footer-bottom .firmam {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;

   
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.4) 0%,     
        #ffffff 10%,                      
        rgba(255, 255, 255, 0.4) 20%,    
        #00ccff 30%,                     
        rgba(255, 255, 255, 0.4) 40%,    
        #ffffff 50%,                      
        rgba(255, 255, 255, 0.4) 60%,     
        #00ccff 70%,                      
        rgba(255, 255, 255, 0.4) 80%,     
        #ffffff 90%,                      
        rgba(255, 255, 255, 0.4) 100%     
    );
    background-size: 200% auto;
    background-position: 0% 50%;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent; 

   
    opacity: 0;
    transform: translateY(20px);
    text-shadow: none;
}


.footer-bottom .firmam.is-visible {
    opacity: 1; 
    transform: translateY(0); 

    animation: gradient-wave 8s linear infinite;
    text-shadow: none; 
}


.footer-bottom .firmam a {
    font-weight: 600;
   
    color: inherit;
    text-decoration: none; 
    
}


.footer-bottom .firmam a:hover {
   
    color: var(--secondary-color, #f5f5dc); 
    -webkit-background-clip: initial; 
    background-clip: initial;
    text-decoration: underline; 
    text-shadow: none; 
    transition: color 0.3s ease, background-clip 0s, -webkit-background-clip 0s;
}


@keyframes gradient-wave {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%; 
    }
}


@media (prefers-reduced-motion: reduce) {
  .footer-bottom .firmam.is-visible {
    animation: none !important;
    background-position: 0% 50% !important; 
     color: rgba(255, 255, 255, 0.9) !important; 
     background-image: none !important; 
     -webkit-background-clip: initial !important; 
     background-clip: initial !important;
     text-shadow: none !important; 
  }

   .footer-bottom .firmam a:hover {
        text-decoration: underline;
        color: var(--secondary-color, #f5f5dc) !important; 
         background-image: none !important;
         -webkit-background-clip: initial !important;
         background-clip: initial !important;
         text-shadow: none !important;
   }
}
/*--------------------------------------------------------------------------------------------*/
/* Responsive Tasarım */
@media (max-width: 768px) {
    
    .navbar .menu ul {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        transition: all var(--transition-speed);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }

    .navbar .menu ul.active {
        display: flex; 
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .menu ul li {
        text-align: center;
        margin: 5px 0;
    }

    .navbar .menu ul li a {
        padding: 10px;
        display: block;
    }

    .hamburger {
        display: flex; 
    }

    .navbar .container {
        padding: 0 20px; 
    }
    
     .hero-title {
        font-size: 2.5em;
    }

    .hero-description {
        font-size: 1em;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-image {
        min-width: unset; 
    }
    
    .footer .container {
        grid-template-columns: 1fr; 
        text-align: center;
    }

     .footer-section h4 {
         text-align: center;
     }

     .footer-section ul li {
         text-align: center;
     }
     
     .footer-social {
         text-align: center;
         margin-top: 15px;
     }
     .footer-social a {
         margin: 0 10px; 
     }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }

    .hero-description {
        font-size: 0.9em;
    }

    .product-cards .card {
        flex: 0 0 100%; 
    }

    .reviews-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .review-card {
        flex: 0 0 80%; 
    }
}

/* Yeni Bölümler Stilleri */
.section-page-links {
    padding: 60px 0;
    background-color: var(--white); 
    opacity: 0; 
}


.section-page-links.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.section-page-links h2 {
    margin-bottom: 40px;
}

.page-link-block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap; 
    background-color: var(--secondary-color); 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.page-link-block:last-child {
    margin-bottom: 0; 
}

.page-link-block:hover {
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.page-link-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    max-width: 500px;
    width: 100%; 
    box-sizing: border-box;
}


.page-link-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    display: block;
}

.page-link-block:hover .page-link-image img {
    transform: scale(1.02); 
}


.page-link-content {
    flex: 1.5; 
    min-width: 280px; 
}

.page-link-content h3 {
    text-align: left; 
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-link-content p {
    margin-bottom: 20px;
    color: var(--light-text-color);
}


.page-link-block.reverse {
    flex-direction: row-reverse; 
}


/* Responsive Düzenleme */
@media (max-width: 768px) {
    .page-link-block {
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
        padding: 20px;
    }

    .page-link-block.reverse {
        flex-direction: column; 
    }

    .page-link-content h3 {
        text-align: center; 
    }

     .page-link-image {
         min-width: unset; 
     }
     .page-link-content {
         min-width: unset; 
     }

      .page-link-image img {
         height: 200px; 
      }
}

@media (max-width: 480px) {
     .page-link-block {
        padding: 15px;
     }
      .page-link-image img {
         height: 150px; 
      }
}