/* ============================================= */
/* CSS Custom Properties (Variables)             */
/* ============================================= */
:root {
  --brand-orange: #FF6600;
  --brand-blue: #003366;
  --accent-green: #71CC98;     /* Soft mint-green from real site */
  --accent-pink: #FF69B4;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #fafafa;
  --border-light: #dddddd;
  --white: #FFFFFF;
  --dark-gray: #333333;
  --orange-hover: #E65C00;
  --creamy-yellow: #F4F1DE;
}

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

body {
  font-family: 'Liberation Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: linear-gradient(to top, var(--creamy-yellow) 0%, var(--white) 100%);
  letter-spacing: 0.01em;
}

/* Bootstrap consistency */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header & Navbar */
/* .navbar {
  background-color: white;
} */
header,
.navbar a {
  /* background: var(--accent-green) !important; */
  /* font-family: 'Permanent Marker', cursive; */
  color: var(--text-dark);
  font-size: large;
}

nav a {
  color: var(--white);
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
}

nav a:hover {
  color: var(--accent-pink);
}

.nav-link:focus, .nav-link:hover {
  color: var(--accent-green);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
  color: var(--accent-pink);
  text-decoration: underline;
}

/* Main Content */
main {
  padding: 50px 0;
}

section {
  margin-bottom: 50px;
}

section:last-child {
  margin-bottom: 0;
}

p, li {
  line-height: 1.8;
  margin-bottom: 1em;
}

.lead {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 16px;
}

th, td {
  border: 1px solid var(--border-light);
  padding: 18px 20px;
  text-align: center;
}

th {
  background: var(--brand-blue);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

td {
  line-height: 1.7;
}

tbody tr:hover {
  background-color: rgba(113, 204, 152, 0.08);
}

/* Elements */
.note {
  font-style: italic;
  color: var(--accent-green);
  margin-top: 10px;
}

.contact-info {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  border: 2px solid var(--accent-pink);
}

form input,
form textarea {
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

button {
  background: var(--accent-pink);
  color: var(--dark-gray);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

button:hover {
  background: var(--accent-pink);
  opacity: 0.9;
}

button.navbar-toggler {
  color: var(--dark-gray);
  background: var(--accent-pink);
  padding: 10px 12px;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 40px 0;
  margin-top: 60px;
}

footer a {
  color: var(--white);
}

/* ============================================= */
/* Permanent Marker – Balanced & Beautiful       */
/* ============================================= */

.brand-marker {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.1rem;           /* Was 2.2rem → slightly smaller */
  color: var(--accent-pink);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h1, h2, h3, .display-4 {
  font-family: 'Permanent Marker', cursive;
  line-height: 1.3;
  margin-bottom: 1em;
  margin-top: 1.2em;
  color: var(--accent-pink) !important;
}

h1:first-child, h2:first-child, h3:first-child {
  margin-top: 0;
}

/* Much more reasonable sizes – still bold, but not overwhelming */
h1 { font-size: 2.4rem; }        /* Was 3rem+ → now balanced */
h2 { font-size: 2.2rem; }        /* Slightly larger for better hierarchy */
h3 { font-size: 1.75rem; }       /* Was 1.7rem */

.display-4 {
  font-size: 3.2rem;             /* Hero title – big but tasteful */
  color: var(--accent-pink) !important;
  font-weight: bold;
  margin-bottom: 0.8em;
  line-height: 1.25;
}

/* Mobile – perfect scaling */
@media (max-width: 576px) {
  .brand-marker { font-size: 1.75rem; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.5rem; }
  .display-4 { font-size: 2rem; }
  img { 
    max-width: 100% !important;
  }
}

/* Optional pink headings (use class .pink-heading if you want them) */
.pink-heading {
  color: var(--accent-pink) !important;
}

/* Links */
a { color: var(--brand-blue); text-decoration: none; }
a:hover { color: var(--accent-green); }

/* Image constraints */
.img-narrow-fluid {
  max-width: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table-responsive img { 
  width: auto !important; height: auto; 
}

.bi-ban {
  color: red;
}

.star-rating {
  font-size: 1.25rem;
  color: #ffd700; /* Gold color for stars */
}

/* Hero Section */
.bg-light {
  padding: 50px 30px !important;
}

.bg-light h1 {
  margin-top: 0;
}

/* Navbar Improvements */
.navbar {
  padding: 15px 0;
}

.navbar-nav {
  gap: 10px;
}

.navbar-nav .nav-link {
  padding: 10px 18px;
  font-size: 17px;
}

/* Alert Banner */
.alert {
  padding: 18px 20px;
  font-size: 17px;
}

.alert h4 {
  margin: 0;
  font-size: 1.4rem;
}

/* Footer Improvements */
footer {
  padding: 50px 0;
  line-height: 1.8;
}

footer p {
  margin-bottom: 0.8rem;
  font-size: 16px;
}

/* Image Spacing */
.img-fluid {
  margin-bottom: 20px;
}

/* Better spacing for row elements */
.row.g-4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Text alignment for better readability */
.text-start {
  text-align: left !important;
}

/* Comparison table specific styling */
.table tbody .text-start {
  padding-left: 24px;
  padding-right: 24px;
}

/* Success text for pricing */
.text-success {
  font-size: 18px;
}

/* Improved table header */
.table-primary th {
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Better visual separation in tables */
.table-group-divider {
  border-top: 2px solid var(--border-light);
}

/* Text content max-width for better readability */
.text-center p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Better spacing for text elements */
p + p {
  margin-top: 0.8em;
}

/* Strong tags in tables */
table strong {
  font-weight: 600;
  color: var(--text-dark);
}

/* Better line height for table cells with multiple lines */
table td {
  line-height: 1.8;
}

/* List group improvements */
.list-group-item {
  padding: 20px 24px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 2px;
}

.list-group-item ul {
  margin-top: 12px;
  margin-bottom: 8px;
}

.list-group-item li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Font size utilities */
.fs-5 {
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Better contact info box */
.bg-light p {
  font-size: 17px;
  margin-bottom: 1rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  th, td {
    padding: 14px 12px;
    font-size: 15px;
  }

  .bg-light {
    padding: 35px 20px !important;
  }
}