/* FEFKA Writers Union - Vanilla CSS */

/* CSS Variables - Design System */
:root {
    /* FEFKA Red and Black color palette */
    --color-background: hsl(0, 0%, 98%);
    --color-foreground: hsl(0, 0%, 10%);

    --color-card: hsl(0, 0%, 100%);
    --color-card-foreground: hsl(0, 0%, 10%);

    --color-primary: hsl(348, 83%, 47%);
    --color-primary-foreground: hsl(0, 0%, 100%);
    --color-primary-glow: hsl(348, 100%, 70%);

    --color-secondary: hsl(0, 0%, 10%);
    --color-secondary-foreground: hsl(0, 0%, 100%);

    --color-muted: hsl(0, 0%, 93%);
    --color-muted-foreground: hsl(0, 0%, 40%);

    --color-accent: hsl(348, 83%, 47%);
    --color-accent-foreground: hsl(0, 0%, 100%);

    --color-border: hsl(0, 0%, 85%);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(348, 83%, 47%), hsl(0, 0%, 10%));
    --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%), hsl(0, 0%, 96%));
    --gradient-button: linear-gradient(135deg, hsl(348, 83%, 47%), hsl(348, 83%, 37%));
    --gradient-button-hover: linear-gradient(135deg, hsl(348, 83%, 57%), hsl(348, 83%, 47%));

    /* Shadows */
    --shadow-card: 0 4px 20px -2px hsla(348, 83%, 47%, 0.1);
    --shadow-hover: 0 10px 30px -10px hsla(348, 83%, 47%, 0.4);

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

    /* Spacing */
    --container-max-width: 1200px;
    --spacing-section: 4rem;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: 'Amaranth', sans-serif; */
    line-height: 1.2;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 0px;

}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-brand:hover .nav-logo {
    transform: scale(1.05);
}

.nav-brand:hover .nav-title {
    color: var(--color-primary);
}

.nav-logo {
    height: 3.4rem;
    object-fit: contain;
    transition: transform 0.3s;
}



@media (min-width: 640px) {
    .nav-brand-text {
        display: block;
        
    }
}

.nav-title {
    font-size: 1.50rem;
    color: var(--color-foreground);
    transition: color 0.3s;
    font-family: 'Impact' !important;
    text-transform: uppercase !important;
}

.nav-subtitle {
    font-size: 0.85rem;
    color: var(--color-muted-foreground);
    font-family: 'Times New Roman', 'Georgia', serif !important;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    background-color: var(--color-accent);
    color: white;
}

.nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    box-shadow: var(--shadow-hover);
}

.nav-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-foreground);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    background: var(--gradient-card);
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-mobile-link:hover {
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
}

.nav-mobile-link.active {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}
.nav-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-social a {
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-social a:hover {
  color: #FFD700; /* Gold hover color */
}




/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./img/writing-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero-bg {
   
    background-image: url('./img/writing-mob-banner.jpg') !important;
 
} 
}


.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.55;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
}

.hero-text {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--color-primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: 'impact' !important;
    text-transform: uppercase !important;

}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.0rem;
    }
}

.hero-highlight {
    display: block;
    /* color: var(--color-primary-glow); */
    font-size: 22px;
    color: #f8f9fa84;
    font-weight: 600;

}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }

}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px !important;
    }

}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    color: var(--color-primary-glow);
    margin: 0 auto 0.75rem;
    display: block;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-foreground);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;

}

.btn-primary {
    background: var(--gradient-button);
    color: var(--color-primary-foreground);
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--color-primary-foreground);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary-foreground);
    color: var(--color-primary);
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: var(--color-primary-foreground);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Sections */
.section {
    padding: var(--spacing-section) 0;
}

