:root {
  --primary-bg: #a1105d;
  --accent-gold: #ffcc00;
  --text-white: #ffffff;
  --footer-bottom: rgba(0, 0, 0, 0.15);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Mock Content Sections */
.arzHeroPlaceholder {
  height: 60vh;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ccc;
}

/* Footer Styles - Mobile First */
.arzSiteFooter {
  background-color: var(--primary-bg);
  color: var(--text-white);
  padding: 60px 0 0 0;
  overflow: hidden;
}

.arzFooterContainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr; /* Stacked by default */
  gap: 40px;
}

/* Column Headings */
.arzFooterHeading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.arzFooterHeading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* Left Section: Branding */
.arzFooterBrand {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered on mobile */
}

/* Circular Logo Styling */
.arzSchoolLogo {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 50%;
  border: 3px solid var(--text-white);
  background-color: var(--text-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: block;
}

.arzSchoolName {
  text-align: center;
  margin-bottom: 20px;
}

.arzSchoolName h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.2;
}

.arzSchoolName p {
  font-size: 0.95rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

.arzSocialLinks {
  display: flex;
  gap: 15px;
}
.arzSocialIcon i {
  font-size: 20px;
}
.arzSocialIcon {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.arzSocialIcon:hover {
  background: var(--text-white);
  color: var(--primary-bg);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Middle Section: Campus Location */
.arzCampusBlock {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.arzLocationItem {
  display: flex;
  align-items: center;
  gap: 20px;
}

.arzMapFrame {
  width: 160px; /* Slightly smaller for mobile */
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.arzMapFrame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.arzQrImg {
  width: 80px; /* Scaled for mobile */
  height: 80px;
  background: white;
  padding: 8px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Right Section: Contact Information */
.arzContactGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.arzContactCol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.arzInfoRow {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.arzInfoRow i,
.arzInfoRow svg {
  width: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--text-white);
}

.arzInfoText {
  font-size: 0.95rem;
  line-height: 1.6;
}

.arzInfoText a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.arzInfoText a:hover {
  border-bottom: 1px solid var(--accent-gold);
  opacity: 0.9;
}

/* Bottom Bar */
.arzFooterBottom {
  margin-top: 60px;
  background-color: var(--footer-bottom);
  padding: 25px 0;
}

.arzBottomContainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  font-size: 0.85rem;
}

.arzBottomLinks {
  display: flex;
  gap: 20px;
}

.arzBottomLinks a {
  color: var(--text-white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

/* Tablet Upgrades */
@media (min-width: 768px) {
  .arzContactGrid {
    grid-template-columns: 1fr 1fr;
  }
  .arzBottomContainer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .arzMapFrame {
    width: 200px;
  }
  .arzQrImg {
    width: 100px;
    height: 100px;
  }
}

/* Desktop Upgrades */
@media (min-width: 1024px) {
  .arzFooterContainer {
    grid-template-columns: 1fr 1.8fr 2.5fr;
    gap: 50px;
    align-items: start;
  }
  .arzFooterBrand {
    align-items: flex-start;
  }
  .arzSchoolName {
    text-align: left;
  }
}

/* Scroll to top button */
.arzScrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  z-index: 100;
}

.arzScrollTop:hover {
  transform: translateY(-5px);
  background: #0056b3;
}
