/* General Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: white; /* Text color needs to be white if the image is dark */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../static/wing_new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: creates a parallax scrolling effect */
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}



.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
    color: white;
}

/* Brand specific colors */
.linkedin { background: #0077b5; }
.github { background: #333; }
.cv { background: #ff8401; }
.mail { background: #34a308; }

.social-btn:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    filter: brightness(1.1);
}

/* Zig-Zag Rows */
.row {
    display: flex;
    flex-direction: column; /* Stacked by default for mobile */
    align-items: center;
    padding: 60px 0;
}

.col { flex: 1; padding: 20px; }

.portfolio-img {
/*    width: 100%; */
    height: 386px; /* Set a fixed height */
    object-fit: cover; /* This crops the image to fill the space without stretching */
    border-radius: 8px;
    display: block;
}

.img-placeholder {
    width: 100%;
    height: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .row {
        flex-direction: row; /* Side by side */
    }

    /* This class flips the second row */
    .row.reverse {
        flex-direction: row-reverse;
    }

    .text-col { padding: 0 60px; }
}







.site-footer {
    padding: 40px 0;
    background: #222;
    color: #888;
    text-align: center;
    font-size: 0.9rem;
}

.attribution a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.attribution a:hover {
    border-bottom: 1px solid #007bff; /* Underline grows on hover */
}