/*  
Theme Name: Kopi Geopark
Theme URI: https://bimastudio.id/
Author: m0n0kur0b0
Author URI: https://bimastudio.id/
Description: Fast and responsive wp themes!
Version: 1.0
Tags: fast, responsive, green, white, flat
*/


* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
	--primary: #5C3D2E;
	--primary-light: #8B5E3C;
	--accent: #C4956A;
	--accent-light: #E8C9A0;
	--cream: #F5E6D3;
	--dark: #2C1810;
	--light: #FEFCFA;
	--text: #4A3728;
	--text-light: #8B7355;
	--green: #4A7C59;
}
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--light); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

nav { position: fixed; top: 0; width: 100%; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: all 0.3s ease; background: transparent; }
nav.scrolled { background: rgba(254, 252, 250, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.05); padding: 1rem 5%; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--light); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
nav.scrolled .logo { color: var(--primary); }
.logo svg { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--light); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; position: relative; }
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.mobile-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu span { width: 25px; height: 2px; background: var(--light); transition: 0.3s; }
nav.scrolled .mobile-menu span { background: var(--primary); }

.hero { min-height: 100vh; background: linear-gradient(135deg, rgba(44, 24, 16, 0.75), rgba(92, 61, 46, 0.7)), url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--light); position: relative; padding: 8rem 2rem 4rem; }
.hero-content { max-width: 900px; animation: fadeInUp 1s ease; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(212, 165, 116, 0.2); border: 1px solid rgba(212, 165, 116, 0.4); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.9rem; margin-bottom: 1.5rem; color: var(--accent-light); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.25rem; margin-bottom: 2.5rem; opacity: 0.9; max-width: 650px; margin-left: auto; margin-right: auto; }
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.hero-stat-label { font-size: 0.9rem; opacity: 0.8; margin-top: 0.2rem; }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; font-size: 1rem; }
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: #B8854A; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196, 149, 106, 0.3); }
.btn-outline { border: 2px solid var(--light); color: var(--light); background: transparent; }
.btn-outline:hover { background: var(--light); color: var(--dark); }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }

.about { padding: 6rem 5%; background: var(--light); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.5s; }
.about-image:hover img { transform: scale(1.05); }
.about-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--accent); border-radius: 20px; z-index: -1; }
.about-content h3 { font-size: 2rem; color: var(--dark); margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.5rem; color: var(--text); font-size: 1.05rem; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.feature-item { display: flex; align-items: start; gap: 1rem; }
.feature-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }

.process { padding: 6rem 5%; background: var(--dark); color: var(--light); }
.process h2 { color: var(--light); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.process-card { text-align: center; padding: 2rem 1.5rem; background: rgba(255,255,255,0.05); border-radius: 20px; border: 1px solid rgba(212, 165, 116, 0.15); transition: all 0.3s ease; }
.process-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); border-color: rgba(212, 165, 116, 0.3); }
.process-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--accent); opacity: 0.6; margin-bottom: 1rem; }
.process-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--accent-light); }
.process-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

.products { padding: 6rem 5%; background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.product-card { background: var(--light); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.product-image { height: 280px; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge { position: absolute; top: 1rem; right: 1rem; background: var(--green); color: white; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.product-badge.popular { background: var(--accent); color: var(--dark); }
.product-content { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.product-origin { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--green); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.product-content h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--dark); }
.product-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; flex: 1; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--cream); }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.product-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-light); }
.product-btn { padding: 0.6rem 1.2rem; background: var(--primary); color: white; border: none; border-radius: 25px; font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.9rem; }
.product-btn:hover { background: var(--dark); transform: scale(1.05); }
.product-notes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.note-tag { background: var(--cream); color: var(--text); padding: 0.25rem 0.7rem; border-radius: 15px; font-size: 0.75rem; font-weight: 500; }

