/* Custom Tailwind Configuration */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Light theme colors */
  --background: 220 20% 98%;
  --foreground: 220 9% 9%;
  --card: 0 0% 100%;
  --card-foreground: 220 9% 9%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 9% 9%;
  --primary: 220 70% 25%;
  --primary-foreground: 210 40% 98%;
  --primary-light: 220 70% 35%;
  --primary-dark: 220 80% 15%;
  --secondary: 220 14% 96%;
  --secondary-foreground: 220 9% 46%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  --accent: 45 93% 47%;
  --accent-foreground: 26 83% 14%;
  --accent-light: 45 93% 57%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 220 70% 25%;
  --success: 142 76% 36%;
  --success-foreground: 210 40% 98%;
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --footer-color:#058d3b;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* Sidebar colors */
  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5.3% 26.1%;
  --sidebar-primary: 240 5.9% 10%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 240 4.8% 95.9%;
  --sidebar-accent-foreground: 240 5.9% 10%;
  --sidebar-border: 220 13% 91%;
  --sidebar-ring: 217.2 91.2% 59.8%;

  /* Custom gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  --gradient-hero: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-light)));
  --gradient-subtle: linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.3));
  --gradient-mesh: radial-gradient(circle at 25% 25%, hsl(var(--primary) / 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, hsl(var(--accent) / 0.1) 0%, transparent 50%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsl(var(--primary) / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(var(--primary) / 0.1), 0 2px 4px -2px hsl(var(--primary) / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(var(--primary) / 0.1), 0 4px 6px -4px hsl(var(--primary) / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(var(--primary) / 0.1), 0 8px 10px -6px hsl(var(--primary) / 0.1);
  --shadow-2xl: 0 25px 50px -12px hsl(var(--primary) / 0.25);
  --shadow-glow: 0 0 20px hsl(var(--primary) / 0.3);

  /* Blur effects */
  --blur-sm: 4px;
  --blur-md: 8px;
  --blur-lg: 16px;
  --blur-xl: 24px;
  --blur-2xl: 40px;
  

  /* Radius */
  --radius: 0.5rem;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.dark {
  --background: 220 13% 9%;
  --foreground: 220 40% 98%;
  --card: 220 13% 9%;
  --card-foreground: 220 40% 98%;
  --popover: 220 13% 9%;
  --popover-foreground: 220 40% 98%;
  --primary: 220 70% 50%;
  --primary-foreground: 220 13% 9%;
  --primary-light: 220 70% 60%;
  --primary-dark: 220 80% 40%;
  --secondary: 220 13% 15%;
  --secondary-foreground: 220 40% 98%;
  --muted: 220 13% 15%;
  --muted-foreground: 220 40% 70%;
  --accent: 45 93% 47%;
  --accent-foreground: 220 13% 9%;
  --accent-light: 45 93% 57%;
  --border: 220 13% 18%;
  --input: 220 13% 18%;
  --ring: 220 70% 50%;

  --sidebar-background: 220 13% 9%;
  --sidebar-foreground: 220 40% 98%;
  --sidebar-primary: 220 40% 98%;
  --sidebar-primary-foreground: 220 13% 9%;
  --sidebar-accent: 220 13% 15%;
  --sidebar-accent-foreground: 220 40% 98%;
  --sidebar-border: 220 13% 18%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}

* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.logo h1 {
  color: #058d3b;
}

.logo {
  margin-left: 5px;
}

.logo p {
  color: #058d3b;
  font-weight: bold;
}

.top-nav {
  justify-content: space-between;
  margin-left: 250px;
}

.top-nav a {
  color: #058d3b;
}

.logo-text {
  display: flex;

}
/* Tailwind utilities override */
.bg-background {
  background-color: hsl(var(--background));
}


.bg-primary {
  background-color: var(--footer-color);
}

.bg-primary-foreground {
  background-color: hsl(var(--primary-foreground));
}



.bg-accent {
  background-color: hsl(var(--accent));
}


.bg-muted {
  background-color: hsl(var(--muted));
}

