/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.0/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css');

/* Color Palette - 5 Primary Colors + Shades */
:root {
    /* Primary Colors */
    --coffee-brown: #8B4513;
    --forest-green: #228B22;
    --cream-white: #F5F5DC;
    --earth-orange: #CD853F;
    --charcoal-gray: #36454F;
    
    /* Light Shades */
    --coffee-brown-light: #A0522D;
    --forest-green-light: #32CD32;
    --cream-white-light: #FFFEF7;
    --earth-orange-light: #DEB887;
    --charcoal-gray-light: #708090;
    
    /* Dark Shades */
    --coffee-brown-dark: #654321;
    --forest-green-dark: #006400;
    --cream-white-dark: #F0E68C;
    --earth-orange-dark: #8B7355;
    --charcoal-gray-dark: #2F4F4F;
    
    /* Conservative Typography */
    --root-font-size: 16px;
    --navbar-brand-size: 1.25rem;
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.5rem;
    --p-size: 1rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    font-size: var(--root-font-size);
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal-gray);
    background-color: var(--cream-white-light);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography - Conservative Sizes */
.navbar-brand {
    font-size: var(--navbar-brand-size) !important;
    font-weight: 600;
    color: var(--coffee-brown) !important;
}

h1 {
    font-size: var(--h1-size);
    font-weight: 600;
    color: var(--coffee-brown-dark);
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 500;
    color: var(--forest-green-dark);
    margin-bottom: 0.875rem;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 500;
    color: var(--earth-orange-dark);
    margin-bottom: 0.75rem;
}

p {
    font-size: var(--p-size);
    margin-bottom: 1rem;
    color: var(--charcoal-gray);
}

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-brown-dark) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    color: var(--cream-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--earth-orange-light) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 50%, var(--coffee-brown) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-coffee-beans.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--cream-white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Decorative Shapes */
.decorative-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--earth-orange), var(--earth-orange-light));
    opacity: 0.1;
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.blob-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--earth-orange);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
    background: var(--cream-white);
}

.feature-card {
    background: var(--cream-white-light);
    border: 1px solid var(--earth-orange-light);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--forest-green-light) 0%, var(--forest-green) 100%);
    color: var(--cream-white);
}

.service-card {
    background: var(--cream-white);
    color: var(--charcoal-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--coffee-brown);
    margin: 1rem 0;
}

/* Team Section */
.team-section {
    background: var(--cream-white-dark);
}

.team-member {
    text-align: center;
    background: var(--cream-white-light);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--earth-orange);
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--coffee-brown-light) 0%, var(--coffee-brown) 100%);
    color: var(--cream-white);
}

.review-card {
    background: var(--cream-white);
    color: var(--charcoal-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
}

.review-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--earth-orange-light);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

/* Blog Section */
.blog-section {
    background: var(--cream-white);
}

.blog-card {
    background: var(--cream-white-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    color: var(--coffee-brown-dark);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--charcoal-gray);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: var(--earth-orange-light);
}

.faq-item {
    background: var(--cream-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: var(--forest-green);
    color: var(--cream-white);
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--forest-green-dark);
}

.faq-answer {
    padding: 1.5rem;
    background: var(--cream-white);
    color: var(--charcoal-gray);
}

/* Gallery Section */
.gallery-section {
    background: var(--charcoal-gray-light);
    padding: 3rem 0;
}

.gallery-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--charcoal-gray) 0%, var(--charcoal-gray-dark) 100%);
    color: var(--cream-white);
}

.contact-form {
    background: var(--cream-white);
    color: var(--charcoal-gray);
    border-radius: 15px;
    padding: 2rem;
}

.form-control {
    border: 2px solid var(--earth-orange-light);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: #32CD32;
    color: var(--cream-white);
    padding: 3rem 0 1rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--earth-orange);
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--cream-white-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--earth-orange-light);
}

/* Swiper Styles */
.swiper-pagination-bullet {
    background: var(--earth-orange);
}

.swiper-pagination-bullet-active {
    background: var(--forest-green);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--coffee-brown);
}

/* Breadcrumbs */
.breadcrumb-container {
    background: var(--cream-white-dark);
    padding: 1rem 0;
}

.breadcrumb-image {
    width: 30px;
    height: 20px;
    object-fit: cover;
}

/* Utility Classes */
.text-coffee { color: var(--coffee-brown); }
.text-forest { color: var(--forest-green); }
.text-earth { color: var(--earth-orange); }
.bg-coffee { background-color: var(--coffee-brown); }
.bg-forest { background-color: var(--forest-green); }
.bg-earth { background-color: var(--earth-orange); }

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
