body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    overflow-x: hidden;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    width: 100vw;
}   

html {
  scroll-behavior: smooth;
}


.main-navbar {
    width: 90vw;
    min-height: fit-content;
    padding-top: 1rem;
    padding-bottom: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.contact-description {
  font-size: 1.1rem;
  color: #eee;
  margin: 0 auto 2rem auto;
  max-width: 800px;
  text-align: center;
  line-height: 1.6;
}

.footer-banner {
  text-align: center;
    margin: auto;
    display: inline-block;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    border: ridge red;
}

/* MINI EVENTS EXPANDED SUPPORT */

.mini-event-card.with-expanded {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
  padding: 1rem;
  color: white;
}

.mini-event-card.with-expanded:hover {
  transform: scale(1.02);
}

.mini-event-image {
  background-size: cover;
  width: 100%;
  height: 200px;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.mini-event-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mini-event-label {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fd7741;
}

.mini-event-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

.mini-event-buttons {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mini-event-button {
  padding: 0.5rem 1rem;
  background: white;
  color: black;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.mini-event-button:hover {
  background: #ffdfc4;
}



/* Left Section: Phoenix Logo (40% of total viewport width of the navbar) */
.left-section {
    width: 40%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.left-section .logo-img {
    width: 100%; /* Fills the entire width of the .left-section */
    height: auto; /* Maintains aspect ratio */
}

/* Right Section: Navigation Menu and Phone Number (60% of total viewport width of the navbar) */
.right-section {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-grow: 1;
    flex-shrink: 0;
}

/* PHONE NUMBER - Twice as big */
.phone-number-container {
  width: 100%;
  text-align: right;
  margin-bottom: 3rem;
  margin-top: .5rem;
  padding-right: 0.5vw;
  margin-right:1rem;
  font-size: 1.7rem;
  font-family: 'Georgia', serif; /* match contact section */
  color: #f3d6a4; /* elegant cream-gold text */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.phone-number-container i {
  color: #FFD700;           /* bold gold */
  font-size: 1.55rem;
  margin-right: 0.5rem;     /* replaces Tailwind's mr-2 */
}




.right-section ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* NAV BUTTON CONTAINER – Shrink width by 25% and height by 40% */
.right-section ul li {
  width: 7.8vw;       /* was 10.4vw (10.4 * 0.75) */
  padding: 0 1.9vw;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 25.84vw;     /* was 36.4vw (36.4 * 0.6) */
}

/* Custom styles for the fiery glow effect on nav items (the actual button element) */
.nav-item-glow {
    position: relative;
    overflow: hidden;
background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 72%) 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px !important;
    width: 100%; /* Fill the entire width of its parent li */
    height: 100%; /* Fill the entire height of its parent li */
    text-align: center;
        font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 2.5%; /* Added 5% internal padding */
    box-sizing: border-box; /* Ensures padding is included within the 100% width/height */
    transition: 1s;
}





/* Custom styles for the fiery glow effect on nav items (the actual button element) */
.nav-item-glow:hover {
background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.034)100%);
}


.nav-item-glow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3rem;
    background: radial-gradient(circle at bottom, rgba(255, 140, 0, 0.9) 0%, transparent 70%);
    opacity: 0.8;
    filter: blur(1.5rem);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.nav-item-glow:hover::before {
    height: 5rem;
    opacity: 1;
    filter: blur(2.5rem);
}

.nav-item-glow span {
    font-size: 1.5rem;
    font-weight: 200;
    color: #e0e0e0;
    white-space: nowrap;
}


.background-embers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    background-color: #ff8c00;
    border-radius: 50%;
    opacity: 0;
    animation: floatAndFade 8s infinite ease-in;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.9);
}

