/* 
  style.css
  Bold, black and white color scheme for a trendy, minimalist style
*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000; /* Black background */
  color: #fff;            /* White text */
}

/* Header & Navigation */
header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
}

.logo img {
  width: 100px; 
  height: auto; 
  object-fit: cover;
}

/* Navigation Styles */
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  margin-left: auto;
  padding: 0;
}

nav li {
  margin-left: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700; /* Bold text */
  transition: color 0.3s;
}

nav a:hover {
  color: #999;
}

nav a.active {
  border-bottom: 2px solid #fff;
}

/* Hero Section (Homepage) */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero .btn {
  background-color: #fff; /* White button */
  color: #000;           /* Black text */
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.hero .btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Main Content Sections */
.content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.content p,
.content li {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content li {
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxwYXRoIGQ9Ik0gMCA0LjY2NyBMIDAuODU4IDQgMyAxMC42NjcgNiAwLjY2NyIvPgo8L3N2Zz4=')
    no-repeat left center;
  background-size: 10px 10px;
  padding-left: 20px;
  margin-left: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
}

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

  nav ul {
    margin-left: 0;
    margin-top: 1rem;
    flex-direction: column;
  }

  nav li {
    margin: 0.5rem 0;
  }

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

