
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background-color: #0f1115;
    color: #e6e6e6;
}

header {
    background: linear-gradient(135deg, #1a1d24, #111318);
    padding: 50px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.4rem;
}

header p {
    margin-top: 10px;
    color: #b0b3c0;
}

h2 .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
    margin-right: 6px;
}

nav {
    text-align: center;
    padding: 15px;
    background-color: #0f1115;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #b0b3c0;
    font-weight: 500;
}

nav a:hover {
    color: white;
}

.container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.intro h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.intro p {
    color: #b0b3c0;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #161922;
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project-card h3 {
    margin: 10px 0 5px;
}

.project-card p {
    color: #b0b3c0;
    font-size: 0.95rem;
}
.project-image,
.slideshow,
.project-card img {
    width: 100%;
    height: auto;          /* ← critical */
    max-height: none;      /* ← prevents forced cropping */
    object-fit: contain;   /* ← show entire image */
    display: block;
    border-radius: 8px;
}

.button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
}

.button:hover {
    background-color: #2563eb;
}

footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    color: #7a7d8a;
}
.material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 6px;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    text-decoration: none;
    color: #c8102e;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}
.icon-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

.icon-inline .material-symbols-outlined {
    font-size: 22px;
}


    </style>