.ember:nth-child(1) { width: 4px; height: 4px; left: 5%; animation-delay: 0s; animation-duration: 7s; }
.ember:nth-child(2) { width: 6px; height: 6px; left: 15%; animation-delay: 1s; animation-duration: 9s; }
.ember:nth-child(3) { width: 5px; height: 5px; left: 25%; animation-delay: 0.5s; animation-duration: 8s; }
.ember:nth-child(4) { width: 7px; height: 7px; left: 35%; animation-delay: 2s; animation-duration: 10s; }
.ember:nth-child(5) { width: 4px; height: 4px; left: 45%; animation-delay: 0.2s; animation-duration: 7.5s; }
.ember:nth-child(6) { width: 5px; height: 5px; left: 55%; animation-delay: 3s; animation-duration: 11s; }
.ember:nth-child(7) { width: 6px; height: 6px; left: 65%; animation-delay: 1.5s; animation-duration: 8.5s; }
.ember:nth-child(8) { width: 4px; height: 4px; left: 75%; animation-delay: 2.5s; animation-duration: 9.5s; }
.ember:nth-child(9) { width: 7px; height: 7px; left: 85%; animation-delay: 0.8s; animation-duration: 7s; }
.ember:nth-child(10) { width: 5px; height: 5px; left: 95%; animation-delay: 1.8s; animation-duration: 10s; }
.ember:nth-child(11) { width: 4px; height: 4px; left: 12%; animation-delay: 4s; animation-duration: 6.5s; }
.ember:nth-child(12) { width: 6px; height: 6px; left: 28%; animation-delay: 3.5s; animation-duration: 9.2s; }
.ember:nth-child(13) { width: 5px; height: 5px; left: 42%; animation-delay: 1.2s; animation-duration: 7.8s; }
.ember:nth-child(14) { width: 7px; height: 7px; left: 58%; animation-delay: 0.7s; animation-duration: 10.5s; }
.ember:nth-child(15) { width: 4px; height: 4px; left: 72%; animation-delay: 2.2s; animation-duration: 8.8s; }
.ember:nth-child(16) { width: 6px; height: 6px; left: 88%; animation-delay: 0.3s; animation-duration: 7.2s; }


@keyframes floatAndFade {
    0% { transform: translateY(100vh); opacity: 0; }
    20% { opacity: 0.9; }
    100% { transform: translateY(-20vh); opacity: 0; }
}



@media (max-width: 768px) {
    .main-navbar {
        width: 90vw;
        flex-direction: row;
        padding-bottom: 100px;
    }

    .left-section {
        width: 40%;
    }
    .left-section .logo-img {
        width: 100%;
    }

    .right-section {
        width: 60%;
    }

    .phone-number-container {
        font-size: 0.75rem;
        padding-right: 0.25vw;
    }

    .right-section ul li {
        width: 16vw;
        padding: 0 .5vw;
        font-size: 2vw;
        height: 36.4vw;
    }

    .nav-item-glow span {
        font-size: 0.6rem; /* Adjusted for mobile view, might need more tuning */
    }

    .nav-item-glow {
  border-radius:10px !important;
}
}


.nav-item-glow {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.real-flame {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  opacity: 0; /* JS will fade it in */
}


/* Individual delays + fade-in for each flame */
.real-flame:nth-of-type(1) {
  animation-delay: 0s, 0s;
  animation-name: flameFloat, fadeInFlame;
}

.real-flame:nth-of-type(2) {
  animation-delay: 0.5s, 0.5s;
  animation-name: flameFloat, fadeInFlame;
}

.real-flame:nth-of-type(3) {
  animation-delay: 1s, 1s;
  animation-name: flameFloat, fadeInFlame;
}

.real-flame:nth-of-type(4) {
  animation-delay: 1.5s, 1.5s;
  animation-name: flameFloat, fadeInFlame;
}

.real-flame:nth-of-type(5) {
  animation-delay: 2s, 2s;
  animation-name: flameFloat, fadeInFlame;
}

@keyframes flameFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(-5px); opacity: 0.95; }
}

