/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

img {
  max-width: 100%;
  display: block;
}

/* Navigation */
nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffffd9;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ddd;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #C9302C;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #C9302C;
}

.cta {
  background-color: #C9302C;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.cta:hover {
  background-color: #a52322;
}

/* Hero section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.button {
  background-color: #C9302C;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: #a52322;
}

/* Sections */
.section {
  padding: 3rem 2rem;
}

.section.light {
  background-color: #f5f5f5;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #C9302C;
  text-align: center;
}

.subtext {
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
  color: #666;
}

/* Cards and grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #C9302C;
}

.card p {
  font-size: 1rem;
  color: #555;
}

/* List columns for frozen bait */
.list-columns {
  columns: 2;
  column-gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
}

.list-columns li {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1 1 250px;
}

.newsletter-form button {
  background-color: #C9302C;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.newsletter-form button:hover {
  background-color: #a52322;
}

/* Contact section */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background-color: #C9302C;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-form button:hover {
  background-color: #a52322;
}

.map-container {
  margin-top: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 1.5rem 2rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  nav.navbar {
    flex-wrap: wrap;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
  }
  .contact-info {
    flex-direction: column;
  }
}