Offline Notepad View raw

Shared snapshot

Shared note

body {
  overflow-x: hidden;
}

.header {
  align-items: center;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  background: #00274d;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: white;
}

.logo {
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("https://static.vecteezy.com/system/resources/previews/010/411/487/non_2x/mountain-art-sun-is-behind-the-mountains-background-for-website-poster-banner-desert-color-vector.jpg")
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.events-preview {
  background-color: #f8f9ff;
  padding: 60px 20px;
  text-align: center;
}

.events-preview h2 {
  font-size: 2rem;
  color: #003399;
  margin-bottom: 40px;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.event-card {
  background: white;
  border: 2px solid #003399;
  border-radius: 12px;
  padding: 20px;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.event-card h3 {
  color: #FFD700;
  margin-bottom: 10px;
}

.event-card p {
  color: #333;
  font-size: 0.95rem;
}

.events-button {
  margin-top: 30px;
  background-color: #FFD700;
  color: #003399;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.events-button:hover {
  background-color: #e6c200;
}

.features-centered {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.features-centered .section-title {
  font-size: 2.2rem;
  color: #003399;
  border-left: 5px solid #FF900E;
  padding-left: 16px;
  display: inline-block;
  margin-bottom: 10px;
}

.features-centered .section-subtitle {
  color: #333;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 5px solid #FFD700;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card-icon {
  font-size: 2rem;
  color: #003399;
  margin-bottom: 10px;
}

.card h4 {
  color: #003399;
  margin-bottom: 10px;
}

.card p {
  color: #444;
  font-size: 0.95rem;
}

.card-btn {
  display: inline-block;
  margin-top: 12px;
  color: #003399;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.card-btn:hover {
  color: #FF900E;
}

.footer {
  padding: 40px 0;
  background-color: #00274d;
  color: white;
}

.footer .socials {
  text-align: center;
  padding-bottom: 25px;
}

.footer .socials a {
  font-size: 24px;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer .socials a:hover {
  opacity: 0.9;
}

.footer ul {
  list-style: none;
  font-size: 18px;
  text-align: center;
  padding: 0;
}

.footer ul li {
  display: inline-block;
  padding: 0 15px;
}

.footer ul li a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer ul li a:hover {
  opacity: 1;
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .navbar {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

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

  .content p {
    font-size: 1rem;
  }

  .card-grid, .event-cards {
    flex-direction: column;
    align-items: center;
  }

  .card, .event-card {
    width: 90%;
  }
}