/* Reset & Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Basic HTML and Body Setup */
body, html {
  height: 100%;
  overflow-x: hidden;
}
/* Background Slideshow Container */
#bg-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(4px); /* slight blur like use-third.com */
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
/* Header Navigation */
header {
  background: linear-gradient(to right, #222, #333);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center; /* 👈 center the nav links */
  align-items: center;
  border-radius: 0 0 20px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  text-shadow: 1px 1px 0 white, -1px -1px 0 white;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 800; /* Extra bold weight to match hero tagline */
  font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif; /* Montserrat as primary font */
  transition: color 0.3s;
}
nav a:hover {
  color: #1DB954;
}
/* Hero Logo Overlay Section */
.hero-logo-overlay {
  position: absolute; /* Changed from relative */
  top: 40px; /* Moves the logo toward the top */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0; /* Remove bottom spacing that pushes it down */
  pointer-events: none;
  background: none !important;
  backdrop-filter: none !important;
}
}
.hero-logo-content {
  text-align: center;
  color: white;
  pointer-events: auto;
}
.hero-logo-image {
  max-width: 600px; /* Doubled from 300px */
  width: 80%;
  height: auto;
  margin-bottom: 0.5rem; /* Reduced to bring tagline closer */
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 800; /* Extra bold weight */
  font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif; /* Montserrat as primary font */
  letter-spacing: 2px; /* Increased letter spacing for logo-like appearance */
  text-transform: uppercase; /* All capital letters */
  color: white;
  margin-top: 0; /* Optional: ensure no extra space is added */
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* aligns content to the top */
  align-items: center;
  min-height: 100vh; /* full height of the screen */
  padding-top: 4rem; /* adjust to move the logo higher/lower */
  position: relative;
  z-index: 1;
}
/* Hero Buttons Container */
.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.3rem; /* Slightly increased gap */
}
/* Base Style for Both Buttons - ENLARGED 1.3x */
.hero-btn {
  padding: 0.98rem 1.95rem; /* 1.3x larger: 0.75*1.3=0.98, 1.5*1.3=1.95 */
  border-radius: 10px; /* 1.3x larger: 8*1.3=10.4, rounded to 10 */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem; /* 1.3x larger: 1*1.3=1.3 */
  background-color: #444;
  color: #f0f0f0;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
/* Hover Effect for Primary */
.hero-btn:hover {
  background-color: #666;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
/* Secondary Button Variant */
.hero-btn.secondary {
  background-color: transparent;
  border: 2px solid #666;
  color: #ccc;
  border-radius: 10px; /* 1.3x larger: 8*1.3=10 */
}
/* Hover Effect for Secondary */
.hero-btn.secondary:hover {
  background-color: #333;
  color: #fff;
  border-color: #999;
}
/* Page Sections */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 2rem auto 0 auto;
  background-color: rgba(30, 30, 30, 0.75);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
}
/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: #aaa;
  font-size: 0.9rem;
}

