@import url('./fonts/Srbija Sans.css');

/* CSS Variables */
:root {
    /* Base Colors */
    --color-white: #ffffff;
    --color-black: #000000;

    /* MS (Education) Theme Colors */
    --ms-primary: #1a00f3;
    --ms-secondary: #262185;
    --ms-text: var(--color-white);
    --ms-hover: var(--color-white);

    /* MSPR (Repression) Theme Colors */
    --mspr-primary: #72bf44;
    --mspr-secondary: #4aa91c;
    --mspr-text: #104d32;
    --mspr-hover: #CFF54D;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
}

/* Main container */
.main-container {
    background: var(--color-white);
    display: flex;
    justify-content: center;
    width: 100%;
}

.content-wrapper {
    background: var(--color-white);
    width: 100%;
    max-width: 1440px;
    position: relative;
    min-height: 970px;
}

/* Logo styles */
.logo-wrapper {
    width: 100%;
    text-align: left;
    padding: 2rem 2rem 0;
}

.logo {
    width: 230px;
    height: 63px;
}

/* Header styles */
.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem 0;
    text-align: center;
}

.main-title {
    font-family: 'SrbijaSans', Helvetica, sans-serif;
    font-weight: normal;
    color: var(--color-black);
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 834px;
    margin-top: 3.5rem;
}

.main-description {
    max-width: 708px;
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-weight: normal;
    color: var(--color-black);
    font-size: 1.125rem;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Sections container */
.sections-container {
    display: flex;
    width: 100%;
    margin-top: 4rem;
}

/* Individual section styles */
.section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3.5rem;
    width: 100%;
}

.section-title {
    font-family: 'SrbijaSans', Helvetica, sans-serif;
    font-weight: normal;
    font-size: 3.5rem;
    line-height: 1.2;
}

.section-description {
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-weight: normal;
    font-size: 1.125rem;
    line-height: 1.2;
}

.section-button {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.18px;
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
}

.section-icon-wrapper {
    text-align: right;
}

.section-icon {
}

/* Education section specific styles */
.education-section {
    background-color: var(--ms-primary);
    color: var(--ms-text);
}

.education-section .section-title,
.education-section .section-description {
    color: var(--ms-text);
}

.ms-button {
    background-color: var(--ms-secondary);
    color: var(--ms-text);
    transition: background-color 0.2s ease;
}

.ms-button:hover {
    background-color: var(--ms-hover);
    color: var(--ms-primary);
}

.education-icon {
    width: 140px;
    height: 155px;
}

/* Repression section specific styles */
.repression-section {
    background-color: var(--mspr-primary);
    color: var(--mspr-text);
}

.repression-section .section-title,
.repression-section .section-description {
    color: var(--mspr-text);
}

.mspr-button {
    background-color: var(--mspr-secondary);
    color: var(--mspr-text);
    transition: background-color 0.2s ease;
}

.mspr-button:hover {
    background-color: var(--mspr-hover);
    color: var(--mspr-text);
}

.repression-icon {
    width: 165px;
    height: 155px;
}


/* Footer styles */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-weight: normal;
    color: var(--color-black);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-nav {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    color: #6c757d;
    font-size: 2rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--ms-primary);
    transform: scale(1.1);
}


/* Responsive design */
@media (max-width: 768px) {
    .logo-wrapper {
        padding: 1rem 1rem 0;
    }

    .logo {
        width: 180px;
        height: auto;
    }

    .header {
        padding: 1rem 1rem 2rem;
        min-height: auto;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .main-description {
        font-size: 1rem;
    }

    .sections-container {
        flex-direction: column;
        margin-top: 2rem;
    }

    .section {
        height: auto;
        min-height: auto;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-button {
        margin-top: 0;
    }

    /* Footer responsive styles */
    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 1.5rem;
    }

    /* Footer responsive styles */
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-text {
        font-size: 0.875rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        font-size: 1.5rem;
    }
}