.bg-muted-foreground {
  background-color: hsl(var(--muted-foreground));
}



.text-foreground {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}



.border-border {
  border-color: hsl(var(--border));
}

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


#about-eatta {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 50vh;
  color: white;

  background-size: cover;

  background-image: linear-gradient(rgba(22, 22, 22, 1.5), rgba(22, 22, 22, 0.0)), url(../images/Orthodox\ meeting.jpg);
}

/* counter start */


.counter-wrapper {
  border: 1px solid transparent;
  background-color: #03A9F4;
  width: 85vw;
  position: relative;
  display: flex;
  margin: 0 auto;
  margin-top: 50px;



}

.counter-container {
  width: 28vmin;
  height: 28vmin;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid #B3E5FC;

}

.counter-container i {
  color: green;
  font-size: 20px;
  text-align: center;
}

.counter-container .num {
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}

.counter-container .text {
  color: #000;
  font-size: 1em;
  padding: 0.7em 0;
  line-height: 0;
}

@media screen and (max-width:1024px) {
  .counter-wrapper {
    width: 85vw;
  }

  .counter-container {
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
  }
}

@media screen and (max-width:800px) {


  .counter-wrapper {
    width: 90vw;
    flex-wrap: wrap;

    gap: 5px;

  }

  .counter-container {
    width: calc(50% - 40px);
    height: 25vmin;
    font-size: 14px;
  }


}

@media screen and (max-width:480px) {

  .counter-wrapper {
    gap: 15px;


  }

  .counter-container {
    width: 100%;

    height: 25vmin;
    font-size: 8px;
  }



}

/* counter end */


/* why join eatta start */

.container {

  padding: 0 100px;

}

.container1 {
  padding: 40px 0;
  text-align: center;
}

.container1 header1 {
  text-align: center;

  margin-bottom: 50px;
}

.container1 h1 {
  font-size: 2.0rem;
  color: #2c5f2d;
  margin-bottom: 15px;
  font-weight: 700;
}

.container1 p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}


.benefits-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #03A9F4;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #2c5f2d;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-card p {
  color: #555;
  font-size: 1rem;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4a9d4f, #2c5f2d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.center-image {
  flex: 0 0 350px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.center-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.center-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 95, 45, 0.9), transparent);
  padding: 20px;
  color: white;
}

.image-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .benefits-wrapper {
    flex-direction: column;
  }

  .center-image {
    order: -1;
    margin-bottom: 30px;
  }

  .column {
    width: 100%;
  }
}

@media (max-width: 576px) {
  header1 h1 {
    font-size: 2.2rem;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .center-image {
    flex: 0 0 280px;
  }


}

/* why join eatta end */

/* how to join EATTA start */
.container2 {

  margin: 0 auto;
  max-width: 1000px;
  padding: 40px 20px;
}

.membership-header {
  text-align: center;
  margin-bottom: 50px;
}

.membership-h1 {
  color: #2c3e50;
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.membership-h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 4px;
  background-color: #3498db;
  border-radius: 2px;
}

.subtitle {
  color: #7f8c8d;
  font-size: 1.2rem;
  font-weight: 300;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  background-color: #3498db;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.step-title i {
  margin-right: 10px;
  color: #3498db;
}

.step-description {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.7;
}

.step-1 .step-number {
  background-color: #3498db;
}

.step-2 .step-number {
  background-color: #9b59b6;
}

.step-3 .step-number {
  background-color: #2ecc71;
}

.step-4 .step-number {
  background-color: #e74c3c;
}

.step-5 .step-number {
  background-color: #f39c12;
}

.step-1 .step-title i {
  color: #3498db;
}

.step-2 .step-title i {
  color: #9b59b6;
}

.step-3 .step-title i {
  color: #2ecc71;
}

.step-4 .step-title i {
  color: #e74c3c;
}

.step-5 .step-title i {
  color: #f39c12;
}

.membership-forms {
    text-decoration: none;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: #fff;
    transition: 0.5s all;
    border-radius: 5px;
}

.membership-forms:hover {
    color: #000;
}

/* how to join EATTA end */