@keyframes fadeInFlame {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ========================================================================= */
/* 🔥 FIRE PHOENIX 888 — FULLSCREEN SHOWCASE SECTION — DO NOT MODIFY ABOVE 🔥 */
/* ========================================================================= */

/* 1) unchanged: lock the section to one viewport, hide overflow */
.showcase-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2) default: cover + center, no “fixed” on mobile (avoids iOS zoom bug) */
.showcase-bg-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;     /* ← mobile fallback */
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 1;

  /* GPU hint for smoother cross-fades */
  will-change: opacity, transform;
  transform: translateZ(0);
}

/* 3) re-enable “fixed” on pointer/fine (desktop) for that parallax lock */
@media (hover: hover) and (pointer: fine) {
  .showcase-bg-layer {
    background-attachment: fixed;
  }
}

/* keep your cross-fade logic exactly as before */
.showcase-bg-layer.active {
  opacity: 1;
}

.showcase-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-content {
    text-align: center;
    color: #f3d6a4;
    max-width: 90%;
    padding: 1rem;
}

.showcase-header {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #dfae57; /* Unified gold header color */
  text-align: center;
  margin-bottom: 1rem;
}


.showcase-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.showcase-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #FFD700; /* Matches navbar buttons */
    color: #e0e0e0; /* Matches navbar button text */
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.showcase-button:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: scale(1.05);
}

/* ========================================================================= */
/* 🔥 FIRE PHOENIX 888 — MINI EVENTS SECTION STYLES — CUSTOM BLOCK BELOW 🔥 */
/* ========================================================================= */

.mini-events-section {
    width: 100%;
    background: #000 url('images/background-events.jpg') center center / cover no-repeat;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: scroll; /* optional: use 'fixed' if you want parallax */
}


.mini-events-content {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    gap: 4rem;
}

.mini-events-text {
    color: #fff;
    max-width: 600px;
}

.mini-events-title {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #dfae57; /* Unified gold header color */
  text-align: left;
  margin-bottom: 1rem;
}

.mini-events-body {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.mini-events-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #FFD700;
    color: #e0e0e0;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.mini-events-button:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: scale(1.05);
}

