* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.defaultTheme {
    background-color: black;
    color: white;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Times New Roman",
        Times, serif;
}

.homepage {
    background-image: url("../img/Homepage Background.jpg");
    background-size: cover;
    background-position: center;
    height: 100rem;
    width: 100%;
    /* padding-top: 100px; */
}

.header {
    text-align: center;
    margin-bottom: 48px;
}

.header h1 {
    font-size: 3rem;
    color: #63cfc0;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.header p {
    color: #c7c7c7;
    font-size: 1.1rem;
}

.btn {
    background-color: #63cfc0;
    color: black;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

/* 🌐 Navigation Bar Styles */

.blog-page .navbar {
    margin-top: 3rem;
}

.navbar {
    position: sticky;
    top: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin: 16px auto;
    margin-top: -2rem;
    max-width: 45rem;
    padding: 12px 0;
    font-weight: lighter;
    background-color: black;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.navbar a {
    text-decoration: none;
    color: #63cfc0;
    font-weight: bold;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.navbar a:hover {
    color: white;
    text-shadow: 0 0 5px #63cfc0;
}

.navbar a.active {
    color: white;
    text-shadow: 0 0 8px #63cfc0;
}

/* 🌟 Hero Text Styling */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.smoothen-gradient-box {
    position: absolute;
    top: 18rem;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: linear-gradient(to top, #000000, #e52e7100);
}

/* 🌟 Visi dan Misi Styling */
.visi-misi {
    display: flex;
    gap: 32px;
    margin-top: 3rem;
    padding: 0 1rem;
}

.homepage-container-boxes {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    top: 1502px;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ℹ️ About Us Styling */
.about-page {
    min-height: 100vh;
    padding-top: 80px;
    background-color: black;
}

.about-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section {
    max-width: 60rem;
    margin: 0 auto;
    padding: 48px 24px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #63cfc0;
    margin-bottom: 8px;
    letter-spacing: -1px;
    text-align: center;
}

.section-subtitle {
    color: #c7c7c7;
    text-align: center;
}

.about-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.about-card {
    background-color: #0b0b0b;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.about-card h3 {
    margin: 0 0 8px 0;
}

/* 📞 Call To Action Styling */
.about-cta {
    text-align: center;
    margin: 24px auto 80px;
}

.cta-button {
    background-color: #63cfc0;
    color: black;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: white;
    color: black;
}

/* 🧩 Blog (CRUD) Styling */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.create-section,
.edit-section,
.delete-section {
    background-color: #0b0b0b;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 48px;
}

.create-form,
.edit-form,
.delete-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.create-form input,
.edit-form input,
textarea,
select,
.account-form input {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: black;
    color: white;
    font-family: "Poppins", sans-serif;
}

.create-form input::placeholder,
textarea::placeholder {
    color: #777;
}

.blog-post {
    /* background-color: #0b0b0b; */
    /* border: 1px solid #222; */
    /* border-radius: 16px; */
    padding: 24px;
    margin-bottom: 24px;
}

.blog-item {
    background-color: #0b0b0b;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 24px;
}

.blog-post h3 {
    color: #63cfc0;
    margin-bottom: 8px;
}

.blog-post .date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.blog-post .content {
    color: #c7c7c7;
    margin-bottom: 16px;
}

.crud-buttons {
    display: flex;
    gap: 12px;
}

.delete-btn {
    background-color: #c75151;
    color: white;
    padding: 12px;
    border-radius: 25px;
}
.delete-btn:hover {
    background-color: #ff6666;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.contact-content {
    margin-top: 24px;
    text-align: center;
    background-color: #0b0b0b;
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}
