/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background: #0b0b0f;
    color: #e6e6e6;
    font-family: "Trebuchet MS", sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: #15151b;
    border-bottom: 3px solid #ff2784;
}

.logo {
    font-size: 48px;
    font-weight: 900;
    color: #ff2784;
    text-shadow: 0 0 10px #ff2784;
}

.tagline {
    font-size: 20px;
    margin-top: 10px;
    color: #d3d3d3;
}

.intro {
    padding: 40px 20px;
    text-align: center;
}

.studio-img {
    width: 250px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 3px solid #ff2784;
}

.intro-text {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}

.highlight {
    color: #ff2784;
    font-weight: bold;
}

.projects {
    background: #131318;
    padding: 50px 20px;
}

.projects h2, .about h2 {
    font-size: 32px;
    text-align: center;
    color: #ff2784;
    text-shadow: 0 0 6px #ff2784;
}

.project-card {
    background: #1d1d24;
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    border-left: 4px solid #ff2784;
    border-radius: 8px;
}

.about {
    padding: 40px 20px;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #15151b;
    border-top: 3px solid #ff2784;
    font-size: 14px;