.mini-events-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-event-card {
    position: relative;
    width: 380px;
    height: 500px;
    background-size: cover;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mini-event-card:hover {
    transform: scale(1.03);
    border-color: #FFD700;
}



/* ========================================================================== */
/* 🔥 FIRE PHOENIX 888 — MINI ABOUT SECTION STYLES — IGNITE STORY BELOW 🔥 */
/* ========================================================================== */

.about-section {
  position: relative;
  width: 100%;
  background-color: #0a0a0a;
  background-image: url('images/backgroundaboutback.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.about-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid #dfae57;
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 1;
}

.about-image {
  flex: 1;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-align: left;
}

.about-content .section-header {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #dfae57; /* Unified golden hue */
  margin-bottom: 1rem;
  text-align: left;
}

.about-paragraph {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-button {
  display: inline-block;
  padding: 0.6rem 1.2rem; /* Slightly refined padding */
  border: 1px solid #FFD700;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.5rem;
  text-decoration: none;
  background: transparent;
  width: fit-content;     /* ← Force width to match text+padding */
  max-width: 100%;        /* ← Prevent overflow */
  white-space: nowrap;    /* ← Prevents word wrap that could add height/width */
  box-sizing: border-box; /* ← Prevents padding from expanding width */
}

.about-button:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: scale(1.05);
}


/* ========================================================================= */
/* 📸 MINI GALLERY SECTION – FIRE PHOENIX 888                                */
/* ========================================================================= */
.mini-gallery-section {
  width: 100vw;
  background:
    linear-gradient(to bottom, #0a0a0a 0%, #141414 100%),
    url('images/background-gallery.jpg') center center / cover no-repeat;
  background-blend-mode: overlay;
  padding: 6vh 4vw;
  box-sizing: border-box;
}


.mini-gallery-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3vw;
}

.mini-gallery-left {
  flex: 1 1 200px;
  max-width: 400px;
    text-align:center;
}

.mini-gallery-header {
  font-size: 3.2rem;
  color: #dfae57; /* Unified gold header color */
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.mini-gallery-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.mini-gallery-button {
  display: inline-block;
  padding: 0.6rem 1.2rem; /* Slightly refined padding */
  border: 1px solid #FFD700;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.5rem;
  text-decoration: none;
  background: transparent;
  width: fit-content;     /* ← Force width to match text+padding */
  max-width: 100%;        /* ← Prevent overflow */
  white-space: nowrap;    /* ← Prevents word wrap that could add height/width */
  box-sizing: border-box; /* ← Prevents padding from expanding width */
}

.mini-gallery-button:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: scale(1.05);
}

.mini-gallery-right {
  flex: 3 1 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  justify-content: flex-start;
}

.mini-gallery-image {
  flex: 1 1 calc(25% - 1.2vw);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #000;
  border-radius: 10px;
      transition: transform 0.3s ease;
}

.mini-gallery-image:hover {
  border: 1px solid #FFD700;
      transform: scale(1.03);
}

.mini-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ========================================================================= */
/* 📱 MINI GALLERY MOBILE STYLES — Optimized for screens ≤768px             */
/* ========================================================================= */
@media (max-width: 768px) {
  .mini-gallery-section {
    padding: 5vh 5vw;
    background-position: center top;
    background-size: cover;
    text-align: center;
  }

  .mini-gallery-container {
    flex-direction: column;
    align-items: center;
    gap: 4vh;
  }

  .mini-gallery-left {
    max-width: 100%;
  }

  .mini-gallery-header {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .mini-gallery-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .mini-gallery-button {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.06em;
  }

  .mini-gallery-right {
    width: 100%;
    justify-content: center;
    gap: 3vw;
  }

  .mini-gallery-image {
    flex: 0 0 45%;
    max-width: 45%;
    aspect-ratio: 3 / 4;
  }

  .mini-gallery-image img {
    object-fit: cover;
  }
}






/* 🔥 Contact Section */
.contact-section {
  width: 100%;
  background-color: #0c0c0c;
  padding: 6vh 5vw;
}

.contact-headline {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #dfae57; /* Unified golden header tone */
  margin-bottom: 2rem;
  text-align: center;
}

.contact-container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  background: url('images/contactflare.jpg') no-repeat center center;
  background-size: 50%;
}

.contact-form {
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid #FFD700;
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.contact-form button {
  background: linear-gradient(to right, #fcb045, #fd1d1d);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* 🔥 Right side background and content */
.contact-right {
  flex: 1;
  min-width: 300px;
  background: url('images/contactsmoke.jpg') no-repeat right center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
    border: 1px solid #FFD700;
}

.contact-info-wrapper {
  text-align: center;
  padding: 1rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: #f3d6a4;
}

.contact-info li {
  margin-bottom: 1rem;
}

.contact-info i {
  color: #FFD700;
  margin-right: 0.5rem;
}

.contact-logo {
  height: 100px; /* Previously 60px */
  max-width: 200px;
  margin: 2rem auto 0 auto;
  display: block;
}

/* ========================================================================= */
/* 🔥 FIRE PHOENIX 888 — FOOTER SECTION STYLES — FINALIZED 🔥 */
/* ========================================================================= */

.footer-section {
  position: relative;
  width: 100%;
  background: url('images/footer-bg.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 6vh 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.75); /* Adjust for subtlety */
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: #f3d6a4;
  font-family: 'Georgia', serif;
}

/* Logo */
.footer-logo {
  height: 240px;
  max-width: 440px;
  margin: 0 auto 1rem auto;
  display: block;
}

/* Brand Title */
.footer-brand {
  font-size: 1.7rem;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #dfae57; /* Unified golden header tone */
  text-align: center;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.footer-contact-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-contact-list i {
  color: #FFD700;
  margin-right: 0.6rem;
}

.footer-contact-list a {
  color: #dfae57;
  text-decoration: underline;
}

/* Copyright */
.copyright {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}
