/* Reset and Base Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: inherit;
}

#navbar a {
  text-decoration: none;
  color: inherit;
}

/* Font Family */
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

/* Utility Classes - Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.h-full {
  height: 100%;
}

.min-h-\[50px\] {
  min-height: 50px;
}

.overflow-y-auto {
  overflow-y: auto;
}

.hidden {
  display: none;
}

.inline-block {
  display: inline-block;
}

/* Utility Classes - Spacing */
.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-8 {
  margin-top: 2rem;
}

.bottom-0 {
  bottom: 0;
}

/* Utility Classes - Colors */
.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #ffffff;
}

.bg-slate-100 {
  background-color: #f1f5f9;
}

.bg-slate-200 {
  background-color: #e2e8f0;
}

.bg-slate-300 {
  background-color: #cbd5e1;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

.text-slate-700 {
  color: #334155;
}

.text-slate-800 {
  color: #1e293b;
}

.text-sky-500 {
  color: #0ea5e9;
}

.text-sky-600 {
  color: #0284c7;
}

/* Utility Classes - Borders */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-2 {
  border-width: 2px;
  border-style: solid;
}

.border-4 {
  border-width: 4px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-style: solid;
}

.border-t-4 {
  border-top-width: 4px;
  border-style: solid;
}

.border-b-4 {
  border-bottom-width: 4px;
  border-style: solid;
}

.border-black {
  border-color: #000000;
}

.border-slate-500 {
  border-color: #64748b;
}

.border-slate-700 {
  border-color: #334155;
}

.border-slate-800 {
  border-color: #1e293b;
}

.border-stone-800 {
  border-color: #292524;
}

/* Utility Classes - Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

/* Custom text sizes from HTML */
.text-\[20px\] {
  font-size: 20px;
}

.text-\[25px\] {
  font-size: 25px;
}

@media (max-width: 450px) {
  .text-\[25px\] {
    font-size: 20px;
  }
}

.text-\[40px\] {
  font-size: 40px;
}

@media (max-width: 450px) {
  .text-\[40px\] {
    font-size: 28px;
  }
}

.text-center {
  text-align: center;
}

.underline {
  text-decoration-line: underline;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

/* Utility Classes - Effects */
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:cursor-pointer:hover {
  cursor: pointer;
}

.hover\:text-black:hover {
  color: #000000;
}

.hover\:bg-slate-300:hover {
  background-color: #cbd5e1;
}

/* Image styles */
.object-cover {
  object-fit: cover;
}

.w-\[90\%\] {
  width: 90%;
}

/* Specific component sizes */
.h-\[26px\] {
  height: 26px;
}

/* Component Overrides */
#navbar,
#navbar ul {
  height: auto;
  min-height: 50px;
}

#navbar li {
  height: auto;
  min-height: 50px;
}

#body-content {
  flex: 1;
}

#footer {
  height: auto;
  min-height: 26px;
  padding: 0.5rem 0;
  position: relative;
}

/* Custom Text Shadows from HTML style block */
.text-shadow-sm {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.text-shadow-md {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.text-shadow-lg {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}
.text-shadow-light-sm {
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}
.text-shadow-light-md {
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}
.text-shadow-light-lg {
  text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
/* sm: 640px */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:w-1\/5 {
    width: 20%;
  }

  .sm\:w-4\/5 {
    width: 80%;
  }

  .sm\:border-b-4 {
    border-bottom-width: 4px;
  }

  .sm\:border-r-0 {
    border-right-width: 0;
  }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:text-\[35px\] {
    font-size: 35px;
  }

  .lg\:text-\[50px\] {
    font-size: 50px;
  }

  .lg\:text-\[80px\] {
    font-size: 80px;
  }
}

/* xl: 1280px */
@media (min-width: 1280px) {
  .xl\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .xl\:text-\[45px\] {
    font-size: 45px;
  }
}

/* 2xl: 1536px */
@media (min-width: 1536px) {
  .2xl\:w-2\/5 {
    width: 40%;
  }

  .2xl\:w-3\/5 {
    width: 60%;
  }
}
