/* Main CSS for Tea Subscription Service
   Date: July 2025
   Framework: Bootstrap 5
*/

:root {
  /* Main color palette - pastel high-contrast */
  --color-primary: #64bc82;    /* Tea green */
  --color-secondary: #f3a039;  /* Honey gold */
  --color-accent: #d2453a;     /* Hibiscus red */
  --color-dark: #334847;       /* Deep forest */
  --color-light: #ffffff;      /* Cream */
  
  /* Light/dark shades */
  --color-primary-light: #98cba0;
  --color-primary-dark: #40854f;
  --color-secondary-light: #eed374;
  --color-secondary-dark: #b18b29;
  --color-accent-light: #d57c65;
  --color-accent-dark: #a55b3d;
  --color-dark-light: #4f5151;
  --color-dark-dark: #292f2d;
  --color-light-dark: #f1e7d9;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-dark);
}

.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 15px;
}

/* Header/Navbar */
.navbar {
  padding: 15px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--color-dark);
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: var(--color-dark);
  font-weight: 500;
  padding: 10px 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--color-light);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--color-primary);
}

.hero-desc {
  margin-bottom: 30px;
}

.hero-img img {
  max-width: 100%;
  height: auto;
}

/* About Section */
.about {
  background-color: white;
}

.about-feature {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-feature h4 {
  margin-bottom: 15px;
}

/* Services Section */
.services {
  background-color: var(--color-light);
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-desc {
  margin-bottom: 15px;
}

.service-features {
  margin-bottom: 15px;
}

.service-features ul {
  padding-left: 20px;
}

.service-price {
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
}

/* Features Section */
.features {
  background-color: white;
}

.feature-item {
  text-align: center;
  margin-bottom: 30px;
}

.feature-item i {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.feature-title {
  margin-bottom: 15px;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--color-light);
}

.price-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-align: center;
  padding: 40px 25px;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-desc {
  margin-bottom: 25px;
}

.price-features {
  margin-bottom: 25px;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
}

.price-features ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.price-features ul li:last-child {
  border-bottom: none;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 25px;
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  border: 5px solid var(--color-light);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  margin-bottom: 5px;
}

.team-role {
  color: var(--color-primary);
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews {
  background-color: var(--color-light);
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--color-primary);
}

/* Case Studies Section */
.case-study {
  background-color: white;
}

.casestudy-item {
  margin-bottom: 30px;
  background-color: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
}

.casestudy-img {
  height: 250px;
  overflow: hidden;
}

.casestudy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casestudy-content {
  padding: 25px;
}

.casestudy-title {
  margin-bottom: 15px;
}

/* Process Section */
.process {
  background-color: var(--color-light);
}

.process-item {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-title {
  margin-bottom: 15px;
}

/* Timeline Section */
.timeline {
  background-color: white;
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
  border-left: 2px solid var(--color-primary);
}

.timeline-date {
  position: absolute;
  left: -10px;
  top: 0;
  background-color: var(--color-primary);
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.timeline-title {
  margin-bottom: 10px;
  padding-top: 10px;
}

/* Career Section */
.career {
  background-color: var(--color-light);
}

.career-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.career-title {
  margin-bottom: 10px;
}

.career-role {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Core Info Section */
.core-info {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.coreinfo-title {
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: var(--color-light);
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-right: 15px;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-item {
  background-color: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

/* FAQ Section */
.faq {
  background-color: var(--color-light);
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery {
  background-color: white;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--color-light);
  padding: 20px 0;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: white;
  padding: 60px 0 20px;
}

footer h4 {
  color: white;
  margin-bottom: 20px;
}

footer p {
  color: rgba(255,255,255,0.7);
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

#site-copyright {
  color: rgba(255,255,255,0.7);
}

/* Space page */
#space {
  min-height: 500px;
  background-color: var(--color-light);
}

/* Additional Pages */
.additional-section {
  padding: 80px 0;
}

.additional-section:nth-child(odd) {
  background-color: white;
}

.additional-section:nth-child(even) {
  background-color: var(--color-light);
} 


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
