﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1A1F2C;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.layout-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.layout-logo-img {
    width: 85px;
}

/* Buttons */
.layout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}

.layout-btn-primary {
    background-color: #00b8a9;
    color: white;
    border-radius: 9999px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

    .layout-btn-primary:hover {
        background-color: rgba(0, 184, 169, 0.9);
    }

.layout-btn-ghost {
    background-color: transparent;
    color: #d1d5db;
}

    .layout-btn-ghost:hover {
        background-color: #2A303C;
        color: white;
    }

.layout-btn-outline {
    border: 1px solid #00b8a9;
    color: #00b8a9;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
}

    .layout-btn-outline:hover {
        background-color: rgba(255, 0, 102, 0.05);
    }

.layout-btn-cta {
    background-color: #00b8a9;
    color: white;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

    .btn-cta:hover {
        background-color: rgba(255, 0, 102, 0.9);
    }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #1C1C1C;
    color: #ffffff;
}

    .navbar .layout-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
}

.layout-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.layout-logo-circle {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background-color: #00b8a9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.layout-logo-text {
    font-weight: 700;
    font-size: 1.125rem;
}

.main-nav {
    display: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
}

    .nav-link:hover {
        color: #00b8a9;
    }

.search-box {
    position: relative;
    display: none;
}

    .search-box input {
        padding: 0.5rem 1rem 0.5rem 2.25rem !important;
        width: 16rem !important;
        border-radius: 9999px !important;
        background-color: #2A303C !important;
        border: none !important;
        color: white !important;
    }

        .search-box input:focus {
            outline: none !important;
            box-shadow: 0 0 0 2px #00b8a9 !important;
        }

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;

}

/* Footer */
.footer {
    background-color: #1C1C1C;
    color: white;
    padding: 2rem 0;
    width: 100%;
    flex-shrink: 0;
    width: 100vw;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #9ca3af;
    transition: all 0.3s ease;
}

    .footer-link:hover {
        color: white;
    }

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Media Queries */
@media (min-width: 768px) {
    .main-nav {
        display: flex;
        margin-left: 2rem;
    }

    .search-box {
        display: flex;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