.section-muted {
    background-color: rgba(0, 0, 0, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* Events Grid */
/* .index-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
} */
/* Events Grid - Single column centered */
.index-events-grid {
    /* display: grid; */
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    justify-items: center;
}

@media (min-width: 1024px) {
    .index-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .index-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 1.1rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
    
}

.event-card p{
    color: black;
    gap: 10px;
}

.events-heading {
    margin-bottom: 0px !important;
}

.button-group a {
    display: inline-block;
    padding: 1px 0px;
    margin-right: 10px;
    margin-block: 10px;
    border-radius: 5px;
    font-size: 15px !important;
    text-decoration: none;
    background-color: transparent;
    color: #c50033;
    font-weight: 0px !important;
    transition: background-color 0.3s, color 0.3s;
 
}
.button-group i {
    font-size: 17px;
}


.event-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.event-icon {
  color: #c50033;
  font-size: 18px;
  margin-right: 6px;
}

.details-btn {
  background:transparent;
  color: #c50033;
  padding: 0px 12px;
  padding-left: 0px !important;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}



.details-box {
  display: none;
  background: #fff;
  border-left: 3px solid #c50033;
  padding: 12px 15px;
  margin-top: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 14px;
  line-height: 1.6;
}
.details-box {
  display: none;
}

.details-box.show {
  display: block;
}
@media (max-width: 768px) {
  .event-separator {
    flex-direction: column;
    align-items: flex-start;
  }
  .details-btn {
    padding: 0px 0px !important;
    text-align: left;
  }

  .event-group span {
    display: block;
  }

  .event-group .btn {
    width: 100%;
    margin-top: 5px;
  }
}




.index-small-note {
    border-left: 5px solid #c50033 !important;
    border-radius: 8px;
    background: #c5003505;
    border: 1px solid #ddd;
    width: 50% !important;
    padding-left: 15px;

}

.index-big-note {
    border-left: 5px solid #c50033 !important;
    border-radius: 8px;
    background: #c5003507;
    border: 1px solid #ddd;
    width: 100% !important;
    padding-left: 15px;
    padding-block: 11px;


}
.event-groups {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align everything to the left */
  gap: 6px; /* small space between groups */
}

.event-group {
  display: inline-flex;
  align-items: center; /* vertically center icon and text */
  gap: 4px; /* space between icon and text */
  color: #333; /* optional: adjust color */
  font-size: 15px;
}



.event-group span {
  display: inline-block;
  /* vertical-align: middle; */
}

.event-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* optional spacing between lines */
    text-align: left !important;
}

.event-detail p {
    margin: 0;
    line-height: 1.5;
    text-align: center !important;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.event-card.featured {
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}


.badge-featured {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.badge-open {
    background-color: hsl(142, 76%, 86%);
    color: hsl(142, 76%, 20%);
}

.badge-closed {
    background-color: hsl(0, 76%, 86%);
    color: hsl(0, 76%, 20%);
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.event-card:hover .event-title {
    color: var(--color-primary);
}

.event-description {
    color: var(--color-muted-foreground);
    font-size: 0.975rem;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    
}

.event-awards {
  text-align: left;
  font-size: 0.95rem;
  padding-left: 0;
}

.award-list {
  list-style: none; /* Remove default numbers */
  counter-reset: award-counter; /* Start custom counter */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem 1rem;
  padding: 0;
  margin: 0;
}

.award-list li {
  counter-increment: award-counter;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.4rem 0rem;
  border-radius: 6px;
  transition: transform 0.2s ease;
    font-size: 15px;
    color: black;
}

.award-list li::before {
  content: counter(award-counter);
  background-color: #c50033;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  font-size: 14px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-list li:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .award-list {
    grid-template-columns: 1fr;
  }
  .event-groups {
    gap: 10px;
  }
}


.event-icon {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.event-progress {
    margin-bottom: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background-color: var(--color-border);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 9999px;
    transition: width 0.3s;
}

.event-button {
    width: 100%;
    cursor: auto;
}

.event-button:disabled {
    background-color: var(--color-muted);
    color: var(--color-muted-foreground);
    cursor: not-allowed;
    opacity: 0.6;
}
  .event-btn {
      margin-top: 15px;
      width: 100%;
      padding: 10px;
      background: #c50033;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
      text-align: center;
    }

    .event-btn:hover {
      background: #c50033;
      transform: translateY(-5px);

    }
/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.news-card.important {
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
}

.news-important {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.news-card:hover .news-title {
    color: var(--color-primary);
}

.news-excerpt {
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 5px;
}

.news-link:hover {
    background: var(--color-primary);
    color: var(--color-primary-foreground);
    transform: translateX(4px);
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-secondary-foreground);
    padding: 3rem 0;
}
/* 
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: space-between !important;
} */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr; /* 🩵 Mobile: 1 column */
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: space-between;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    background: var(--gradient-hero);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-hover);
    margin-bottom: 4px;
}

.footer-logo svg {
    color: var(--color-primary-foreground);
}

.footer-title {
    font-size: 1.725rem;
    font-family: 'Impact' !important;
    text-transform: uppercase !important;
}

.footer-subtitle {
    font-size: 0.975rem;
    opacity: 0.8;
        font-family: 'Times New Roman', 'Georgia', serif !important;

}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.75;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--color-secondary-foreground);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-primary);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}




.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
        

}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--color-primary);
}


/* about page */


.about-main-bg {
    background: var(--gradient-hero);
    color: white;
}

.about-icon {
    color: var(--color-primary);
}

.shadow-cinema {
    box-shadow: 0 0 0.9px hsl(0, 0%, 0%);
}

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

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

.bg-gradient-hero {
    background: var(--gradient-hero);
}



/* contact page */


.main-content {
    padding: 0rem 0;
    min-height: calc(100vh - 4rem - 300px);

}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr; /* example: small + large column */
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch; /* ensures both grid items match the tallest one */
}


@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
    }


}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.75;
}

.contact-map {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
  
}

