/* ========================================
   AZONNE Website - Apple-Inspired Design
   Minimalist, Clean & Elegant
   ======================================== */

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: 'Trebuchet MS', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==================== Color Palette ==================== */
:root {
    --primary-red: #e60013;
    --red-dark: #c70010;
    --gray-900: #1a1a1a;
    --gray-800: #333;
    --gray-700: #555;
    --gray-600: #666;
    --gray-500: #888;
    --gray-400: #aaa;
    --gray-300: #d3d3d3;
    --gray-200: #e8e8e8;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    --text-primary: #1d1d1d;
    --text-secondary: #666666;
    --border-color: #d3d3d3;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h2 {
    font-size: 3.2rem;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 2.4rem;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

p {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1.1rem;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--red-dark);
}

/* ==================== Page Container ==================== */
.page-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--white);
    overflow: hidden;
}

/* ==================== Header & Navigation ==================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 4px solid var(--primary-red);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo & Brand */
.sitelogo {
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
}

.sitelogo a, .sitelogo img {
    display: block;
    width: 100%;
    height: auto;
}

.sitename {
    flex-shrink: 0;
}

.sitename h1 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.sitename h2 {
    font-size: 0.85rem;
    margin: 0.2rem 0 0 0;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation - Centered */
.nav1 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav1 ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    margin: 0;
}

.nav1 li {
    position: relative;
    margin: 0;
}

.nav1 a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
    border: none;
}

.nav1 a:hover {
    color: var(--primary-red);
    text-decoration: none;
    background: transparent;
}

.nav1 a.active {
    color: var(--primary-red);
}

.nav1 a img {
    display: none;
}

/* Hide unnecessary elements */
.nav0, .nav2, .header-bottom, .header-breadcrumbs {
    display: none !important;
}

