@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #bb7000;
    --primary-hover: #a86600;
    --text-color: #ffffff;
    --border-color: #7e7e7e;
    --bg-dark: #292929;
    --text-secondary: #c2c2c2;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-image: url("images/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
}

.container {
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-section img {
    width: 11rem;
    border: solid 1px var(--border-color);
    border-radius: 1.5rem;
    padding: .5rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
    margin-left: 1rem;
    backface-visibility: hidden;
}

.left-section img:hover {
    transform: scale(1.05);
}

.right-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.right-section a {
    color: #000000;
    font-size: 1.8rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.right-section a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

hr {
    height: 2px;
    background-color: var(--border-color);
    border: none;
    margin: 2rem 0;
    box-shadow: 0 2px 5px #050505;
    width: 100%;
}

.head {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 700;
}


.Data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.397);
    border: solid;
    border-color: rgb(65, 64, 64);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
    border-radius: 2rem;
    margin: 5rem;
    padding: 1rem;
}
 
 .Files {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
    border: solid rgb(187, 112, 0);
    margin-top: 2rem;
 }




.utility-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.utility-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.folder-icon {
    font-size: 8rem;
    margin-right: 1rem;
}

.utility-item span {
    color: white;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    html {
        font-size: 56.25%;
    }
}

@media (max-width: 550px) {
    html {
        font-size: 50%;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    .left-section img {
        margin: 0 0 2rem 0;
    }

    .right-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
    }

    .right-section a {
        text-align: center;
        width: 100%;
        font-size: 200%;
    }

    .contact-info div {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-info div a {
        font-size: 1.6rem;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #ffffff;
        --border-color: #b4b4b4;
    }

    body {
        background-color: rgba(0, 0, 0, 0.9);
        background-blend-mode: multiply;
    }

    .right-section a {
        color: #ffffff;
    }

    .social-icons a {
        color: #ffffff;
    }
}