@font-face {
    font-family: "Roboto";
    src: url('../assets/fonts/Roboto/Roboto-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fallback font stack for better compatibility */
@font-face {
    font-family: "Roboto";
    src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc4.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
}

body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: normal;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
}

p {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 300;
}

img {
    width: 80%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* NAVIGATION BAR */
.navbar {
    background-color: #eeeeee;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #ff5312;
    text-decoration-line: underline;
    transform: translateY(-2px);
}

.r-align {
    display: flex;
    gap: 0;
    padding-right: 2rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: normal;
}

.homePage {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: normal;
    padding-left: 2rem;
}

/* BUTTONS */
button {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    border-radius: 15px;
    padding: 0.8rem 1.2rem;
    border: 2px solid #ff5312;
    background-color: #ff5312;
    box-shadow: none;
    color: white;
    text-align: center;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transform: translateY(0);
}

button:hover {
    background-color: #f4f4f4;
    color: #ff5312;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 83, 18, 0.2);
}

.primaryButton {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-lg {
    width: auto !important;
    max-width: 180px;
    padding: 0.8rem 1rem;
    align-self: center;
}

/* ANIMATIONS */
.cursor {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* FOOTER */
.footer {
    color: white;
    background-color: #2a2a2a;
    padding: 0.375rem 1.5rem 0.25rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.25rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto 0.3rem;
}

.footer-brand {
    align-self: center;
    margin-right: 5rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.15rem;
    margin: 0 0 0.375rem;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #ccc;
    margin: 0 0 0.25rem;
}

.footer-meta {
    font-size: 0.75rem;
    color: #888;
}

.footer-col {
    padding-top: 2rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin: 0 0 0.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin: 0.225rem 0;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ff5312;
}

.footer-col a.copied,
.footer-col a.copied:hover {
    color: #4ade80;
}

.footer-col svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 0.3rem;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* RESPONSIVE DESIGN - MOBILE */
@media screen and (max-width: 768px) {
    .navbar {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background-color: #eeeeee !important;
        padding: 15px 0 !important;
        text-align: center !important;
        z-index: 1000 !important;
    }

    .homePage {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
    }

    .homePage a {
        display: block !important;
        text-align: center !important;
        padding: 8px 0 !important;
        margin: 0 !important;
    }

    .r-align {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .r-align a {
        display: inline-block !important;
        padding: 8px 12px !important;
        margin: 0 4px !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }

    .footer {
        padding: 2.5rem 1.25rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 12px 0 !important;
    }

    .homePage {
        margin-bottom: 8px !important;
    }

    .r-align a {
        padding: 6px 10px !important;
        font-size: 0.85rem !important;
        margin: 0 2px !important;
    }
}