/* 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;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --footer-color: #058d3b;

  /* 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 CSS */
#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/orthodox2.JPG);
}


/* about tabs start */

.tabs {
  display: flex;
  max-width: 1400px;
  width: 100%;
  margin: 50px auto;
  flex-wrap: wrap;
  /* make sure it wraps */
}

.tabs label {
  /* Put the labels first  */
  order: 1;
  display: block;
  padding: 1rem 2rem;
  margin-right: 0.2rem;
  cursor: pointer;
  background: #90CAF9;
  font-weight: bold;
  transition: background ease 0.2s;
}

.tabs .tab {
  /* Put the tabs last  */
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
  background: #fff;
}

.tabs input[type="radio"] {
  display: none;
}

.tabs input[type="radio"]:checked+label {
  background: #fff;
}

.tabs input[type="radio"]:checked+label+.tab {
  display: block;
}

@media (max-width: 45em) {

  .tabs .tab,
  .tabs label {
    order: initial;
  }

  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

/* about tabs end */

/* tabs content start */

.tabs .content p {
  letter-spacing: 1px;


}

/* new content start */
.video-card {
  background: white;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        } */

.video-section {
  position: relative;
  background: #000;
  overflow: hidden;

}

.video-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-section {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.category {
  display: inline-block;
  background: green;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
}

/* new content end */

/* governance  start */

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}


/* governance end */

/* BOARD START */
.header2 {
  background-color: var(--secondary-color);
  color: black;
  padding: 2rem 0;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.header2 h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.header2 p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.intro {
  text-align: center;
  margin: 2rem 0;
  padding: 0 1rem;
}

.intro h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.board-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.board-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.member-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  transition: var(--transition);
}

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

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.1rem;
}

.chairperson .member-image {
  height: 300px;
}

.chairperson .member-name {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.chairperson .member-title {
  font-size: 1.2rem;
  font-weight: 600;
}



/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* tabs content end */