@charset "UTF-8";

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Logo Styling */
.logo a {
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

/* Nav Link Styling */
.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: 20px;
}

.nav-link:hover {
    color: #007bff !important; /* Adjust this color to match your branding */
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0E1E2F 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    /* This allows the nav and text to stack vertically */
    display: flex;
    flex-direction: column;
}

.flex-grow-1 {
    /* This pushes the main content to fill the remaining space */
    flex-grow: 1;
}

/* Ensure nav links look correct without extra top margin */
header .nav-link {
    padding: 0.5rem 1rem;
}

#work {
    background-color: #00223e; /* Adjust to match your specific dark blue hex */
}

.project-card {
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.project-card img {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers area without distortion */
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card:hover img {
    opacity: 0.8;
}

/* Typography and Spacing */
.tracking-widest {
    letter-spacing: 0.5em;
    font-size: 0.8rem;
}

/* Horizontal Scroll Container */
.no-scrollbar::-webkit-scrollbar {
    display: none; /* Hides scrollbar for Chrome/Safari */
}
.no-scrollbar {
    -ms-overflow-style: none;  /* Hides scrollbar for IE/Edge */
    scrollbar-width: none;  /* Hides scrollbar for Firefox */
    scroll-snap-type: x mandatory;
}

.portfolio-slider {
    width: 100%;
    max-width: 1200px;
}

.portfolio-item {
    flex: 0 0 auto;
    width: 350px; /* Adjust based on how many you want visible at once */
    height: 450px;
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Optional: Matches the moody look of image 2 */
    transition: filter 0.4s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-item:hover img {
    filter: grayscale(0%); /* Brings color back on hover */
}

.portfolio-title {
    font-weight: 700;
    letter-spacing: 2px;
}


