@import "css/global.css";

/*Header*/
#header {
    background: url("../../images/header-background.jpg") no-repeat fixed center;
    min-width: 100%;
    min-height: 400px;
    height: 30vh;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    z-index: 0;
    display: flex;
    align-items: center;
}

#header .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 150px;
    width: 100%;
}

#header .content .info {
    display: flex;
    flex-direction: column;
}

#header .content .info .minecraft-server-ip {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

#header .content .info .title {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 65px;
    font-weight: 900;
}

#header .content .info .title span {
    color: var(--main-color);
}

#header .content .description {
    color: var(--description-color);
    font-size: 18px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
}

/* Layout spacing */
#brewing-guide .content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Typography styles */
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--main-color);
}

.section-description {
    font-size: 18px;
    color: var(--description-color);
    line-height: 1.6;
    max-width: 95%;
}

/* Warning Box */
.warning-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--warning-background);
    border-left: 5px solid var(--red-color);
    padding: 25px 35px;
    border-radius: 8px;
}

.warning-box .icon {
    font-size: 60px;
    font-style: normal;
    color: var(--red-color);
}

.warning-box .warning-text h3 {
    color: var(--white-color);
    font-size: 48px;
    margin-bottom: 8px;
}

.warning-box .warning-text p {
    color: var(--warning-color);
    font-size: 18px;
    line-height: 1.5;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: var(--stats-background);
    padding: 30px;
    border-radius: 12px;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-info {
    flex: 1;
}

.step-info .step-title {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-info p {
    color: var(--description-color);
    font-size: 18px;
    line-height: 1.6;
}

.step-info p strong {
    color: var(--white-color);
}

.step-info p em {
    color: var(--main-color);
    font-style: normal;
    font-weight: 600;
}

.step-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--scroll-bar);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Tips Box */
.tips-box {
    background: rgba(165, 255, 153, 0.05); /* Slight tint of main-color */
    border: 1px solid rgba(165, 255, 153, 0.2);
    padding: 40px;
    border-radius: 12px;
}

.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--description-color);
    font-size: 20px;
    line-height: 1.6;
}

.tips-list li i {
    color: var(--main-color);
    font-size: 20px;
    margin-top: 3px;
}

.tips-list li strong {
    color: var(--white-color);
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
    .step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .step-img {
        max-width: 100%;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .tips-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}