@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');

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

/* Body and background color */
body {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth; /* Smooth scrolling */
}

/* Navbar Styling */
.navbar {
    background-color: #ed8900; /* Orange background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.navbar .logo img {
    height: 40px; /* Logo size */
    margin-right: 10px;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #f5f5dc; /* Beige on hover */
}

/* Section Styling */
section {
    padding: 80px 20px; /* Add padding to sections to make room for navbar */
}

/* Hero Section */
/* Hero Section */
/* New top heading */
.hero {
    background-color: #f5f5f5;
    padding: 120px 40px 60px 40px; /* Increased top padding */
}

.hero-heading {
    text-align: center;
  margin-bottom: 20px;
  }
  
  .hero-heading h1 {
    font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  }
  
  /* Catchy line on the left */
  .catch-line {
    font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #ed8900;
  line-height: 1.2;
  margin-bottom: 50px; 
  }
  
  /* Adjusting hero content */
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1;
    min-width: 280px;
  }
  
  .hero-image {
    flex: 1;
    text-align: center;
    min-width: 280px;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
  }
  
/*About section*/
.about {
    background-color: #f5f5f5;
    padding: 60px 20px;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .about-image {
    flex: 1;
    min-width: 550px;
    text-align: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 450px;
    
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: #ed8900;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
  }
  
.cta-btn {
    display: inline-block;
  background-color: #ed8900;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 50px; 
}

.cta-btn:hover {
    background-color: #e47a00; /* Darker orange on hover */
}


/* About, Contact, and Join Sections */
.about, .contact, .join {
    text-align: center;
    background-color: #f5f5f5;
    margin: 50px 0;
}

.about h2, .contact h2, .join h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p, .contact p, .join p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
/*contact us*/
.contact {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    color: #ed8900;
    margin-bottom: 10px;
  }
  
  .contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
  }
  
  .contact-form button {
    background-color: #ed8900;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #e47a00;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin: 10px 0;
  }
  
  .contact-info a {
    color: #ed8900;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }

/*join us*/
.join {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
  }
  
  .join h2 {
    font-size: 2.5rem;
    color: #ed8900;
    margin-bottom: 10px;
  }
  
  .join p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-inline: auto;
  }
  
  .join-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .join-form input,
  .join-form textarea,
  .join-form select {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
  }
  
  .join-form button {
    background-color: #ed8900;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .join-form button:hover {
    background-color: #e47a00;
  }
  
  
/* Responsive Layout for Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-btn {
        padding: 10px 25px;
    }

    .about, .contact, .join {
        margin: 20px 0;
    }
}
