@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap");

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

html {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.text-center {
  text-align: center;
}

.text-highlight {
  color: #7fffd4;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: transparent;
  border: 2px solid #7fffd4;
  color: #7fffd4;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0.5rem;
}

.btn:hover {
  background-color: #7fffd4;
  color: #333;
}

.btn-alt {
  background-color: #7fffd4;
  color: #333;
}

.btn-alt:hover {
  background-color: transparent;
  color: #7fffd4;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #7fffd4;
}

.nav-menu {
  display: flex;
  gap: 3rem;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #7fffd4;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 2rem;
  color: #7fffd4;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-buttons {
  margin-top: 3rem;
}

/* About Section */
.about {
  background-color: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.about-img img {
  max-width: 300px;
  margin: 0 auto;
}

.organization-type {
  font-size: 1.8rem;
  color: #7fffd4;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-buttons {
  margin-top: 3rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.service-card {
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.service-icon {
  font-size: 4rem;
  color: #7fffd4;
  margin-bottom: 2rem;
}

/* Emergency Banner */
.emergency-banner {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.emergency-content h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.emergency-content i {
  margin-right: 1rem;
}

.btn-emergency {
  background-color: #fff;
  color: #dc3545;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1.5rem 4rem;
}

.btn-emergency:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

/* Contact Section */
.contact {
  background-color: #f8f9fa;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.contact-item {
  text-align: center;
  padding: 2rem;
}

.contact-item i {
  font-size: 3rem;
  color: #7fffd4;
  margin-bottom: 1rem;
}

.contact-item a {
  color: #7fffd4;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  width: 80px;
  margin: 0 auto 1rem;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #7fffd4;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3 {
  color: #7fffd4;
  margin-bottom: 2rem;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links a:hover {
  color: #7fffd4;
}

.footer-contact p {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #7fffd4;
  color: #1a1a1a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-content {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
