/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box
}
/* Typography & Layout */
html {
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  scroll-padding-top: 100px;
  scrollbar-width: thin;
  cursor: crosshair
}
/* Body Styles */
body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000000
}


#pointer-dot {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border: 2.5px solid white;
    position: fixed;
    border-radius: 4px;
    z-index: 901;
    pointer-events: none;
    transition: border-color 0.4s;
}

#pointer-ring {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    padding: 14px;
    border: 2px solid #5f3b03;
    position: fixed;
    border-radius: 100px;
    z-index: 902;
    pointer-events: none;
}
   
h2, h4, h6, p {font-weight: 400; margin: 4px; padding: 4px}

/* Default styles */
h2 { font-size: 30px }
h4 { font-size: 24px }
h6 { font-size: 18px }

/* Adjust font sizes for smaller screens */
@media (max-width: 768px) {
    h2 { font-size: 26px } 
    h4 { font-size: 20px } 
    h6 { font-size: 16px } 
}

p { font-size: 16px; padding: 8px 4px }

.italic {font-style: italic; font-size: 20px}
.strike { text-decoration: line-through }
.wide { letter-spacing: 4px }

/* Font Families */
.serif {font-family: "Times New Roman", serif}
.sans-serif {font-family: "Ariel", sans-serif}
.monospace {font-family: "Courier New", monospace}

/* Text Alignment */
.text-left { text-align: left !important }
.text-right { text-align: right !important }
.text-center { text-align: center !important }
.text-justify { text-align: justify !important; word-spacing: 0.08em; font-size: 16px }

/* Text Sizes */
.text-12 { font-size: 12px !important }
.text-14 { font-size: 14px !important }
.text-16 { font-size: 16px !important }
.text-20 { font-size: 20px !important }
.text-24 { font-size: 24px !important }
.text-28 { font-size: 28px !important }

/* Images */
img { vertical-align: middle }
.img-border {border: 1px solid #ffffff}
.image,.img-responsive { max-width: 100%; height: auto; display: block }
.img-rounded { border-radius: 2px }
.img-circle { border-radius: 50% }
.img-center { display: block; margin: 0 auto }

/* Links & Buttons */
a {
  color: inherit;
  text-decoration: none
}
a:link, a:visited, a:hover, a:active {
  text-align: center;
  text-decoration: none
}
.button {
  display: inline-block;
  padding: 16px;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border: 1px solid #000000;
  border-radius: 2px;
  text-align: center;
  transition: background-color 0.4s ease, color 0.4s ease
}
.button:hover {
  color: #646464;
  background-color: #ffffff
}

/* Style for the unordered list */
.styled-list {
  text-align: left;
  list-style-type: none; /* Remove default bullets */
  padding: 0;
  margin: 0 /* Remove default margin */
}
.styled-list li {
  padding: 8px 0;
  font-size: 16px;
  color: #000000;
  position: relative;
  padding-left: 24px /* Space for custom bullet */
}
.styled-list li::before {
  content: "•"; /* Custom bullet character */
  color: #646464; /* Bullet color */
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%)
}

/* Social Media Bar */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px 0
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px; 
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #646464;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.4s ease 
}
/* Hover Effect */
.social-icon:hover {
    opacity: 0.4
}

/* Image Icon Styling */
.icon-img {
  width: 20px;       /* Keeps them small inside the 40px circle */
  height: auto;      /* Maintains aspect ratio (no squishing!) */
  display: block;    /* Fixes alignment quirks */
}

/* Modal-Text */
.modal-btn {
  width: 100%;
  padding: 16px;
  border: 1px solid #646464;
  border-radius: 2px;
  background: #fff;
  color: #000;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 16px 0;
  display: inline-block;
  text-decoration: none;
}
.modal-btn:hover,
.modal-btn:focus {
  color: #fff;
  background: #000;
}

/* Modal Styling */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.8s ease-in-out;
}
.modal.show {
  display: flex;
}

/* Remove borders, margins, and padding */
.modal,
.modal-overlay,
.modal-content {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(50, 50, 50, 0.8);
}

.modal-content {
  background: #fff;
  width: 80%;
  max-width: 1000px;
  position: relative;
  padding: 48px 24px;
  border-radius: 4px;
  overflow-y: auto;
  max-height: 90vh;
  margin-bottom: 24px;
}

.modal-close {
  font-size: 36px;
  position: absolute;
  right: 24px;
  top: 10px;
  color: inherit;
  text-decoration: none;
}


 details {
  border: 1px solid #000000; 
  border-radius: 4px;
  padding: 12px;
}

summary {
  cursor: pointer; 
  font-size: 24px;
  font-weight: 400;
}

details[open] summary::marker {
  color: #646464; /* Change color of the marker when expanded */
}

details[open] {
  background-color: #ffffff; /* Change background color when expanded */
}