@import url('https://googleapis.com');

.navbar, .navbar-brand, .nav-link {
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
}



.container {
    display: flex;
    flex-direction: row;
}

html, body {
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

p {
    text-align: center;
}

.text-center mb-4 {
        width: 400px; }

/* Tablet Layout (Screens 768px wide and below) */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
        margin: auto
    }
}

/* Mobile Layout (Screens 480px wide and below) */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}   .text-center mb-4 {
        width: 400px;
}

css/* Base Hero Styles */
.hero-section {
  position: relative;
  height: 80vh; /* Takes up 80% of the viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://picsum.photos'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

/* Background Overlay for Contrast */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* 60% black overlay */
  z-index: 1;
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

/* Typography */
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #3b82f6; /* Blue */
  color: white;
}

.btn-primary:hover {
  background-color: #2563eb;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: black;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}