/* Base Styling */
@font-face {
  font-family: "PlayfairDisplay";
  src: url("../fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PlayfairDisplayItalic";
  src: url("../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

body::-webkit-scrollbar {
  width: 0;
}

body {
  font-family: "PlayfairDisplay", serif;
  font-weight: 400;
  background: #ffffff;
}

h1 {
  font-weight: 900;
}

h2 {
  font-weight: 700;
}

p {
  font-weight: 300;
}

em {
  font-family: "PlayfairDisplayItalic", serif;
  font-style: italic;
  font-weight: 400;
}

a {
  text-decoration: none;
  transition: color 0.5s ease-in-out;
  color: #111111;
}

a:hover {
  color: orangered;
}

/* Header Section */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background-color: white;
  font-family: "PlayfairDisplay", serif;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-toggle,
.close-icon {
  cursor: pointer;
}

.menu-icon {
  height: 14px;
  width: auto;
}

/* Nav Overlay Styles */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "PlayfairDisplay", serif;
  transition: opacity 0.3s ease;
}

.nav-header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.close-icon img {
  height: 14px;
  width: auto;
}

.nav-overlay.hidden {
  display: none;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav-links li {
  margin: 24px 0;
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links span {
  font-size: 14px;
  color: #111111;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: orangered;
}

.nav-footer {
  position: absolute;
  bottom: 32px;
  font-size: 14px;
  color: #444;
}

/* Footer */
.footer-section {
  background-color: #111;
  color: #fff;
  padding: 6rem 2rem 2rem;
}

.footer-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.cta-button-wrapper {
  position: relative;
}

.cta-circle {
  background-color: #ff4a00;
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.cta-button-wrapper::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 140px;
  height: 140px;
  border: 1px solid #ff4a00;
  border-radius: 50%;
  z-index: 1;
}

.cta-text h2 {
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
}

.cta-text h2 span {
  color: #ff4a00;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4rem;
  gap: 3rem;
}

.footer-brand h3 {
  font-size: 2.5rem;
  line-height: 1;
  color: #ff4a00;
}

.footer-brand p {
  margin-top: 0.5rem;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-menu h4,
.footer-utility h4 {
  color: #ff4a00;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-menu ul,
.footer-utility ul {
  list-style: none;
  padding: 0;
}

.footer-menu li,
.footer-utility li {
  margin-bottom: 0.6rem;
}

.footer-menu a,
.footer-utility a {
  color: #eee;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-menu a:hover,
.footer-utility a:hover {
  color: #ff4a00;
}

.footer-bottom {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #222;
  padding-top: 2rem;
}

.footer-social {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-social:hover {
  color: #ff4a00;
}

.footer-bottom a.footer-powered {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a.footer-powered:hover {
  color: #ff4a00;
}
