/* =========================================
   VARIABLES & THEME
   ========================================= */
:root {
    --background: #000000; 
    --accent: #e29c0d;     
    --text-main: #E0E0E0;  
    --text-muted: #888888;
}

/* =========================================
   RESET & TYPOGRAPHY
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
}

::selection {
    color: var(--background);
    background: var(--accent);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    filter: brightness(1.2);
}

/* =========================================
   LAYOUT & CONTAINERS
   ========================================= */
#wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Tightened the overall gap between sections */
}

/* =========================================
   HEADER & BANNER
   ========================================= */
.banner {
    display: block;
    /* Reduced margin-bottom drastically to pull the icons up closer */
    margin: 0 auto 0.5rem auto; 
    max-width: 100%;
    width: 250px; /* Shrunk from 400px */
}

/* =========================================
   SOCIALS
   ========================================= */
.container-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
}

.item-social {
    transform: scale(0.8);
    /* Glow effect completely removed */
}

.icon {
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}

/* =========================================
   STUDIO ABOUT SECTION
   ========================================= */
.about-section {
    padding: 2rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.about-section p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto; /* By setting margin to 0 top/bottom, the padding creates perfectly even spacing */
}

/* =========================================
   PROJECTS SECTION (FUGUE SHOT CAPSULE)
   ========================================= */
.projects-section {
    margin-top: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container-capsule {
    display: flex;
    justify-content: center;
    width: 100%;
}

.capsule-button {
    display: block;
    width: 100%;
    max-width: 600px; 
}

.capsule-button img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 0 #8a5e06; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capsule-button img:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 #8a5e06; 
    /* Removed the brightness filter so the color stays exactly the same */
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    margin-top: 1rem;
    text-align: center;
}

.rights {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* =========================================
   MOBILE ADJUSTMENTS
   ========================================= */
@media screen and (max-width: 600px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1.05rem;
    }
}
