@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/Inter_24pt-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Inter";
    src: url("fonts/Inter/Inter_24pt-Bold.ttf") ;
    font-weight: bold;
    font-style: normal;
  }

  @font-face {
    font-family: "Playfair Display";
    src: url("fonts/Playfair_Display/PlayfairDisplay-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

ul li, ol li{
    list-style: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

body.no-scroll{
overflow: hidden;
}
a{
    color: inherit;
    text-decoration: none;
}
img{
    max-width: 100%;
    object-fit: cover;
}
button{
    border: none;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    background: linear-gradient(135deg, #4a4e69, #6b7280);
    color: white;
    padding: 20px 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f4d03f;
}

.burger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}



/* Hero Section */
.hero {
    height: 100vh;
    max-height: 1200px;
    background: url('image/banner.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-catalog{
    background: url(image//innovation.jpeg) center/cover no-repeat;
    height: 80vh;
}
.hero-catalog::before{
background: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    background: #f4d03f;
    color: #4a4e69;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2, h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 10px;
}
.img{
    margin-top: 20px;
    border-radius: 10px;
}
/* About Section */
.about {
    text-align: center;
    background: linear-gradient(45deg, #e9ecef, #ced4da);
    color: #333;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.about img{
    max-width: 600px;
}

/* Products and Catalog Sections */
.products, .catalog {
    text-align: center;
    background: #fff;
}

.products-grid, .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card, .catalog-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover, .catalog-item:hover {
    transform: translateY(-10px);
}

.product-card img, .catalog-item img {
    border-radius: 10px;
    width: 100%;
    max-width: 250px;
}

.catalog-item .price {
    color: #4a4e69;
    font-weight: bold;
    margin-bottom: 15px;
}
.inspiration .container, .tips .container{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-card{
    background: #6b7280;
    color: #fff;
}

.inspiration img, .tips img{
    max-width: 600px;
}
/* Features and Tracking Sections */
.features, .values, .ergonomics-guide {
    background: url('image/Estetik.jpeg') center/cover no-repeat;
    color: white;
    position: relative;
    text-align: center;
}

.features::before,  .values::before, .ergonomics-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.features-content, .tracking-content, .values-content, .ergonomics-content {
    position: relative;
    z-index: 1;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 30px auto;
}

.accordion-item {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 15px;
    cursor: pointer;
    background: #4a4e69;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #f8f9fa;
    color: #333;
}

.accordion-item.active .accordion-content {
    display: block;
}
.testimonials{
    text-align: center;
}

.mission-card{
    display: flex;
    flex-direction: column;
}

.mission-card img{
    margin-top: auto;
}
/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Customization, Trending, Mission, Values, Pricing, Regions, Team, Testimonials */
.customization, .trending, .mission, .values, .pricing, .regions, .team, .testimonials {
    text-align: center;
}

.customization-grid, .trending-grid, .mission-grid, .values-grid, .pricing-grid, .regions-grid, .team-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Filter Section */
.filter {
    background: #e9ecef;
    text-align: center;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-options select, .filter-options input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #6b7280;
    font-size: 1rem;
}

/* Process Section */
.process, .sustainability {
    text-align: center;
}

.sustainability img{
    max-width: 50%;
}

.process-timeline {
    margin-top: 30px;
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #4a4e69;
    transform: translateX(-50%);
}

.process-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    position: relative;
}

.process-item:nth-child(odd) {
    justify-content: flex-end;
}

.process-item:nth-child(even) {
    justify-content: flex-start;
}

.process-content {
    width: 45%;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sustainability-content, .story-content, .overview-content, .ergonomics-guide .content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #4a4e69, #6b7280);
    color: white;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.contact textarea {
    resize: vertical;
}

.contact .btn {
    background: #f4d03f;
    color: #4a4e69;
}

/* Thanks Page */
.thanks {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}
.section-top{
   padding-top: 120px;
}
.faq{
    text-align: center;
}
/* Footer */
footer {
    background: #2d2d44;
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-content h3 , .footer-logo{
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #fff !important;
    display: inline-block;
}

.footer-content a {
    color: #f4d03f;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-content div{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tracking {
            position: relative;
            text-align: center;
        }

        

        .tracking-content {
            position: relative;
            z-index: 1;
        }

        .tracking-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .overview {
            background: linear-gradient(45deg, #e9ecef, #ced4da);
            text-align: center;
        }

        .overview-content {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-top: 30px;
        }

        .overview-content img{
            width: 50%;
        }

         .story{
        text-align: center;
    }
     .story img{
        max-width: 50%;
    }
/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #4a4e69;
        flex-direction: column;
        padding: 20px;
    }

    nav ul.active {
        display: flex;
        gap: 20px;
    }

    .burger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

   .container{
    padding: 0 10px;
   }

    .story-content, .sustainability-content, .overview-content, .ergonomics-guide .content {
        flex-direction: column;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-item {
        justify-content: flex-start !important;
    }

    .process-content {
        width: 80%;
    }
    .overview-content img{
        width: 100%;
    }

    .inspiration img, .tips img, .sustainability img, .story img, .about img{
        max-width: 100%;
    }

  
}