/* Custom CSS for AOSNP Website Template
    Author: Gemini AI
    Date: 2024-07-25 */

/* --- Table of Contents ---
1. Global Styles
2. Navigation Bar
3. Hero Section
4. Section Styles
5. Card Styles
6. Form Styles
7. Footer
8. Responsive Design */

/* 1. Global Styles */

:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Lato', sans-serif;
}

body {
  font-family: var(--font-primary);
  padding-top: 56px;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
}

section {
  padding: 60px 0;
}

/* 2. Navigation Bar */

.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

/* 3. Hero Section */

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('content images/Data for AOSNP Website (20-06-2025)/Data for AOSNP Website (20-06-2025).001.jpeg') no-repeat center center/cover;
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* 4. Section Styles */

#about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

#membership ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

#membership ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* 5. Card Styles */

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* 6. Form Styles */

#contactForm .form-control {
  border-radius: 0.25rem;
}

#contactForm .btn-primary {
  width: 100%;
}

/* 7. Footer */

footer {
  background-color: var(--dark-color);
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* 8. Responsive Design */

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 54px;
  }
}

