body {
  font-family: 'Pathway Gothic One', sans-serif;
 
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.fade {
  position: relative;
  width: 100%;
  min-height: 60vh;
  top: -25px;
  background-image: linear-gradient(0deg, transparent, black 75%);
  z-index: 1;
}

.star-wars {
  display: flex;
  justify-content: center;
  position: relative;
  height: 800px;
  color: #feda4a;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 500%;
  font-weight: 600;
  letter-spacing: 6px;
  line-height: 150%;
  perspective: 400px;
  text-align: justify;
}

.crawl {
  position: relative;
  top: 9999px;
  transform-origin: 50% 100%;
  animation: crawl 60s linear;
}

.crawl > .title {
  font-size: 90%;
  text-align: center;
}

.crawl > .title h1 {
  margin: 0 0 100px;
  text-transform: uppercase;
}

@keyframes crawl {
  0% {
    top: 0;
    transform: rotateX(20deg)  translateZ(0);
  }
  100% { 
    top: -6400px;
    transform: rotateX(25deg) translateZ(-2500px);
  }
}

/* --- 2. Navigation Bar (Navbar) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: var(--background-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Very light bottom shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin-left: 25px;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar ul li a:hover:not(.btn-primary) {
    color: var(--primary-color);
}

/* --- 6. Footer --- */
.footer {
    background-color: var(--text-color-dark);
    color: var(--text-color-light);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

form-control {
    font-size: 0.9em;
    
}

/* --- 3. Buttons --- */
.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border-radius: 18px; /* Slightly rounded corners */
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
    margin-right: 10px;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #000000;
    transform: translateY(-1px); /* Subtle lift effect */
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    transform: translateY(-1px);
}

.full-width-equal-spread {
  /* 1. Make the table take up the entire width of its container */
  width: 100%;
  
  /* Optional: Improves appearance by collapsing borders */
  border-collapse: collapse; 
}

.full-width-equal-spread th,
.full-width-equal-spread td {
  /* 2. Set the cell width to an equal percentage */
  /* For 3 columns, 100% / 3 = 33.333% */
  width: 33.333%; 
  
  /* Optional: Add borders and padding for visual clarity */
  border: 0px solid #ccc;
  padding: 0px;
  text-align: left;
}

.full-width-equal-spread th {
    background-color: #f2f2f2;
}

/* Optional: Basic styling for better visibility */
table {
    width: 100%; /* Total table width */
    border-collapse: collapse;
    margin: 0px auto;
}
th, td {
    border: 0px solid #333;
    padding: 5px;
    text-align: left;
}

/* Column Width Definitions */
.column1 {
    width: 25%;
}
.column2 {
    width: 50%;
}
.column3 {
    width: 25%;
}


/* --- 4. Hero Section --- */
.hero-section {
    background-color: var(--background-dark);
    color: var(--text-color-dark);
    text-align: center;
    padding: 100px 20px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}


/* --- 5. Features Section --- */
.features-section {
    padding: 80px 50px;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.feature-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light); /* Apply the subtle shadow */
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); /* Lift card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.feature-card p {
    color: var(--secondary-color);
}

/* --- 6. Footer --- */
.footer {
    background-color: var(--text-color-dark);
    color: var(--text-color-light);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

form-control {
    font-size: 0.9em;
    
}

a:link {
  color: #feda4a;
}

/* Visited link */
a:visited {
  color: #feda42;
}

form-text text-muted {
    text-align: left;
    
}