/* ==================================================
   BASIC SETTINGS
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #080808;
    color: #eeeeee;
    line-height: 1.6;
}


/* ==================================================
   NAVIGATION
================================================== */

header {
    width: 100%;
    border-bottom: 1px solid #252525;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    min-height: 80px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffffff;
    text-decoration: none;

    font-size: 24px;
    font-weight: bold;

    letter-spacing: 3px;
}

.logo span {
    color: #c5a45d;
}

.nav-menu {
    list-style: none;

    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #999999;
    text-decoration: none;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 2px;

    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c5a45d;
}


/* ==================================================
   GENERAL TEXT
================================================== */

.subtitle {
    color: #9b2028;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 15px;
}

.red-line {
    width: 65px;
    height: 3px;

    background-color: #9b2028;

    margin: 25px 0;
}

.red-line.center {
    margin: 25px auto;
}

.gold-line {
    width: 45px;
    height: 2px;

    background-color: #c5a45d;

    margin: 18px 0;
}


/* ==================================================
   BUTTON
================================================== */

.button {
    display: inline-block;

    padding: 13px 28px;

    margin-top: 25px;

    background-color: #9b2028;

    border: 1px solid #9b2028;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;

    transition: 0.3s;
}

.button:hover {
    background-color: transparent;

    border-color: #c5a45d;

    color: #c5a45d;
}


/* ==================================================
   HOME / HERO
================================================== */

.hero {
    width: 90%;
    max-width: 1200px;

    min-height: calc(100vh - 145px);

    margin: 0 auto;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    color: #ffffff;

    font-size: 52px;

    line-height: 1.1;

    letter-spacing: 2px;
}

.hero-content h1 span {
    color: #c5a45d;
}

.student-info {
    color: #aaaaaa;

    font-size: 15px;

    letter-spacing: 1px;
}

.student-info strong {
    color: #ffffff;
}

.quote {
    color: #c5a45d;

    margin-top: 22px;

    font-size: 15px;

    font-style: italic;
}


/* ==================================================
   PHOTO
================================================== */

.hero-image {
    width: 390px;
    height: 500px;

    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;
}

.photo-box {
    width: 320px;
    height: 420px;

    padding: 10px;

    border: 1px solid #c5a45d;

    position: relative;

    z-index: 2;
}

.photo-placeholder {
    width: 100%;
    height: 100%;

    background-color: #121212;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.photo-placeholder p {
    color: #777777;

    font-size: 13px;

    letter-spacing: 4px;
}

.photo-placeholder strong {
    color: #c5a45d;

    font-size: 30px;

    letter-spacing: 3px;
}

.photo-placeholder small {
    color: #666666;

    margin-top: 10px;

    font-size: 11px;

    letter-spacing: 2px;
}

.red-border {
    width: 320px;
    height: 420px;

    border: 2px solid #9b2028;

    position: absolute;

    top: 50px;
    right: 5px;
}


/* ==================================================
   GENERAL PAGE
================================================== */

.page {
    width: 90%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 90px 0;
}

.page-title {
    text-align: center;

    margin-bottom: 70px;
}

.page-title h1 {
    color: #ffffff;

    font-size: 48px;

    letter-spacing: 3px;
}

.page-title h1 span {
    color: #c5a45d;
}

.page-description {
    max-width: 600px;

    margin: 0 auto;

    color: #999999;
}


/* ==================================================
   ABOUT
================================================== */

.about-section {
    display: flex;

    align-items: center;

    gap: 80px;

    margin-bottom: 100px;
}

.about-photo {
    flex: 1;

    display: flex;

    justify-content: center;
}

.photo-box.small {
    width: 280px;
    height: 360px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #c5a45d;

    font-size: 28px;

    margin-bottom: 25px;
}

.about-text p {
    color: #aaaaaa;

    margin-bottom: 18px;
}

.about-text strong {
    color: #ffffff;
}


/* ==================================================
   PERSONAL INFORMATION
================================================== */

.information-section {
    margin-bottom: 100px;
}

.information-section h2,
.experience-section h2 {
    color: #ffffff;

    font-size: 30px;

    margin-bottom: 35px;
}

.information-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.info-card {
    padding: 25px;

    background-color: #111111;

    border-left: 3px solid #9b2028;
}

.info-card p:last-child {
    color: #cccccc;
}