/* ==================== Hero Section ==================== */
.header-middle {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.95) 0%, rgba(195, 207, 226, 0.95) 100%);
    padding: 6rem 1.5rem;
    text-align: center;
    border: none;
    margin: 0;
    border-radius: 0;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.header-title {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.header-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

/* ==================== Main Content ==================== */
.main {
    max-width: 100%;
    padding: 0;
    background: transparent;
    margin: 0;
}

.main-navigation {
    display: none !important;
}

.main-content {
    width: 100%;
    max-width: 100%;
    padding: 4rem 1.5rem;
    margin: 0;
    background: transparent;
    border-radius: 20px;
}

.main-subcontent {
    display: none !important;
}

/* Content Wrapper */
.main-content-wrapper {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

/* ==================== Content Styling ==================== */
.main-content h1 {
    font-size: 3.2rem;
    margin: 4rem 0 1rem;
    padding: 0;
    border: none;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.main-content h1:first-child {
    margin-top: 0;
}

.main-content h1.pagetitle {
    border: none;
    font-size: 3rem;
}

.main-content h2 {
    font-size: 2.4rem;
    margin: 3rem 0 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.015em;
}

.main-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

.main-content ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.main-content ul li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.main-content ul li:before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 1.2rem;
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-item {
    padding: 2rem 0;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==================== Left-Right Layout ==================== */
.layout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 16px;
    border-top: 5px solid var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.layout-row.reverse {
    direction: rtl;
}

.layout-row.reverse > * {
    direction: ltr;
}

.layout-row:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(230, 0, 19, 0.15);
}

.layout-left, .layout-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.layout-left h2, .layout-right h2 {
    margin-top: 0;
}

.layout-left p, .layout-right p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.layout-left ul, .layout-right ul {
    margin: 1.5rem 0;
}

/* ==================== Image Styling & Animations ==================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Image Animation: Zoom */
.img-zoom:hover img {
    transform: scale(1.08);
}

/* Image Animation: Tilt */
.img-tilt:hover img {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Image Animation: Fade & Scale */
.img-fade-scale img {
    animation: fadeInScale 1s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image floating animation */
.img-float img {
    animation: floatingImage 6s ease-in-out infinite;
}

@keyframes floatingImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Image shadow on hover */
.img-shadow:hover {
    box-shadow: 0 20px 60px rgba(230, 0, 19, 0.2);
}

/* Image with gradient overlay */
.img-overlay {
    position: relative;
}

.img-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 0, 19, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.img-overlay:hover::before {
    opacity: 1;
}

/* Image with border */
.img-bordered {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 8px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.img-bordered:hover {
    border-color: var(--primary-red);
}

/* Image with accent line */
.img-accent {
    position: relative;
    padding-left: 2rem;
}

.img-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* Side-by-side images */
.img-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.img-group-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.img-group-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-group-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(230, 0, 19, 0.15);
}

.img-group-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1);
}

/* Icon/Image badge */
.img-badge {
    position: relative;
    display: inline-block;
}

.img-badge img {
    max-width: 100%;
    height: auto;
}

.badge-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.img-badge:hover .badge-label {
    opacity: 1;
    transform: translateY(0);
}

/* Cards - Apple Style */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.two-column > div {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 16px;
    border-top: 5px solid var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.two-column > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(230, 0, 19, 0.15);
}

.two-column h2 {
    margin-top: 0;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.three-column > div {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 16px;
    border-top: 5px solid var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.three-column > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(230, 0, 19, 0.15);
}

.three-column h3 {
    margin-top: 0;
    color: var(--primary-red);
}

/* ==================== Tables ==================== */
.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    border: 1px solid rgba(230, 0, 19, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.main-content table thead {
    background: linear-gradient(135deg, #e60013 0%, #c70010 100%);
    border-bottom: 2px solid var(--primary-red);
}

.main-content table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.main-content table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(230, 0, 19, 0.1);
    color: var(--text-primary);
}

.main-content table tbody tr:last-child td {
    border-bottom: none;
}

.main-content table tbody tr:hover {
    background: rgba(230, 0, 19, 0.03);
}

/* ==================== Contact Form ==================== */
.contactform {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(230, 0, 19, 0.2);
    border-top: 5px solid var(--primary-red);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contactform fieldset {
    border: none;
    padding: 0;
    margin: 1.5rem 0;
    background: transparent;
}

.contactform fieldset legend {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    padding: 0;
    margin-bottom: 1.5rem;
}

.contactform label.left {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.contactform input.field,
.contactform textarea,
.contactform select.combo {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.1rem;
    background: var(--white);
    transition: border-color 0.2s ease;
    margin-bottom: 1.5rem;
}

.contactform input.field:focus,
.contactform textarea:focus,
.contactform select.combo:focus {
    outline: none;
    border-color: var(--primary-red);
}

.contactform textarea {
    min-height: 140px;
    resize: vertical;
    margin-bottom: 1.5rem;
}

.contactform input.button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 980px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.contactform input.button:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 980px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(230, 0, 19, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 0, 19, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--primary-red);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(80, 80, 80, 0.95) 100%);
    border-top: 4px solid var(--primary-red);
    padding: 3rem 1.5rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 1.5rem;
    color: #999;
    font-size: 1rem;
}

.footer p {
    color: #999;
    font-size: 1rem;
}

.footer strong {
    color: var(--primary-red);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .three-column {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .layout-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .layout-row.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 1rem 1rem;
    }

    .header-top {
        gap: 1rem;
    }

    .sitelogo {
        max-width: 100px;
    }

    .sitename h1 {
        font-size: 1.4rem;
    }

    .sitename h2 {
        font-size: 0.8rem;
    }

    .nav1 {
        flex: none;
        margin-left: auto;
    }

    .nav1 ul {
        gap: 0;
    }

    .nav1 a {
        padding: 0.5rem 0.8rem;
        font-size: 1.1rem;
    }

    .header-middle {
        padding: 3rem 1rem;
    }

    .header-title {
        font-size: 2.2rem;
    }

    .header-subtitle {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .main-content h1 {
        font-size: 2rem;
        margin: 2rem 0 0.8rem;
    }

    .main-content h2 {
        font-size: 1.6rem;
        margin: 1.5rem 0 0.6rem;
    }

    .main-content h3 {
        font-size: 1.3rem;
        margin: 1rem 0 0.5rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .three-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .layout-row {
        gap: 1.5rem;
    }

    .img-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .img-group-item img {
        height: 200px;
    }

    .feature-grid {
        gap: 2rem;
    }

    .footer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .page-container {
        width: 100vw;
    }

    .header-top {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .sitelogo {
        max-width: 80px;
        order: 1;
    }

    .sitename {
        order: 2;
    }

    .nav1 {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 0.8rem;
    }

    .nav1 ul {
        flex-wrap: wrap;
        gap: 0;
    }

    .nav1 a {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }

    .header-middle {
        padding: 2rem 1rem;
    }

    .header-title {
        font-size: 1.6rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .main-content {
        padding: 1.5rem 1rem;
    }

    .main-content h1 {
        font-size: 1.6rem;
    }

    .main-content h2 {
        font-size: 1.3rem;
    }

    .layout-row {
        gap: 1rem;
    }

    .img-group {
        grid-template-columns: 1fr;
    }

    .img-group-item img {
        height: 150px;
    }

    .main-content table {
        font-size: 0.9rem;
    }

    .main-content table th,
    .main-content table td {
        padding: 0.6rem;
    }

    .contactform {
        padding: 1.5rem 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 1.5rem 1rem;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

/* Stagger animation for layout rows */
.layout-row {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.layout-row:nth-of-type(2) {
    animation-delay: 0.1s;
}

.layout-row:nth-of-type(3) {
    animation-delay: 0.2s;
}

/* Text reveal animation */
@keyframes textReveal {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.layout-left h2, .layout-right h2 {
    animation: textReveal 0.8s ease forwards;
}

/* Accent line animation */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.img-accent::before {
    animation: slideInLeft 0.6s ease forwards;
}

/* ==================== Print Styles ==================== */
@media print {
    body {
        background: var(--white);
    }

    .header {
        position: static;
        background: transparent;
        border: none;
    }

    a {
        text-decoration: underline;
    }
}

/* ==================== Utility Classes ==================== */
.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.clear-both {
    clear: both;
}

/* ==================== Accessibility ==================== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}
