:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --brand: #234f9b;
  --line: rgba(15, 23, 42, .12);
  --shadow: 0 18px 50px rgba(2, 6, 23, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Bookman Old Style', Georgia, serif;
  background: linear-gradient(180deg, #f6f7fb, #eef2ff);
  color: var(--ink);
  line-height: 1.6;
}

/* =========================================
   STICKY NAV BAR  (MATCH SONG PAGE)
   ========================================= */
nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:#ffffff;
  border-bottom:1px solid var(--line);
}

nav ul{
  list-style:none;
  margin:0;
  padding:8px 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

nav .nav-logo img{
  width:30px;
  height:auto;
  display:block;
}

nav a{
  text-decoration:none;
  font-family: Inter, system-ui, sans-serif;
  font-weight:700;
  font-size:14px;
  color:var(--brand);
  padding:8px 14px;
  border-radius:999px;
  transition: background 0.2s ease;
  display:inline-block;
}

nav a:hover{
  background:#eef2ff;
}

/* MOBILE (same spacing behavior as song page) */
@media(max-width:600px){
  nav a { padding: 6px 10px; font-size: 13px; }
}

/* =========================================
   MAIN CONTENT
   ========================================= */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 16px 60px;
  text-align: center;
}

.logo-wrap {
  margin: 20px auto;
}

.logo-wrap img {
  width: 200px;
  height: auto;
}

.hero {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 30px;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 6vw, 50px);
  color: var(--brand);
  margin: 0;
  line-height: 1.1;
}

.name-sub {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.biz-card-section {
  margin: 40px auto;
  max-width: 500px;
}

.biz-card-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid var(--line);
}

.phone-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  margin-top: 15px;
  display: block;
  text-decoration: none;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.content-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-card img {
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
}

.cta-link {
  display: inline-block;
  margin-top: 10px;
  background: var(--brand);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 10px rgba(35, 79, 155, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.cta-link:hover {
  background-color: #1a3c75;
  transform: translateY(-2px);
}

.angel-decor {
  width: 80px;
  height: auto;
}

footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--muted);
}

@media(max-width:600px) {
  .grid-container { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  .angel-decor { width: 50px; }
}
body
{
   background-color: #FFFFFF;
   background-image: url('images/green-grass-blue-sky.jpg');
   background-attachment: scroll;
   background-position: left top;
   background-repeat: repeat;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #DC143C;
   text-decoration: underline;
}
a:visited
{
   color: #8B008B;
}
a:active
{
   color: #3CB371;
}
a:hover
{
   color: #376BAD;
   text-decoration: underline;
}
