:root {
    --primary-green: #0d4a3e;
    --secondary-gold: #c5a040;
    --bg-light: #f9fbf9;
    --text-dark: #1a2b25;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Lora', serif;
}

/* Background Pattern */
.pattern-bg {
    background-image: radial-gradient(#d1d1d1 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

/* Navbar */
.navbar {
    background-color: var(--primary-green) !important;
    padding: 15px 0;
}

.navbar-brand img {
    width: 40px;
    margin-right: 12px;
}

.navbar-brand {
    font-size: 1.1rem;
    line-height: 1.2;
}

.navbar-brand span {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link.active,
.nav-link:hover {
    color: #fff !important;
}

.btn-register-nav {
    background-color: #1b5e20 !important;
    border: none;
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-green);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bismillah {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-subtitle {
    font-size: 3rem;
    color: var(--secondary-gold);
    margin-bottom: 25px;
}

.hero-text {
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    opacity: 0.85;
}

/* Buttons */
.btn-gold,
.btn-download {
    background-color: var(--secondary-gold);
    color: var(--primary-green);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #dcb651;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Sections */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: var(--secondary-gold);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 12px;
    background: #fff;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: all 0.3s;
}

.card-custom:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f1f4f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
    font-size: 1.5rem;
}

/* Accordion */
.accordion-item {
    border: 1px solid #f1f4f1;
    margin-bottom: 20px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-dark);
    background-color: #fff;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-green);
    box-shadow: none;
}

.accordion-button i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--primary-green);
}

.accordion-button::after {
    background-size: 1rem;
}

/* Syllabus */
.syllabus-container {
    margin-top: 40px;
}

.syllabus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.syllabus-list li {
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.syllabus-list li::before {
    content: '•';
    color: var(--secondary-gold);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: 0.5em;
}

/* Date Card */
.date-card {
    background-color: #f1f4f1;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.date-card h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
}

.date-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #072e26;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer a:hover {
    color: var(--secondary-gold);
}
