/* ============================================
   MODERN STYLES CSS
   Replacement for deprecated <font> tags and inline styles
   Georgian Computer Society Website
   ============================================ */

/* === BASE TYPOGRAPHY === */
body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

/* === TEXT COLORS === */
.text-orange {
    color: #FF6600;
}

.text-blue {
    color: #000099;
}

.text-dark-blue {
    color: #000066;
}

.text-darker-blue {
    color: #000033;
}

.text-light-blue {
    color: #BBDDFF;
}

.text-gold {
    color: #FFCC00;
}

.text-red {
    color: #FF0000;
}

.text-green {
    color: #009900;
}

.text-black {
    color: #000000;
}

.text-white {
    color: #FFFFFF;
}

/* === FONT SIZES === */
.text-xs {
    font-size: 10px;
}

.text-sm {
    font-size: 12px;
}

.text-base {
    font-size: 14px;
}

.text-md {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 20px;
}

.text-2xl {
    font-size: 24px;
}

.text-3xl {
    font-size: 32px;
}

/* Legacy font size mappings */
.font-size-1 {
    font-size: 12px;
}

.font-size-2 {
    font-size: 14px;
}

.font-size-3 {
    font-size: 16px;
}

.font-size-4 {
    font-size: 18px;
}

.font-size-5 {
    font-size: 20px;
}

.font-size-6 {
    font-size: 24px;
}

/* === FONT WEIGHTS === */
.font-normal {
    font-weight: normal;
}

.font-bold {
    font-weight: bold;
}

.font-bolder {
    font-weight: bolder;
}

.font-light {
    font-weight: 300;
}

/* === TEXT ALIGNMENT === */
.text-left {
    text-align: left;
}

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

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

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

/* === COMMON COMBINATIONS === */
.menu-label {
    color: #FF6600;
    font-size: 14px;
    font-weight: normal;
}

.menu-arrow {
    color: #FF6600;
    font-size: 14px;
}

.menu-link {
    font-size: 12px;
    color: inherit;
    text-decoration: underline;
}

.content-heading {
    color: #000099;
    font-size: 16px;
    font-weight: bold;
}

.content-text {
    color: #000099;
    font-size: 14px;
}

.small-text {
    font-size: 12px;
}

.tiny-text {
    font-size: 10px;
}

.sidebar-title {
    color: #FF6600;
    font-size: 14px;
    font-weight: normal;
}

.sidebar-text {
    font-size: 12px;
}

.site-map-heading {
    color: #000066;
    font-size: 14px;
}

.site-map-links {
    color: #000066;
    font-size: 12px;
}

.copyright-text {
    font-size: 12px;
    color: #666666;
}

/* === BACKGROUND COLORS === */
.bg-light-blue {
    background-color: #BBDDFF;
}

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

.bg-yellow {
    background-color: #FFCC00;
}

.bg-orange {
    background-color: #FF6600;
}

.bg-dark-blue {
    background-color: #003366;
}

.bg-transparent {
    background-color: transparent;
}

/* === BORDERS === */
.border-gold {
    border: 2px solid #FFCC00;
}

.border-blue {
    border: 2px solid #0066cc;
}

.border-orange {
    border: 2px solid #FF6600;
}

.border-none {
    border: none;
}

.border-thin {
    border: 1px solid;
}

.border-thick {
    border: 2px solid;
}

/* === PADDING & SPACING === */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 4px;
}

.p-2 {
    padding: 8px;
}

.p-3 {
    padding: 12px;
}

.p-4 {
    padding: 16px;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 4px;
}

.m-2 {
    margin: 8px;
}

.m-3 {
    margin: 12px;
}

.m-4 {
    margin: 16px;
}

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

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mt-1 {
    margin-top: 4px;
}

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

.mt-3 {
    margin-top: 12px;
}

/* === DISPLAY === */
.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

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

.d-none {
    display: none;
}

/* === SEMANTIC ELEMENTS === */
h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    margin: 10px 0;
}

h1 {
    font-size: 32px;
    color: #000099;
}

