/* =================================================================
   INDEX PAGE STYLES
   - This file contains styles ONLY for index.html.
================================================================= */

/* --- WiseOwlBuys Legacy Styles --- */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #f4f6f8;
  line-height: 1.6;
}

.site-header {
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-title {
  font-size: 24px;
  font-weight: 900;
}

/* --- START: Navigation Layout & Link Color Fix --- */
.site-header nav ul {
  list-style: none; /* Removes the dots */
  display: flex;
  align-items: center;
  gap: 16px; /* Adds space between navigation items */
}

/* Apply to all nav links EXCEPT the special .slick-tab button */
.site-header nav li:not(.slick-tab) a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 150ms ease;
}

/* Make hover selector more specific to avoid conflicting with the slick-tab button */
.site-header nav li:not(.slick-tab) a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* --- END: Navigation Layout & Link Color Fix --- */

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #FFA2E8, #A4F9EF); /* Original pastel gradient */
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.gradient-text {
  background: linear-gradient(135deg, #0A3D62, #000033);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button {
  background: var(--secondary);
  color: var(--primary);
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #c8a030;
}

/* --- General Sections --- */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}