@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --teal: #3AAFA9;
  --dark-gray: #17252A;
  --light-yellow: #ffdc2c;
  --hover-yellow: #ffda79;
  --white: #FEFFFF;
}

/* Global Styles */
body {
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Header Spacing and Element Layout */
.header-left {
  display: flex;
  align-items: center;
  gap: 3rem; /* Space between logo and navigation */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem; /* Space between buttons on the right */
}

/* Navigation Links */
.nav-link {
  padding: 0.5rem 1rem; /* Padding for better click targets */
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--teal); /* Teal color on hover */
}

/* Section Spacing */
.section-spacing {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

/* Utility Classes */
.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
  border-radius: 1rem;
}


.rounded-b-lg {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.rounded-t-lg {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}


/*
    Start
    Styles for allowed HTML tags inside content-section
*/
.content-section h1 {
    font-size: 2.25rem; /* Adjust this value based on your preference */
    font-weight: bold;
}

.content-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.content-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
}

.content-section h5 {
    font-size: 1rem;
    font-weight: bold;
}

.content-section h6 {
    font-size: 0.875rem;
    font-weight: bold;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: inherit; /* Set a default size if needed */
    line-height: 1.5;
}

.content-section a {
    color: blue; /* Or any other styling */
    text-decoration: underline;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Additional styles for other allowed tags */
.content-section blockquote {
    margin-left: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #ccc;
}

.content-section code, .content-section pre {
    background-color: #f4f4f4;
    padding: 0.5rem;
    border-radius: 5px;
    font-family: monospace;
}
/*
    End
    Styles for allowed HTML tags inside content-section
*/