h2 {
    font-size: 24px;
    color: #000099;
}

h3 {
    font-size: 20px;
    color: #000099;
}

h4 {
    font-size: 18px;
    color: #000099;
}

h5 {
    font-size: 16px;
    color: #000099;
}

h6 {
    font-size: 14px;
    color: #000099;
}

strong, b {
    font-weight: bold;
}

em, i {
    font-style: italic;
}

/* === LINKS === */
a {
    color: #FF6600;
    text-decoration: underline;
}

a:hover {
    color: #993300;
    font-weight: normal;
}

a:visited {
    color: #CC6600;
}

a:active {
    color: #FF0000;
}

/* === TABLES === */
table {
    border-collapse: collapse;
    max-width: 100%;
}

td, th {
    vertical-align: top;
}

/* Table with border */
.table-bordered {
    border: 2px solid #FFCC00;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #FFCC00;
}

/* === MENU STYLES === */
.menu-container {
    background-color: #BBDDFF;
    border: 2px solid #FFCC00;
    padding: 8px;
}

.menu-item {
    padding: 8px 12px;
    background-color: #BBDDFF;
    border: 2px solid #FFCC00;
    margin-bottom: 4px;
}

.menu-item a {
    font-size: 12px;
    color: #FF6600;
    text-decoration: underline;
}

.menu-header {
    background-color: #BBDDFF;
    border: 2px solid #FFCC00;
    text-align: center;
    padding: 4px;
}

.menu-header span {
    color: #FF6600;
    font-size: 14px;
}

/* === PROJECT BOX STYLES === */
.project-box {
    background-color: #BBDDFF;
    border: 2px solid #FFCC00;
    padding: 8px;
    margin-bottom: 10px;
}

.project-box-title {
    color: #FF6600;
    font-size: 14px;
    font-weight: bold;
}

.project-box-text {
    font-size: 12px;
    line-height: 1.5;
}

/* === CONTENT BLOCKS === */
.content-block {
    padding: 15px;
    background-color: #FFFFFF;
}

.blockquote-content {
    margin: 20px;
    padding: 10px;
}

/* === UTILITY CLASSES === */
.no-wrap {
    white-space: nowrap;
}

.break-word {
    word-wrap: break-word;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-both {
    clear: both;
}

/* === VERTICAL ALIGNMENT === */
.valign-top {
    vertical-align: top;
}

.valign-middle {
    vertical-align: middle;
}

.valign-bottom {
    vertical-align: bottom;
}

/* === WIDTH UTILITIES === */
.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

.max-w-full {
    max-width: 100%;
}

/* === LANGUAGE SELECTOR === */
.language-selector {
    background-color: #BBDDFF;
    border: 2px solid #FFCC00;
    padding: 6px;
    text-align: center;
}

.language-label {
    color: #FF6600;
    font-size: 12px;
}

/* === FOOTER === */
.footer-text {
    font-size: 12px;
    color: #666666;
    text-align: right;
}

.footer-link {
    font-size: 12px;
    color: #FF6600;
}

/* === SITE MAP === */
.sitemap-container {
    text-align: center;
    padding: 10px;
}

.sitemap-heading {
    color: #000066;
    font-size: 14px;
}

.sitemap-links {
    color: #000066;
    font-size: 12px;
}

.sitemap-section {
    font-size: 14px;
    font-weight: bold;
}

/* === SPECIAL CHARACTERS === */
.arrow-right::before {
    content: "» ";
}

.bullet::before {
    content: "• ";
}

/* === RESPONSIVE TYPOGRAPHY === */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .font-size-1,
    .text-xs,
    .text-sm,
    .tiny-text,
    .small-text {
        font-size: 14px !important;
    }

    .font-size-2,
    .text-base {
        font-size: 16px !important;
    }

    .menu-link,
    .sidebar-text,
    .project-box-text {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }
}

/* === PRINT STYLES === */
@media print {
    .text-orange,
    .text-blue,
    .menu-label {
        color: #000000 !important;
    }

    a {
        color: #000000;
        text-decoration: underline;
    }
}
