/* Tea Tasting Room Main Styles */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
    --primary-green: #2D5016;
    --primary-green-light: #4A7C2A;
    --primary-green-dark: #1A300D;
    
    --primary-brown: #8B4513;
    --primary-brown-light: #A0522D;
    --primary-brown-dark: #654321;
    
    --primary-gold: #DAA520;
    --primary-gold-light: #F4D03F;
    --primary-gold-dark: #B8860B;
    
    --primary-sage: #87A96B;
    --primary-sage-light: #A8C788;
    --primary-sage-dark: #6B8E4E;
    
    --primary-cream: #F5F5DC;
    --primary-cream-light: #FDFDF2;
    --primary-cream-dark: #E6E6CD;
    
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --border-color: #BDC3C7;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-cream-light) 100%);
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Header & Navigation */
.navbar {
    background: linear-gradient(90deg, var(--primary-cream) 0%, var(--primary-cream-light) 100%) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.4rem !important;
    font-weight: bold;
    color: var(--primary-green-dark) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--primary-green) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-brown) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-sage-light) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../BIR_images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-section h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: var(--primary-cream-light);
    font-size: 1.1rem;
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.bg-light {
    background: linear-gradient(135deg, var(--primary-cream-light) 0%, var(--primary-cream) 100%) !important;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    background: var(--primary-cream-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--primary-cream-light);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card h5 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-brown);
    background: var(--primary-gold-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 1rem;
}

/* Features Section */
.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-cream-light);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.feature-item i {
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

/* Price Cards */
.price-card {
    background: var(--primary-cream-light);
    border: 2px solid var(--primary-sage-light);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-cream-light) 100%);
    transform: scale(1.05);
}

.price-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-brown);
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-card li:last-child {
    border-bottom: none;
}

/* Contact Form */
.form-control {
    border: 2px solid var(--primary-sage-light);
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 1rem;
    background: var(--primary-cream-light);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
    background: var(--primary-cream-light);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-brown-light) 100%);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    background: var(--primary-cream-light);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-green);
    margin-right: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-cream-dark) 0%, var(--primary-brown-dark) 100%) !important;
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

footer h5, footer h6 {
    color: var(--primary-gold-light);
    margin-bottom: 1rem;
}

footer a {
    color: var(--primary-cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-gold-light);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 0.5rem;
}

footer #site_disclaimer {
    color: var(--primary-cream-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--primary-cream-light);
    padding: 1rem 0;
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Team Section */
.team-member {
    text-align: center;
    background: var(--primary-cream-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-gold);
}

/* FAQ Section */
.faq-item {
    background: var(--primary-cream-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: var(--primary-sage-light);
    color: var(--primary-green-dark);
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-gold-light);
}

.faq-answer {
    padding: 1rem;
    background: var(--primary-cream-light);
}

/* Blog Section */
.blog-post {
    background: var(--primary-cream-light);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-gold);
}

.blog-post h4 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

.blog-post a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: bold;
}

.blog-post a:hover {
    color: var(--primary-gold-dark);
}

/* Responsive Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.py-5 { padding: 3rem 0; }
.mt-5 { margin-top: 3rem; }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--primary-cream-light);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.testimonial-card h6 {
    color: var(--primary-brown);
    font-weight: bold;
    margin-bottom: 0;
}

/* Case Study Cards */
.case-study-card {
    background: var(--primary-cream-light);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    border-top: 3px solid var(--primary-sage);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-top-color: var(--primary-gold);
    transform: translateY(-5px);
}

.case-study-card h5 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
    background: var(--primary-cream-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--primary-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-sage);
    transform: translateX(-50%);
}

.timeline-item {
    background: var(--primary-cream-light);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    width: 45%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -60px;
}

.timeline-item:nth-child(even)::before {
    left: -60px;
}

.timeline-item h5 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

/* Career Positions */
.career-position {
    background: var(--primary-cream-light);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    border-left: 4px solid var(--primary-sage);
    transition: all 0.3s ease;
}

.career-position:hover {
    border-left-color: var(--primary-gold);
    transform: translateY(-5px);
}

.career-position h5 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

.career-position span {
    background: var(--primary-gold-light);
    color: var(--primary-green-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Info Cards */
.info-card {
    background: var(--primary-cream-light);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    border-top: 3px solid var(--primary-sage);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-top-color: var(--primary-gold);
    transform: translateY(-5px);
}

.info-card h5 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

/* Collection, Seasonal, Origin Items */
.collection-item,
.seasonal-item,
.origin-item,
.brewing-method,
.accessory-item,
.knowledge-item,
.health-benefit,
.tasting-step,
.pairing-item,
.storage-tip {
    background: var(--primary-cream-light);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-sage);
    transition: all 0.3s ease;
}

.collection-item:hover,
.seasonal-item:hover,
.origin-item:hover,
.brewing-method:hover,
.accessory-item:hover,
.knowledge-item:hover,
.health-benefit:hover,
.tasting-step:hover,
.pairing-item:hover,
.storage-tip:hover {
    border-bottom-color: var(--primary-gold);
    transform: translateY(-5px);
}

.collection-item h5,
.seasonal-item h5,
.origin-item h5,
.brewing-method h5,
.accessory-item h5,
.knowledge-item h5,
.health-benefit h5,
.tasting-step h5,
.pairing-item h5,
.storage-tip h5 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

.collection-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .timeline-item::before {
        left: 10px !important;
        right: auto !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-sage);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
