/* Custom Brand Colors */
:root {
  --gold: #bc9c22;
  --dark-azure: #053d57;
  --white: #ffffff;
}


/* Base Styles */
body {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  background-color: var(--white);
  color: var(--dark-azure);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.section-title,
.hero .hero-title,
.service-card h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Accent / Tagline / Quotes */
.text-accent,
.tagline,
blockquote,
.hero .subtitle {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}

/* Slight size/weight tweaks to keep balance */
.hero .hero-title { font-weight: 700; line-height: 1.08; }
.section-title { font-weight: 600; }
.service-card h3 { font-weight: 600; font-size: 1.15rem; }

/* Fallbacks for small screens */
@media (max-width: 576px) {
  .hero .hero-title { font-size: 1.2rem; }
  .section-title { font-size: 1.25rem; }
}
.logo {
  max-height: 40px;
  margin-right: 10px;
}

/* Navbar Custom */
.bg-dark-azure {
  background-color: var(--dark-azure) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

/* Hero */
.hero {
  background-color: var(--white);
  padding: 6rem 1rem;
}
.hero .hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  animation: FadeInUp 1s ease; 
}

@media (max-width: 768px){
  .hero {
    padding: 2.5rem 0.5rem !important;
  }
  .hero .hero-title {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }
  .hero p lead{
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero .btn-gold {
    padding: 0.65rem 1.2rem !important;
    font-size: 1rem !important;
}
}
@keyframes FadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
}
}

.text-dark-azure {
  color: var(--dark-azure) !important;
}

.btn-gold {
  background-color: var(--gold);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  background-color: #a1821c;
  color: var(--white);
  outline: none;
  box-shadow: 0 0 8px var(--gold);
}

/* Section Titles */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.15rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Cards */
.border-gold {
  border: 1px solid rgba(188, 156, 34, 0.9) !important;
  box-shadow: none !important;
}

.card.border-gold {
  border-radius: 12px;
  overflow: hidden;
  background-clip: padding-box; 
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  border: 1px solid rgba(196, 154, 83, 0.9);
}

.card.border-gold .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-gold {
  color: var(--gold) !important;
}

.service-card {
  border: 1px solid rgba(196, 154, 83, 0.9);
  border-radius: 12px;
  background: #ffffff !important;
  padding: 1.5rem 1rem;
  margin: 0.5rem 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  background-clip: padding-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}
.services-section{
  background-color: #ffffff !important;
}
.service-card:hover {
  box-shadow: none;
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  color: #c49a53;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--dark-azure);
}
.service-card p {
  font-size: 0.97rem;
  color: #444;
  text-align: center;
  flex-grow: 0;
}

/* Form */
input, textarea {
  border-radius: 8px;
  border: 1px solid #c49a53;
  padding: 0.75rem;
  font-size: 1rem;
}
input:focus, textarea:focus {
  border-color: #a67c35;
  box-shadow: 0 0 0 2px #c49a5333;
}
.btn-gold {
  background: linear-gradient(90deg, #c49a53 0%, #a67c35 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover {
  background: linear-gradient(90deg, #a67c35 0%, #c49a53 100%);
  transform: scale(1.05);
}

/* Footer */
footer {
  font-size: 0.9rem;
}
/* Mobile Tweaks */
@media (max-width: 768px) {
  body {
    padding: 0 15px; 
  }

  .section-title {
    font-size: 1.5rem; 
    text-align: center;
  }

  .navbar-brand {
    font-size: 1rem; 
  }

  .logo {
    max-height: 32px;
  }

  .service-card {
    min-height: auto; 
    padding: 1rem;
  }

  .btn-gold {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  /* Navbar */
  .navbar,
  .navbar .container{
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

  }

  /* Hero Section */
  .hero {
    padding: 2rem 0.5rem !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero .hero-title {
    font-size: 1.2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }
  .hero p.lead {
    font-size: 1rem !important;
    margin-bottom: 1.2rem !important;
  }
  .hero .btn {
    font-size: 1rem !important;
    padding: 0.65rem 1.2rem !important;
  }

/* Subscribe button: centered and smaller */
#mc_embed_signup .optionalParent .clear,
#mc_embed_signup .clear {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

#mc_embed_signup .button,
#mc_embed_signup input#mc-embedded-subscribe {
  display: inline-block !important;
  margin: 0.5rem auto 0 !important;
  width: auto !important;
  min-width: 120px !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.95rem !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

/* Mobile: slightly smaller button */
@media (max-width: 576px) {
  #mc_embed_signup .button,
  #mc_embed_signup input#mc-embedded-subscribe {
    min-width: 100px !important;
    padding: 0.45rem 0.9rem !important;
    font-size: 0.9rem !important;
  }
}

  /* Footer */
  footer,
  footer .container {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

}

/* Ensure navbar logo is visible and responsive */
.logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 56px !important;
  height: 56px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
}

/* Slightly smaller on phones */
@media (max-width: 576px) {
  .logo {
    max-width: 44px !important;
    height: 44px !important;
  }
}