.info-title {
    color: #c5a45d;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


/* ==================================================
   EXPERIENCE
================================================== */

.experience-section {
    margin-bottom: 100px;
}

.experience-card {
    display: flex;

    gap: 30px;

    padding: 30px;

    background-color: #111111;

    border: 1px solid #252525;
}

.experience-number {
    color: #c5a45d;

    font-size: 45px;
    font-weight: bold;

    min-width: 70px;
}

.experience-content h3 {
    color: #ffffff;

    margin-bottom: 10px;
}

.experience-content > p:last-child {
    color: #999999;
}


/* ==================================================
   FUTURE
================================================== */

.future-section {
    padding: 70px 20px;

    text-align: center;

    border-top: 1px solid #252525;
}

.future-section h2,
.learning-section h2 {
    color: #ffffff;

    font-size: 40px;

    margin-bottom: 20px;
}

.future-section h2 span,
.learning-section h2 span {
    color: #c5a45d;
}

.future-section > p:last-child,
.learning-section > p:last-child {
    max-width: 650px;

    margin: 0 auto;

    color: #999999;
}


/* ==================================================
   SKILLS
================================================== */

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-bottom: 100px;
}

.skill-card {
    min-height: 350px;

    padding: 35px;

    background-color: #111111;

    border: 1px solid #252525;

    transition: 0.3s;
}

.skill-card:hover {
    border-color: #9b2028;

    transform: translateY(-5px);
}

.card-number {
    color: #9b2028;

    font-size: 14px;
    font-weight: bold;

    margin-bottom: 30px;
}

.skill-card h2 {
    color: #ffffff;

    font-size: 23px;

    letter-spacing: 2px;
}

.skill-card h3 {
    color: #c5a45d;

    font-size: 17px;

    margin-bottom: 15px;
}

.skill-card > p:last-child {
    color: #999999;

    font-size: 14px;
}

.learning-section {
    padding: 70px 20px;

    text-align: center;

    border-top: 1px solid #252525;
}


/* ==================================================
   CONTACT
================================================== */

.contact-page {
    width: 90%;
    max-width: 900px;

    min-height: calc(100vh - 160px);

    margin: 0 auto;

    display: flex;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.contact-content {
    width: 100%;
}

.contact-content h1 {
    color: #ffffff;

    font-size: 55px;

    letter-spacing: 4px;
}

.contact-content h1 span {
    color: #c5a45d;
}

.contact-description {
    max-width: 550px;

    margin: 0 auto;

    color: #999999;
}

.social-card {
    max-width: 500px;

    margin: 50px auto;

    padding: 45px;

    background-color: #111111;

    border: 1px solid #252525;
}

.social-title {
    color: #9b2028;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;
}

.social-card h2 {
    color: #c5a45d;

    font-size: 30px;

    margin-top: 10px;
}

.closing-quote {
    margin-top: 45px;
}

.closing-quote p {
    color: #c5a45d;

    font-style: italic;
}

.closing-quote span {
    display: block;

    margin-top: 10px;

    color: #777777;

    font-size: 13px;
}


/* ==================================================
   FOOTER
================================================== */

footer {
    padding: 25px;

    text-align: center;

    border-top: 1px solid #252525;

    color: #666666;

    font-size: 11px;

    letter-spacing: 1px;
}

footer p:first-child {
    margin-bottom: 5px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 850px) {

    .navbar {
        flex-direction: column;

        gap: 20px;

        padding: 25px 0;
    }

    .nav-menu {
        gap: 20px;
    }


    .hero {
        flex-direction: column;

        text-align: center;

        padding: 70px 0;
    }

    .red-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 40px;
    }


    .hero-image {
        width: 320px;
        height: 430px;
    }

    .photo-box {
        width: 270px;
        height: 360px;
    }

    .red-border {
        width: 270px;
        height: 360px;
    }


    .about-section {
        flex-direction: column;

        gap: 50px;
    }

    .about-text {
        text-align: center;
    }


    .cards {
        grid-template-columns: 1fr;
    }


    .information-grid {
        grid-template-columns: 1fr;
    }


    .page-title h1 {
        font-size: 38px;
    }


    .contact-content h1 {
        font-size: 42px;
    }

}


/* ==================================================
   MOBILE PHONE
================================================== */

@media (max-width: 450px) {

    .navbar {
        width: 95%;
    }

    .logo {
        font-size: 20px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 9px;

        letter-spacing: 1px;
    }


    .hero {
        width: 92%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-image {
        width: 280px;
        height: 390px;
    }

    .photo-box {
        width: 230px;
        height: 320px;
    }

    .red-border {
        width: 230px;
        height: 320px;
    }


    .page {
        width: 92%;

        padding: 60px 0;
    }

    .page-title h1 {
        font-size: 30px;
    }


    .experience-card {
        flex-direction: column;

        gap: 10px;
    }


    .contact-content h1 {
        font-size: 32px;
    }

    .social-card {
        padding: 30px 20px;
    }

}