.brewing-guide { padding: 6rem 5%; background: var(--light); }
.brew-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.brew-card { background: white; border-radius: 20px; padding: 2.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: all 0.3s ease; position: relative; overflow: hidden; border: 1px solid transparent; }
.brew-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--accent); }
.brew-icon { width: 70px; height: 70px; background: var(--cream); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 1.5rem; transition: all 0.3s ease; }
.brew-card:hover .brew-icon { background: var(--primary); color: white; transform: scale(1.1); }
.brew-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--dark); }
.brew-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; }
.brew-specs { display: flex; gap: 1.5rem; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--cream); }
.spec { text-align: center; }
.spec span { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.spec strong { display: block; font-size: 1.1rem; color: var(--primary); font-weight: 700; }
.brew-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.brew-tag { background: var(--cream); color: var(--text); padding: 0.3rem 0.8rem; border-radius: 15px; font-size: 0.8rem; font-weight: 500; }

.gallery { padding: 6rem 5%; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 15px; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(44, 24, 16, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 40px; height: 40px; color: var(--light); }

.testimonials { padding: 6rem 5%; background: var(--dark); color: var(--light); text-align: center; overflow: hidden; }
.testimonials h2 { color: var(--light); margin-bottom: 3rem; }
.testimonial-slider { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-item { min-width: 100%; padding: 2rem; opacity: 0; transition: opacity 0.4s ease; }
.testimonial-item.active { opacity: 1; }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); margin: 0 auto 1.5rem; }
.testimonial-stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1.25rem; font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; color: var(--cream); min-height: 100px; display: flex; align-items: center; justify-content: center; }
.testimonial-author { font-weight: 600; color: var(--accent); font-size: 1.1rem; }
.testimonial-role { color: var(--text-light); font-size: 0.9rem; margin-top: 0.3rem; }
.testimonial-nav { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.testimonial-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(212, 165, 116, 0.4); background: transparent; color: var(--accent); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.testimonial-btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); transform: scale(1.1); }
.testimonial-btn svg { width: 20px; height: 20px; }
.testimonial-dots { display: flex; gap: 0.6rem; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(212, 165, 116, 0.3); border: none; cursor: pointer; transition: all 0.3s ease; }
.testimonial-dot.active { background: var(--accent); width: 30px; border-radius: 5px; }
.testimonial-dot:hover { background: rgba(212, 165, 116, 0.6); }

.cta { padding: 5rem 5%; background: linear-gradient(135deg, var(--primary), var(--dark)); text-align: center; color: var(--light); }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--light); }
.cta p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta { padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-cta-primary { background: var(--accent); color: var(--dark); }
.btn-cta-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-cta-outline { border: 2px solid rgba(255,255,255,0.5); color: var(--light); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--light); }

/* Location Section */
.location {
    padding: 6rem 5%;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.location-details {
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.location-map {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.instagram { padding: 4rem 5%; background: var(--light); text-align: center; }
.instagram-handle { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; font-weight: 600; font-size: 1.2rem; margin-bottom: 2rem; transition: color 0.3s; }
.instagram-handle:hover { color: var(--primary-light); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; max-width: 1000px; margin: 0 auto; }
.instagram-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.instagram-item:hover img { transform: scale(1.1); }

footer { background: var(--dark); color: var(--light); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1rem; color: var(--accent); }
.footer-brand p { color: var(--text-light); line-height: 1.8; }
.footer-links h4 { color: var(--light); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--light); transition: all 0.3s; }
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: var(--text-light); font-size: 0.9rem; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

@media (max-width: 968px) {
	.about-grid { grid-template-columns: 1fr; gap: 2rem; }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.brew-grid { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.instagram-grid { grid-template-columns: repeat(3, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.features { grid-template-columns: 1fr; }
	.hero-stats { gap: 1.5rem; }
}
@media (max-width: 640px) {
	.nav-links { display: none; }
	.mobile-menu { display: flex; }
	.hero h1 { font-size: 2.2rem; }
	.process-grid { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.btn-group, .cta-buttons { flex-direction: column; align-items: center; }
	.btn, .btn-cta { width: 100%; max-width: 280px; justify-content: center; }
	.testimonial-text { font-size: 1.05rem; min-height: 80px; }
	.testimonial-btn { width: 40px; height: 40px; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }