/* BELDANGI FAX MACHINE - 2009 Apple/Mac Style - Dark Maroon */

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

body {
    font-family: "Lucida Grande", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 13px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* BOUNCING DVD GIF */
.bouncing-gif {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
}

.bouncing-gif img {
    width: 120px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.page-wrapper {
    min-height: 100vh;
    background: linear-gradient(180deg, #2d1f1f 0%, #1a1212 100%);
}

/* TOP BAR - Brushed Metal Style */
.top-bar {
    background: linear-gradient(180deg, #4a3232 0%, #3d2828 50%, #2d1f1f 100%);
    border-bottom: 1px solid #5a4040;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 1px 3px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 18px;
    font-weight: bold;
    color: #e8d8d8;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.top-nav {
    display: flex;
    gap: 25px;
}

.top-nav a {
    color: #c0b0b0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    transition: color 0.2s;
}

.top-nav a:hover {
    color: #fff;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(180deg, #3d2020 0%, #2a1515 100%);
    border-bottom: 1px solid #4a2828;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    color: #f0e0e0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero .tagline {
    font-size: 16px;
    color: #a08080;
    font-weight: 300;
}

/* MAIN CONTAINER */
.main-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* SECTIONS */
.section {
    background: linear-gradient(180deg, #2d2020 0%, #251818 100%);
    border: 1px solid #3d2828;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(180deg, #4a3030 0%, #3d2525 100%);
    border-bottom: 1px solid #5a3838;
    padding: 12px 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.section-header h2 {
    font-size: 14px;
    font-weight: bold;
    color: #e0d0d0;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content {
    padding: 25px;
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.profile-img {
    width: 100%;
    border-radius: 6px;
    border: 3px solid #4a3030;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.about-text h3 {
    font-size: 24px;
    color: #f0e0e0;
    margin-bottom: 5px;
}

.about-text .subtitle {
    color: #8a6060;
    font-size: 14px;
    margin-bottom: 20px;
}

.info-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.info-table td {
    padding: 8px 0;
    border-bottom: 1px solid #3d2828;
}

.info-table td:first-child {
    color: #8a7070;
    width: 120px;
    font-weight: 500;
}

.info-table td:last-child {
    color: #d0c0c0;
}

.bio {
    color: #a09090;
    line-height: 1.7;
}

/* IMAGE SHOWCASE */
.image-showcase {
    margin-bottom: 20px;
}

.showcase-main {
    margin-bottom: 15px;
}

.main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
    border: 3px solid #4a3030;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.image-caption {
    text-align: center;
    color: #706060;
    font-size: 12px;
    margin-top: 10px;
    font-style: italic;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #3d2828;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.section-text {
    color: #a09090;
    line-height: 1.8;
}

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

/* CHIEF KEEF GIF GALLERY */
.keef-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

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

.keef-gif-main {
    max-width: 100%;
    width: 480px;
    border-radius: 6px;
    border: 3px solid #4a3030;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.keef-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.keef-gif {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid #3d2828;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* PROJECTS GRID */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card {
    background: linear-gradient(180deg, #352525 0%, #2d1d1d 100%);
    border: 1px solid #4a3030;
    border-radius: 6px;
    padding: 20px;
    box-shadow:
        0 2px 6px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.project-card h4 {
    color: #e0d0d0;
    font-size: 15px;
    margin-bottom: 8px;
}

.project-card p {
    color: #908080;
    font-size: 12px;
    line-height: 1.6;
}

/* GITHUB SECTION */
.github-section .section-content {
    background: linear-gradient(180deg, #1a1515 0%, #151010 100%);
}

.github-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(180deg, #2a2020 0%, #201818 100%);
    border: 1px solid #3d2828;
    border-radius: 8px;
    margin-bottom: 25px;
}

.github-logo {
    width: 80px;
    height: 80px;
    filter: grayscale(100%) brightness(0.8);
}

.github-info h3 {
    color: #f0e0e0;
    font-size: 22px;
    margin-bottom: 8px;
}

.github-info p {
    color: #908080;
    margin-bottom: 15px;
}

/* Aqua Button - 2009 Apple Style */
.github-button {
    display: inline-block;
    background: linear-gradient(180deg, #6a4040 0%, #5a3030 50%, #4a2525 100%);
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #7a5050;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    transition: all 0.2s;
}

.github-button:hover {
    background: linear-gradient(180deg, #7a5050 0%, #6a4040 50%, #5a3030 100%);
}

.github-button:active {
    background: linear-gradient(180deg, #4a2525 0%, #5a3030 100%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

/* SKILLS */
.skills-section h4 {
    color: #a09090;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills-list span {
    background: linear-gradient(180deg, #3d2828 0%, #2d1f1f 100%);
    color: #c0b0b0;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px solid #4a3030;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #201515 0%, #151010 100%);
    border-top: 1px solid #3d2828;
    padding: 30px 20px;
    text-align: center;
}

.copyright {
    color: #605050;
    font-size: 11px;
    margin-bottom: 10px;
}

.footer-link a {
    color: #8a6060;
    text-decoration: none;
    font-size: 11px;
}

.footer-link a:hover {
    color: #b08080;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .profile-img {
        max-width: 200px;
    }

    .keef-gallery {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .github-card {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Subtle shine effect on cards */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.section {
    position: relative;
}
