:root {
  --default-font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-dark: #4b2743;
  --color-purple: #5a2a57;
  --color-main-bg: #fff6ef;
  --color-nav: #e7d2df;
  --color-white: #ffffff;
}

/* --- Global Styles --- */
body {
  margin: 0;
  background: #ffffff;
  font-family: Roboto, var(--default-font-family);
  overflow-x: hidden; 
}

* {
  box-sizing: border-box;
}

/* --- STANDARDIZED HEADER --- */
.header {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap; 
  padding: 1rem 2rem; 
  background: #ffffff;
  
  /* THIS IS THE NEW 3D SHADOW */
  box-shadow: 0 4px 15px rgba(75, 39, 67, 0.08); 
  
  position: relative; 
  z-index: 100; 
}

.logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: 'Cormorant Garamond', serif; color: var(--color-purple); font-size: 2rem;
}

.green-cross-design {
  width: 2.625rem; height: 3.9375rem;
  background: url(https://codia-f2c.s3.us-west-1.amazonaws.com/image/2025-10-01/Y3qA72zk9z.png) no-repeat center;
  background-size: cover;
}

.hamburger {
  display: none; background: none; border: none;
  font-size: 2rem; color: var(--color-dark); cursor: pointer;
}

.nav-bar { display: flex; align-items: center; gap: 2rem; }
.nav-bar a {
  position: relative; color: #3c2139; font-size: 1.15rem; font-weight: 500; padding: 0.5rem 0; text-decoration: none;
}
.nav-bar a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 3px;
  background-color: #3c2139; transform: translateX(-50%); transition: width 0.3s ease;
}
.nav-bar a:hover::after, .nav-bar a.active::after { width: 100%; }

/* --- YOUR NEWS SECTION (Desktop Styles Untouched) --- */
.news-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 6.25rem; /* 100px */
  padding: 6.25rem 9.375rem; /* 100px 150px */
  background: #fff6ef;
}
.news-tag {
  color: #4b2743;
  font-family: Cormorant Garamond, var(--default-font-family);
  font-size: 3.75rem; /* 60px */
  font-weight: 600;
  line-height: 2.3125rem; /* 37px */
  text-align: center;
  white-space: nowrap;
  margin: 0; 
}
.news-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  gap: 3.125rem; /* 50px */
}

/* --- News Item --- */
.news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 1.875rem; /* 30px */
  padding: 2.1875rem 2.6875rem; /* 35px 43px */
  background: #ffffff;
  border: 0.0625rem solid #ae8766; /* 1px */
  opacity: 0.9;
  border-radius: 3.125rem; /* 50px */
  box-shadow: 0 0.875rem 1.875rem 0 rgba(0, 0, 0, 0.15); /* 0 14px 30px 0 */
}
.news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 0.9375rem; /* 15px */
}
.news-title {
  align-self: stretch;
  height: 1.125rem; /* 18px */
  color: #4b2743;
  font-family: Roboto, var(--default-font-family);
  font-size: 1.5625rem; /* 25px */
  font-weight: 600;
  line-height: 1.125rem; /* 18px */
  text-align: left;
  white-space: nowrap;
  margin: 0; 
}
.news-body {
  color: #4b2743;
  font-family: Roboto, var(--default-font-family);
  font-size: 1.0625rem; /* 17px */
  font-weight: 400;
  line-height: 1.758rem; /* 28.13px */
  text-align: left;
  margin: 0; 
}
.news-date {
  align-self: stretch;
  height: 0.6875rem; /* 11px */
  color: #4b2743;
  font-family: Roboto, var(--default-font-family);
  font-size: 1rem; /* 16px */
  font-weight: 300;
  line-height: 0.6875rem; /* 11px */
  text-align: left;
  white-space: nowrap;
}

/* --- STANDARDIZED FOOTER --- */
.footer { width: 100%; display: flex; flex-direction: column; }
.footer-top {
  display: flex; justify-content: space-evenly; padding: 4rem 2rem;
  background: var(--color-dark); flex-wrap: wrap; gap: 2rem;
}
.footer-column { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-title { color: #fff6ef; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; }
.footer-data { color: #fff6ef; font-size: 1rem; }

.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  padding: 2rem; background: #331a2d; position: relative; flex-wrap: wrap; gap: 1rem;
}
.footer-hall-booking { display: flex; gap: 1rem; align-items: center; }
.credits { position: absolute; right: 2rem; color: rgba(255, 255, 255, 0.3); font-size: 0.9rem; }

.credits {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;

}

/* =========================================
   MOBILE RESPONSIVENESS (Screens < 768px)
========================================= */
@media (max-width: 768px) {
  
  /* Shared Header Mobile */
  .header { flex-wrap: nowrap; align-items: center; padding: 1rem; }
  .logo { font-size: 1.1rem; line-height: 1.2; flex: 1; }
  .green-cross-design { width: 2rem; height: 3rem; flex-shrink: 0; }
  .hamburger { display: block; margin-left: 1rem; padding: 0.5rem; }
  
  /* Right-Aligned Dropdown Nav */
  .nav-bar {
    display: none; flex-direction: column; align-items: flex-end; padding-right: 2rem;
    width: 100%; background-color: var(--color-nav); position: absolute;
    top: 100%; left: 0; padding-top: 1.5rem; padding-bottom: 1.5rem; box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .nav-bar.active { display: flex; }

  /* --- Mobile Adjustments for Your News Section --- */
  .news-section {
    padding: 3rem 1.5rem; /* Removes the massive 150px padding that breaks mobile screens */
    gap: 2rem; 
  }
  
  .news-tag {
    font-size: 2.5rem; /* Scales down the title */
  }

  .news-item {
    padding: 1.5rem; /* Reduces padding inside the card */
    border-radius: 1.5rem; /* Reduces the extreme border-radius so text fits */
  }

  /* Critical fix: Your desktop CSS had 'white-space: nowrap' and 'height: 18px'. 
     This forces mobile text to spill right off the screen. I am overriding it here 
     so text can wrap onto new lines on small phones. */
  .news-title {
    white-space: normal; 
    height: auto; 
    line-height: 1.4;
    font-size: 1.3rem; 
  }

  .news-body {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Shared Footer Mobile */
  .footer-top { flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-hall-booking { flex-direction: column; text-align: center; }
  .social-media { position: static; margin-top: 1rem; }
}