* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* === HEADER === */
.main-header {
    background: #123c8b;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO IMAGE */
.logo-img {
    width: 150px;   /* lebih pas, ga kebesaran */
}

/* TEXT DI SAMPING LOGO (ATAS & BAWAH) */
.logo-text {
    display: flex;
    flex-direction: column;
}

/* MADING DIGITAL */
.logo-text h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 40px;
    margin: 0;
    line-height: 1.1;
    font-weight: bold;
}

/* SMK N 7 BANDAR LAMPUNG */
.logo-text p {
    font-size: 20px;
    margin: 0;
    color: #f5c400;
    letter-spacing: 0.5px;
}

/* NAVBAR */
.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 600;
    font-size: 16px;
}

.navbar a:hover {
    color: #f5c400;
    border-bottom: 2px solid #f5c400;
    padding-bottom: 3px;
}

.btn-login {
    background: #f5c400;
    padding: 8px 18px;
    color: #123c8b !important;
    border-radius: 25px;
    font-weight: bold;
}

/* === HERO SECTION === */
.content {
    padding: 40px 0;
    background: #f5f7fb;
}

.hero-section {
    width: 90%;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-text {
    width: 60%;
    text-align: center;
}

.hero-text h1 {
    color: #123c8b;
    font-size: 45px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.hero-img {
    width: 40%;
    border-radius: 15px;

    /* FRAME GAMBAR PROFIL SEKOLAH */
    padding: 12px;              /* jarak dari frame ke foto */
    background: #123c8b;         /* warna frame (biru header) */
    border: 4px solid #f5c400;   /* garis luar kuning */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* efek shadow */
}

.hero-img:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}

/* === SAMBUTAN KEPALA SEKOLAH TANPA FOTO === */
.sambutan-section {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

.sambutan-section h2 {
    font-size: 28px;
    color: #123c8b;
    margin-bottom: 30px;
    font-weight: bold;
}

.sambutan-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sambutan-box p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
    text-align: center;
    color: #333;
}


/* === FOOTER (TENGAH SEMUA) === */
.main-footer {
    background: #123c8b;
    color: white;
    padding: 40px 20px 10px;
    margin-top: 10px;
    text-align: center;
}

.main-footer h3 {
    color: #f5c400;
    margin-bottom: 15px;
    font-size: 20px;
}

.main-footer p {
    margin: 6px 0;
    font-size: 15px;
}

.footer-jurusan {
    margin-top: 15px;
}

.footer-jurusan span {
    display: block;
    margin: 3px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}
