@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    color: #e2e8f0;
    margin: 0;
    padding: 0;
}

/* Start NavBar */
.navbar {
    background-color: #1f2937;
    /* bg-gray-900 equivalent */
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-container {
    max-width: 80rem;
    /* 7xl equivalent */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .navbar-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .navbar-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    /* text-blue-400 equivalent */
}

.logo i {
    margin-right: 0.5rem;
}

.desktop-menu {
    display: none;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: block;
    }
}

.desktop-menu-items {
    display: flex;
    align-items: baseline;
    margin-left: 2.5rem;
    gap: 1rem;
}

.menu-item {
    position: relative;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.menu-item:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3b82f6;
}

.menu-item.active {
    background-color: #1e40af;
    /* active blue */
    color: white;
}

.menu-item.inactive {
    color: #d1d5db;
    /* text-gray-300 */
}

.menu-item.inactive:hover {
    color: white;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.hamburger {
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 0.375rem;
    outline: none;
}

.hamburger:hover {
    color: white;
}

.hamburger:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.hamburger.active {
    transform: rotate(90deg);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 500px;
}

.mobile-menu-items {
    padding: 0.5rem 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-item {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
}

.mobile-menu-item.active {
    background-color: #1e40af;
    color: white;
}

.mobile-menu-item.inactive {
    color: #d1d5db;
}

.mobile-menu-item.inactive:hover {
    color: white;
    background-color: #374151;
}
/* End NavBar */


/* Start Home Section */
.hero-content-info h2 {
    font-size: 1.5rem;
}

.hero-pattern {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid #3b82f6;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #3b82f6;
    }
}

.profile-image {
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
}

.image-container {
    position: relative;
    display: block;
}

/* End Home Section */