:root{
  /* --c1:#b01d41;  */
  --c1:#C58940;
  --c2:#decdbe;
  --c4:#ebf6fc;
  --c3:#2c2c2c;
  --bg:linear-gradient(90deg, var(--c1, #00206e) 0%, var(--insuco-base, #00accc) 100%);;

}


.c1{
  color: var(--c1) !important;
}
.c2{
  color: var(--c2) !important;
}
.c3{
  color: var(--c3) !important;
}
.c4{
  color: var(--c4) !important;
}
.bg{
  background-color: linear-gradient(90deg, var(--c1, #00206e) 0%, var(--insuco-base, #00accc) 100%);;
}

.w{
  color: #fff !important;
}
.b{
  color: black !important;
}
a{
  text-decoration: none !important;
}
.ls{
  letter-spacing: 1px;
}
.lh{
  line-height: 2rem !important;
}
@font-face {
  font-family: GildaDisplay;
  src: url(../GildaDisplay-Regular.ttf);
}
@font-face {
  font-family: Lato-Regular;
  src: url(../Lato-Regular.ttf);
}
.hf{
  font-family: 'GildaDisplay' !important;
}


body{
  margin: 0% !important;
  padding: 0% !important;
  font-family: Lato-Regular !important;
  overflow-x: hidden !important;
  width: 100vw;
  margin: 0%;
  padding: 0%;
  scroll-behavior: smooth !important;
}

*{
  box-sizing: border-box;
}






html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


*, *::before, *::after {
  box-sizing: inherit;
}


.logo {
  height: 40px;
}

.top-bar {
  font-size: 14px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #c58b3b;
}

.btn-gold {
  background-color: #c58b3b !important; /* Overriding bootstrap */
  border-color: #c58b3b !important;
  border-radius: 8px; /* Unified border radius */
  color: white !important;
}

.btn-gold:hover {
  background-color: #a8742f !important;
  border-color: #a8742f !important;
}

.social-icons i {
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
    color: #c58b3b;
}


/* --- Hero Section --- */
.hero-section {
  background: url('../images/HH\ 01.jpg') no-repeat center center;
  background-size: cover;
  min-height: 90vh; /* Use min-height to prevent content squishing */
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .btn-outline-light {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-section .btn-outline-light:hover {
    background-color: white;
    color: #000;
}

/* --- Blog Section --- */
/* A more robust flexbox layout for the blog card */
.blog-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 80px;
}



.blog-card {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 480px;
  overflow: hidden;
  align-items: center;
}

.blog-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  width: 60%;
  position: relative;
  padding: 40px 60px;
  background-color: #5d5435;
  color: white;
}

.blog-content h2 {
  font-family: serif;
  font-size: 40px;
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 20px;
}

.blog-content p {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}

.blog-content a {
  margin-top: 25px;
  font-family: sans-serif;
  font-weight: bold;
  color: white;
  text-decoration: none;
  width: fit-content;
  border-bottom: 2px solid white;
  padding-bottom: 3px;
  letter-spacing: 1px;
  transition: color 0.3s, border-color 0.3s;
}

.blog-content a:hover {
  color: #ddd;
  border-color: #ddd;
}

/* --- Responsive Design --- */

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    min-height: unset;
  }

.blog-img {
    position: relative;
    width: 100%;
    height: 250px;
  }

.blog-content {
    width: 100%;
    padding: 30px 25px;
  }
}

/* --- Highlights Section --- */
.highlight-box {
  background-color: #f9f8f4;
  color: #3d4250;
  padding: 2rem;
  border-left: 6px solid #daa450;
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  line-height: 1.8;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.highlight-box strong {
  font-weight: bold;
  color: #c58b3b;
}

/* --- Why Choose Us Section --- */
.why-choose-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.text-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #111;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #2c3e50;
}

.features i {
  font-size: 1.3rem;
  color: #c47135;
  margin-top: 3px;
}


/* --- Kottayam Section --- */
.kottayam-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #111;
}

.quote-box {
  background: linear-gradient(to right, #eef7f0, #fdfaf2);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.intro {
  font-size: 1.1rem;
  text-align: center;
  color: #3c3c3c;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Updated card styles to work with Bootstrap grid */
.kottayam-section .card {
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.3s ease;
}

.kottayam-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.kottayam-section .card i {
  font-size: 1.8rem;
  color: #c47135;
  margin-bottom: 1rem;
  display: inline-block;
}

.kottayam-section .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #222;
}

.kottayam-section .card-desc {
  font-size: 1rem;
  color: #555;
}

/* --- Heaven's Haven Section --- */
.heaven-section .content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111;
}

.heaven-section .content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.heaven-section .features i {
  color: #d29b56;
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

/* --- Nalukettu Section --- */
.nalukettu-box {
  background: linear-gradient(to right, #f9f9e8, #e4f1eb);
  border-radius: 1rem;
  padding: 2.5rem;
}

.nalukettu-box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #111;
}

.picture-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.picture-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.picture-list i {
  color: #f0b400;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

/* --- Traditions Section --- */
.wedding-section h2 {
  font-size: 2.5rem;
  color: #111827;
}

.wedding-card {
  background-color: #fdfdfd;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wedding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hindu-symbol {
  font-size: 2.5rem;
  color: #d49b3c;
  font-weight: bold;
  line-height: 1;
}

/* --- Planning Tips Section --- */
.tips-section {
  background-color: #f7faf8;
  padding: 60px 40px;
  border-radius: 20px;
}

.tips-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 40px;
}

.tip-item {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
}

.tip-icon {
  font-size: 1.5rem;
  color: #d2995c;
  margin-right: 15px;
}

.tip-text {
  font-size: 1.1rem;
  color: #2c2f36;
  font-weight: bold;
}

.tip-subtext {
  color: #555;
  font-weight: 400;
}

/* --- FAQ Section --- */
.faq-section {
  max-width: 960px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 24px;
  cursor: pointer;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-answer {
  font-size: 1rem;
  color: #4b5563;
  display: none;
  line-height: 1.6;
  padding-top: 15px; /* Add space when revealed */
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item:hover {
  background-color: #f9f9f9;
}

/* --- CTA Banner --- */
.intro-banner {
  background-color: #d4a765;
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
}
.intro-banner h1 {
    color: white;
}
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  padding: 12px 25px;
  border-radius: 12px;
  border: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-visit {
  background-color: white;
  color: #b87d34;
}
.btn-visit:hover {
    background-color: #b87d34;
}
.btn-enquire {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-enquire:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.contact-info {
  font-size: 1rem;
}

.contact-info i {
  margin-right: 5px;
}

/* --- Footer --- */
.footer {
  background-color: #0b0a0a;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif; /* A more modern font for footer */
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-logo { flex: 1 1 250px; }
.footer-links, .footer-services, .footer-contact { flex: 1 1 200px; }
.footer-logo img { max-height: 50px; margin-bottom: 15px; }
.footer-logo p { font-size: 14px; color: #ddd; line-height: 1.7; }
.footer h5 { font-size: 18px; margin-bottom: 20px; color: #d9903e; font-weight: 600;}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li a { color: #ddd; text-decoration: none; transition: color .3s; }
.footer ul li a:hover { color: #d9903e; }
.footer ul li { margin-bottom: 12px; }
.footer ul li i { color: #d9903e; margin-right: 8px; }

.footer-socials a {
  display: inline-flex; /* Use flex for alignment */
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: #b88e52;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.footer-socials a:hover { background: #fff; color: #b88e52; }

.footer-contact .contact-box { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.footer-contact .contact-box .icon { background: #b88e52; padding: 10px; border-radius: 2px; font-size: 16px; color: #fff; line-height: 1;}
.footer-contact strong { color: #fff; font-size: 14px; }
.footer-contact div div { font-size: 14px; color: #ddd; }

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 30px;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center align for better wrapping */
  gap: 20px;
  font-size: 14px;
}

.footer-bottom ul li {
  list-style-type: none; /* Removed disc */
  color: #ccc;
}

.footer-copy {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
  margin-top: 30px;
}
.footer-copy strong {
    color: #d9903e;
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
  .blog-card {
    flex-direction: column;
    min-height: unset;
  }
  .blog-img-container {
    flex-basis: 250px; /* Give a fixed height on mobile */
  }
  .blog-content {
      padding: 30px 25px;
  }
  .blog-content h2 {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.75rem; }

  .hero-section {
    min-height: 70vh;
  }
  
  .highlight-box {
    font-size: 1.05rem;
  }

  .kottayam-section .card {
    text-align: center;
  }
  .nalukettu-box {
      padding: 1.5rem;
  }
  .tips-section {
      padding: 40px 20px;
  }

  .intro-banner {
      padding: 60px 20px 40px;
  }
}

@media (max-width: 576px) {
  .btn-custom {
    width: 100%;
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}

/* blog */

.anchor-tag{
    font-weight: bold;
}


/* blog */

/* cards */

.wedding-highlights li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.wedding-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.wedding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.wedding-card h5 {
  font-weight: 600;
  color: #444;
}

.wedding-card p {
  font-size: 0.95rem;
  color: #666;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fceabb, #f8b500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #fff;
}

/* cards */