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

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: #f5f5f5;
    overflow-x: hidden;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 2rem;
    color: #ff6f61;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6f61;
}

.burger {
    display: none;
    font-size: 1.5rem;
    color: #f5f5f5;
    cursor: pointer;
}

/* General Section Styles */
.section {
    padding: 80px 0;
}

h1, h2 {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

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

.section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.section ul li {
    margin-bottom: 10px;
}
.section-top{
    padding-top: 130px;
}
/* Footer Styles */
footer {
    background: #1a1a1a;
    padding: 40px 0;
    
}
footer .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
footer .container div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer a {
    color: #ff6f61;
    text-decoration: none;
}

/* Button Styles */
.order-button {
    background: linear-gradient(45deg, #ff6f61, #ffb88c);
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.order-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 111, 97, 0.5);
}

.cta-button {
    background: linear-gradient(45deg, #ff6f61, #ffb88c);
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 111, 97, 0.5);
}
.parallax {
            background: url('image/cup.webp') center/cover;
            height: 400px;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .parallax-content {
            position: relative;
            color: #fff;
        }

        .parallax-content h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            color: #ff6f61;
        }

        .parallax-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 20px auto;
        }
        .blend-section {
            background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
            
        }
        .blend-section .container{
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .blend-text {
            flex: 1;
        }

        .blend-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            color: #ff6f61;
        }

        .blend-text p {
            margin: 20px 0;
            line-height: 1.6;
        }

        .blend-img {
            flex: 1;
        }

        .blend-img img {
            width: 100%;
            border-radius: 10px;
        }

        .slider-section {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .slide-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 10px;
            color: #fff;
        }

        .accordion-section .accordion-item {
            margin: 20px 0;
            border-bottom: 1px solid #ff6f61;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
        }

        .accordion-content {
            display: none;
            padding: 20px;
        }

        .accordion-item.active .accordion-content {
            display: block;
        }

        .vibes-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .vibes-item {
            background: #2c2c2c;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .vibes-item img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
        }

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

        .contact-section input,
        .contact-section textarea {
            padding: 15px;
            border: 1px solid #ff6f61;
            border-radius: 5px;
            background: #2c2c2c;
            color: #f5f5f5;
        }

        .contact-section button {
            background: linear-gradient(45deg, #ff6f61, #ffb88c);
            padding: 15px;
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
        }
/* Index Page Specific Styles */
.hero {
    height: 100vh;
    max-height: 1200px;
    background: url(image/banner.webp) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero:before, .catalog:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.white{
    color: #fff;
}
.catalog{
    position: relative;
    background: url(image/Morning.jpeg) top center / cover no-repeat;
    padding: 200px 0  150px 0 ;
}
.hero-content, .catalog .container{
    position: relative;
    z-index: 5;
}
.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
}

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

/* Flavors Page Specific Styles */
.origin-section {
    background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
    
}
.origin-section .container{
    display: flex;
    align-items: center;
    gap: 40px;
}
.origin-text {
    flex: 1;
}

.origin-text h2 {
    font-size: 2.5rem;
    color: #ff6f61;
}
.origin-img {
    flex: 0 0 50%;
}
.origin-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 111, 97, 0.3);
}

.blend-quiz {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    text-align: center;
}

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

.quiz-option {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.quiz-option:hover {
    transform: scale(1.05);
}

.story-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.story-item + .story-item{
    margin-top: 60px;
}
.story-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.story-item img {
    width: 50%;
    border-radius: 10px;
}

.sustain-section {
    text-align: center;
}

.sustain-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sustain-item {
    padding: 20px;
}

.recipe-section {
    background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
}

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

.recipe-item {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
}

.culture-section {
    text-align: center;
}

.culture-text {
    max-width: 800px;
    margin: 0 auto 40px;
}
.img{
    width: 100%;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}
/* Catalog Page Specific Styles */
.intro-section {
    text-align: center;
}

.intro-section p {
    max-width: 800px;
    margin: 20px auto;
}

.featured-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.product-card {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.product-card img {
    width: 100%;
    min-height: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-card .price {
    color: #ff6f61;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.explore-section {
    background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
    
}
.explore-section .container{
    display: flex;
    align-items: center;
    gap: 40px;
}
.explore-text {
    flex: 1;
}

.explore-text h2 {
    font-size: 2.5rem;
    color: #ff6f61;
}
.explore-img{
    flex: 0 0 50%;
}
.explore-img img {
    width: 100%;
    border-radius: 10px;
}

.tabs-section {
    text-align: center;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-button {
    background: #2c2c2c;
    padding: 10px 20px;
    border: 1px solid #ff6f61;
    border-radius: 50px;
    color: #f5f5f5;
    cursor: pointer;
    transition: background 0.3s;
}

.tab-button.active {
    background: #ff6f61;
    color: #fff;
}

.tab-content {
    display: none;
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
}

.tab-content.active {
    display: block;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.taste-section {
    text-align: center;
}

.taste-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.taste-item {
    padding: 20px;
}

.taste-item i {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

.bundle-section {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

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

.bundle-item {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.bundle-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gift-section {
    background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
    text-align: center;
}

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

.gift-item {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
}

/* Communities Page Specific Styles */
.culture-section {
    background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 40px;
}

.culture-text {
    flex: 1;
}

.culture-text h2 {
    font-size: 2.5rem;
    color: #ff6f61;
}

.culture-img img {
    width: 100%;
    border-radius: 10px;
}

.event-section {
    text-align: center;
}

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

.event-item {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
}

.event-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.connect-section {
    text-align: center;
}

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

.connect-option {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.connect-option:hover {
    transform: scale(1.05);
}

.connect-option i {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

.product-section {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

.virtual-section {
    background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
    text-align: center;
}

.virtual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.virtual-item {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
}

.global-section {
    text-align: center;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.global-item i {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 20px;
}
/* Thanks Page Specific Styles */
.thanks{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.home-button {
    background: linear-gradient(45deg, #ff6f61, #ffb88c);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        flex-direction: column;
        top: 78px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #1a1a1a;
        padding: 20px;
        z-index: 999;
    }

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

    .burger {
        display: block;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .blend-section .container, .origin-section .container, .quiz-options, .story-item, .explore-section .container, .culture-section {
        flex-direction: column;
    }
    .origin-section img{
        min-height: 250px;
    }
    .story-item img {
        width: 100%;
    }

    .connect-options {
        flex-direction: column;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    h2, h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
    .logo{
        font-size: 1.6rem;
    }
    .container{
        padding: 0 10px;
    }
    .hero-content h1{
        font-size: 2.5rem;
    }
}