/* ==========================
   GLOBAL RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #fffaf2;
  color: #3b1a0f;
  line-height: 1.6;
}

/* ==========================
   HEADER & NAVBAR
========================== */
header {
  background: linear-gradient(to right, #7a1e0f, #b83a1b);
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  height: 55px;
}

.logo-area h1 {
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
}

nav ul li a:hover {
  background: rgba(255,255,255,0.2);
}

/* ==========================
   SECTION COMMON
========================== */
section {
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #7a1e0f;
  margin-bottom: 40px;
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
  ),
  url("temple-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
}

/* ==========================
   CARDS
========================== */
.card-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.card h3 {
  color: #7a1e0f;
  margin-bottom: 15px;
}

/* ==========================
   DONATION CENTER ALIGN
========================== */
.donation-section {
  text-align: center;
}

.donation-section .card {
  max-width: 500px;
  margin: auto;
}

/* ==========================
   CONTACT
========================== */
.contact-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

/* FOOTER */
.site-footer{
    background:#3b2f2f;
    color:#f5e6c8;
    padding:45px 20px 15px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    position:relative;
    padding:0 90px;
}


.footer-box h3,
.footer-box h4{
    font-family:'Playfair Display',serif;
    color:#f7e7b5;
    margin-bottom:12px;
}

.footer-box p{
    font-size:14px;
    line-height:1.6;
}

.footer-left img{
    width:80px;
    display:block;
    margin:0 auto 12px;
}


.footer-left{
    text-align:center;
}

.footer-left{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
}


.footer-center ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-center li{
    margin-bottom:8px;
}

.footer-center a{
    color:#f5e6c8;
    text-decoration:none;
    font-size:14px;
}

.footer-center a:hover{
    color:#c9a23f;
}

.footer-center{
    text-align:left;
}


.footer-right p{
    font-size:14px;
    margin:6px 0;
}



.footer-bottom{
    text-align:center;
    margin-top:35px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,0.15);
    font-size:13px;
    color:#e6d7b0;
}

/* FOOTER ALIGNMENT FIX */
.footer-left{
    text-align:center;
}

.footer-center{
    text-align:left;
}

.footer-right{
    text-align:left;
}

.footer-right{
    margin-left:auto;
    margin-right:-94px;
    text-align:left;
}
