/* TeaBlend - Main CSS */

/* CSS Variables for Color Palette */
:root {
    --primary-color: #768b7b;
    --primary-light: #aecdae;
    --primary-dark: #507759;
    --secondary-color: #f8eac5;
    --secondary-light: #edebe4;
    --secondary-dark: #bdab87;
    --accent-color: #d7a983;
    --accent-light: #e5c1a8;
    --accent-dark: #b4a56d;
    --neutral-color: #F8F6F1;
    --neutral-light: #FDFCF9;
    --neutral-dark: #fcefd9;
    --text-color: #1d2425;
    --text-light: #57656e;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Base Typography - Conservative Sizes */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--neutral-color);
}

.navbar-brand {
    font-size: 1.54rem;
    font-weight: 600;
    color: var(--primary-color);
}

h1, .h1 {
    font-size: 2.57rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.85rem;
}

h3, .h3 {
    font-size: 1.41rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: 0.71rem;
}

h4, .h4 {
    font-size: 1.28rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.58rem;
}

h5, .h5 {
    font-size: 1.24rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.48rem;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.46rem;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transition: all 0.65s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-7px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Header Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.65s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="70" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.86rem;
    font-weight: 700;
    padding-top: 225px;
}

.hero-section h2 {
    color: var(--neutral-light);
    font-size: 1.69rem;
    font-weight: 400;
}

.hero-section p {
    color: var(--neutral-light);
    font-size: 1.12rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.65s ease;
    background-color: var(--white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 30px rgba(0, 0, 0, 0.12);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.98rem;
}

.card-text {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--neutral-light);
}

/* Team Section */
.team img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.team img:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery img {
    transition: all 0.65s ease;
    border-radius: 8px;
}

.gallery img:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--neutral-light);
}

footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.65s ease;
}

footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--neutral-dark);
    padding: 0.8rem 1rem;
    transition: all 0.65s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(122, 167, 122, 0.25);
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.65rem;
}

/* FAQ Section */
.faq .card {
    margin-bottom: 1rem;
}

.faq .card-body {
    padding: 1.2rem;
}

.faq h6 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.99rem;
}

.faq p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1.01rem;
}

/* Process Steps */
.process-step {
    padding: 1.5rem;
    text-align: center;
}

.process-step i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h5 {
    color: var(--primary-dark);
    margin-bottom: 1.71rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1.03rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    width: 20px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: var(--neutral-light);
    border-bottom: 1px solid var(--neutral-dark);
}

.breadcrumb-section img {
    max-height: 40px;
    opacity: 0.7;
}

/* Utilities */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

/* Space for future content */
#space {
    background: var(--gradient-secondary);
    min-height: 60vh;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.34rem;
    padding-top: 225px;
}
    
    .hero-section h2 {
        font-size: 1.42rem;
    }
    
    .card-img-top {
        height: 200px;
    }
    
    .team img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.87rem;
    padding-top: 225px;
}
    
    .hero-section h2 {
        font-size: 1.34rem;
    }
    
    section {
        padding: 3rem 0;
    }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