.contact-map h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-placeholder {
    background: var(--color-muted);
    border-radius: 0.5rem;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.map-placeholder p {
    color: var(--color-muted-foreground);
    font-size: 1rem;
}
@media (max-width: 768px) {
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info,
  .contact-map {
    width: 100%;
  }
   .contact-map{
    height: 70vh;
   }
   .footer-bottom {
    margin-bottom: 40px !important;
   }
}

.contact-form-section {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    height: auto !important;
}

.contact-form-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-top: 15px;
    text-align: left;
}

.icon-box {
    background-color: #c50033;
    color: white;
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.text-box h3 {
    font-size: 16px;
    margin: 0 0 6px;
    font-weight: 700;
    color: #222;
}

.text-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.contact-form-section>p {
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 768px) {
    .main-content {
        padding-inline: 15px !important;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .contact-form-section {
        padding: 1.1rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-note {
    background: rgba(220, 38, 38, 0.05);
    border-left: 3px solid var(--color-primary);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 15px;
}

.form-note p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.form-actions button {
    width: 100% !important;
}


@media (min-width: 640px) {
    .form-actions {
        flex-direction: row;
    }
}

.form-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.form-actions .btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    background: var(--gradient-button);
    color: var(--color-primary-foreground);
    box-shadow: var(--shadow-hover);
}

.form-actions .btn-outline {
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary);
    background: transparent;
}

.btn-outlin {
    border: 2px solid #ffffff !important;
    color: var(--color-primary);
    background: transparent;
}

.form-actions .btn-outline:hover {
    background: var(--color-primary-foreground);
    color: var(--color-primary);
}

.quick-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .quick-contact {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quick-card {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.quick-icon {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    background: var(--color-primary);
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 1px solid rgba(128, 128, 128, 0.242);
    background: transparent;
}

.btn-outline-small:hover {
    background: var(--color-primary);
    color: var(--color-primary-foreground);
}

.quick-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-card p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
}

 .details-box {
    display: none;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }


     .whatsapp-icon {
     position: fixed;
     top: 80%;
     right: 25px;
     width: 50px;
     height: 47px;
     background-color: #c50033;
     color: #073b1a;
     border-radius: 20%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 21px;
     z-index: 9999;
     text-decoration: none;
     animation: zoomPulse 1.5s infinite ease-in-out;
   }
    .whatsapp-icon {
       font-size: 25px;
       color: white;
    }

   .whatsapp-icon:hover {
     background-color: #d02653;
     color: #ffffff;
     border: 1px solid #d02653;
   }
  #sponsor-mobile{
    display: none !important;
  }
   @keyframes zoomPulse {
     0% {
       transform: scale(1);
     }

     50% {
       transform: scale(1.04);
     
     }

     100% {
       transform: scale(1);
       
     }
   }


   
   /* Mobile Bottom Navigation with Icons */
   .mobile-bottom-nav {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: linear-gradient(135deg, #c50033, #890125);
     display: flex;
     justify-content: space-around;
     align-items: center;
     padding: 0px 0;
     z-index: 1000;
     box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.25);
     gap: 5px;
     padding-block: -10px !important;
     margin-bottom: 0px !important;
     height: 10vh;
     padding-inline: 5px;
     
   }

   .mobile-bottom-nav .nav-btn {
     flex: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 6px 0;
     color: #ffffff;
     font-size: 0.75rem;
     text-decoration: none;
     transition: all 0.3s ease;
     

   }

   .mobile-bottom-nav .nav-btn i {
     font-size: 1.2rem;
     margin-bottom: 3px;
   }

   .mobile-bottom-nav .nav-btn:hover {
     background-color: #ffffff;
     color: #890125;
     border-radius: 5px;
   }

  .mobile-active {
     background-color: #ffffff !important;
     color: #890125 !important;
     border-radius: 5px;
  
   }
      @media (min-width: 768px) {
     .mobile-bottom-nav {
       display: none;
     }

   }
   @media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    #sponsor-mobile{
    display:block !important;
  }

    .footer-right {
        text-align: center;
        margin-top: 15px;
        height: auto;
    }

    .footer-right img {
        width: 80%;
        height: auto;
    }
    #sponsor{
        display: none !important;
    }
     .nav-brand-text h1{
   font-size: 20px;
     }
     .about-head{
        text-align: left;
        font-size: 29px;
     }
     .about-main-head{
        text-align: left !important;
     }
     .about-head-img{
        width: 40px !important;
        height: 40px !important;
     }
     .nav-subtitle {
    font-size: 0.70rem;
    
}
.footer-title {
    font-size: 1.455rem;
   
}
.footer-subtitle{
      font-size: 0.9rem;
      letter-spacing: -0.5px;
}
 

}
     .about-head{
        font-family: 'impact' !important;
        text-transform: uppercase !important;
     }
@font-face {
  font-family: 'Impact' !important;
  src: url('fonts/Impact.ttf') format('truetype') !important;
}
@font-face {
  font-family: 'TimesNewRomanWeb' !important;
  src: url('fonts/TimesNewRoman.ttf') format('truetype') !important;
}