/* DevOps Portfolio Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --brand-dark: #0D0804;
    --brand-orange: #3c83f6;
    --brand-orange-bg: rgba(238,131,28,0.2);
    --brand-gray: #A1A1A1;
    --brand-border: #374151;
    --brand-yellow: #3c83f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--brand-dark);
    color: white;
    min-width: 1024px;
    line-height: 1.6;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-xl {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 6rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 1280px) {
    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Typography */
.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

@media (min-width: 1280px) {
    .xl\:text-5xl {
        font-size: 3rem;
    }
    
    .xl\:text-7xl {
        font-size: 4.5rem;
    }
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Spacing */
.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

/* Sizing */
.w-full {
    width: 100%;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.h-48 {
    height: 12rem;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

/* Display */
.hidden {
    display: none;
}

@media (min-width: 1280px) {
    .xl\:flex {
        display: flex;
    }
    
    .xl\:flex-row {
        flex-direction: row;
    }
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

/* Border Radius */
.rounded-full {
    border-radius: 9999px;
}

.rounded-2xl {
    border-radius: 1rem;
}

/* Opacity */
.opacity-30 {
    opacity: 0.3;
}

.bg-opacity-60 {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Transitions */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Hover Effects */
.hover\:text-orange-500:hover {
    color: #4486ef;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Shooting Stars Animation */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: shoot 3s linear infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
    animation: tail 3s linear infinite;
}

@keyframes shoot {
    0% {
        transform: translateX(-100px) translateY(-100px);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(100vh);
        opacity: 0;
    }
}


.shooting-star:nth-child(1)  { top: 3%;  left: 12%; animation-delay: 0s; }
.shooting-star:nth-child(2)  { top: 15%; left: 5%;  animation-delay: 0.2s; }
.shooting-star:nth-child(3)  { top: 8%;  left: 18%; animation-delay: 0.4s; }
.shooting-star:nth-child(4)  { top: 19%; left: 9%;  animation-delay: 0.6s; }
.shooting-star:nth-child(5)  { top: 6%;  left: 2%;  animation-delay: 0.8s; }
.shooting-star:nth-child(6)  { top: 11%; left: 14%; animation-delay: 1s; }
.shooting-star:nth-child(7)  { top: 17%; left: 7%;  animation-delay: 1.2s; }
.shooting-star:nth-child(8)  { top: 4%;  left: 19%; animation-delay: 1.4s; }
.shooting-star:nth-child(9)  { top: 13%; left: 10%; animation-delay: 1.6s; }
.shooting-star:nth-child(10) { top: 9%;  left: 16%; animation-delay: 1.8s; }
.shooting-star:nth-child(11) { top: 25%; left: 30%; animation-delay: 2s; }
.shooting-star:nth-child(12) { top: 40%; left: 55%; animation-delay: 2.2s; }
.shooting-star:nth-child(13) { top: 65%; left: 78%; animation-delay: 2.4s; }
.shooting-star:nth-child(14) { top: 90%; left: 45%; animation-delay: 2.6s; }
.shooting-star:nth-child(15) { top: 35%; left: 85%; animation-delay: 2.8s; }
.shooting-star:nth-child(16) { top: 70%; left: 25%; animation-delay: 3s; }
.shooting-star:nth-child(17) { top: 50%; left: 60%; animation-delay: 3.2s; }
.shooting-star:nth-child(18) { top: 80%; left: 92%; animation-delay: 3.4s; }
.shooting-star:nth-child(19) { top: 28%; left: 73%; animation-delay: 3.6s; }
.shooting-star:nth-child(20) { top: 95%; left: 40%; animation-delay: 3.8s; }


/* Component Styles */
.btn-primary {
    background-color: var(--brand-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background-color: rgba(238, 131, 28, 0.8);
}

.btn-primary.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--brand-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline:hover {
    background-color: var(--brand-border);
}

.btn-outline.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.card {
    background-color: var(--brand-dark);
    border-radius: 1.5rem;
    }

.card:hover {
    border-color: rgba(238, 131, 28, 0.5);
}

.tag {
    background-color: var(--brand-orange-bg);
    color: var(--brand-orange);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

.tech-tag {
    background-color: var(--brand-border);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

/* Navigation */
nav {
    padding: 1.5rem 3rem;
}

@media (min-width: 1280px) {
    nav {
        padding: 1.5rem 6rem;
    }
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 300;
}

nav a:hover {
    color: var(--brand-orange);
}

/* Sections */
section {
    padding: 5rem 3rem;
}

@media (min-width: 1280px) {
    section {
        padding: 5rem 6rem;
    }
}

.hero-section {
    padding: 8rem 3rem;
}

@media (min-width: 1280px) {
    .hero-section {
        padding: 8rem 6rem;
    }
}

/* Footer */
footer {
    padding: 2rem 3rem;
    border-top: 1px solid var(--brand-border);
}

@media (min-width: 1280px) {
    footer {
        padding: 2rem 6rem;
    }
}

footer a {
    color: var(--brand-gray);
    text-decoration: none;
}

footer a:hover {
    color: var(--brand-orange);
}

/* Color Utilities */
.text-brand-gray {
    color: var(--brand-gray);
}

.text-brand-orange {
    color: var(--brand-orange);
}

.bg-brand-orange-bg {
    background-color: var(--brand-orange-bg);
}

/* Responsive Utilities */
@media (min-width: 1280px) {
    .xl\:px-24 {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

/* Flex Wrap */
.flex-wrap {
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    color: white;
}