# Project Overview

This project is a web application for the "Indian River Kontrol Society" (I.R.K.S.), an AMA Leader Club. It serves as an informational website for the club, providing details about its activities, contact information, and a membership management system (join/renew).

**Main Technologies:**

*   **Frontend:** HTML, CSS (Tailwind CSS), JavaScript
*   **Backend (Data Processing):** PHP, Python (for importing data into SQLite databases)
*   **Database:** SQLite

## Development Conventions

*   **Styling:** Tailwind CSS is used for styling, indicated by the `cdn.tailwindcss.com` script inclusion and extensive `class` attributes in the HTML.
*   **JavaScript:** Vanilla JavaScript is used for interactive elements, such as the mobile menu toggle and form handling.
*   **File Naming:** HTML files are named descriptively (e.g., `index.html`, `contact.html`, `join.html`, `renew.html`, `joinrenew.html`).
*   **Backend Scripts:** PHP and Python scripts are used for specific backend tasks, primarily data import into SQLite databases. They follow a procedural style.
*   **Database:** SQLite is used for local data storage, with `.db` files (e.g., `members.db`, `irks.db`).

## Key Files

*   `index.html`: The main landing page of the website.
*   `contact.html`: Provides contact information and a contact form.
*   `join.html`: The form for new members to join the club.
*   `renew.html`: The form for existing members to renew their membership.
*   `joinrenew.html`: A page that allows users to choose between joining or renewing their membership.
*   `images/`: Directory containing various images used throughout the website.
*   `membership/`: Directory containing PHP scripts related to membership management.
*   `members.db`, `irks.db`, `newmembers.db`: SQLite database files for storing membership data.
