/* =========================
GLOBAL STYLES
========================= */

body {
    background-color: #FFEEF2;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* =========================
NAVBAR BASE STYLE (NON-GLASS)
========================= */

.navbar {
    background-color: #595758;
}

.navbar-brand,
.nav-link {
    color: #FFEEF2 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #FF92C2 !important;
}

/* Logo */

.logo {
    height: 40px;
    width: auto;
}

/* =========================
HERO SECTION (HOME PAGE)
========================= */

.hero-section {
    padding: 80px 0;
}

.hero-title {
    color: #595758;
    font-weight: bold;
}

.hero-text {
    color: #595758;
    max-width: 600px;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Divider Line */

.divider {
    height: 3px;
    width: 80px;
    background-color: #C9C5C5;
    margin: 20px 0;
}

/* =========================
BUTTONS
========================= */

.btn-custom {
    background-color: #FF92C2;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    border: none;
    transition: 0.3s ease;
}

.btn-custom:hover {
    background-color: #e97bb0;
    color: white;
}

/* =========================
ABOUT PAGE
========================= */

.about-hero {
    height: 300px;
    background-image: url("./images/Yhabib.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(89, 87, 88, 0.6);
}

.about-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
}

.section-heading {
    color: #595758;
    font-weight: bold;
}

/* =========================
FAQ PAGE
========================= */

.faq-title-section {
    background-color: #FFEEF2;
}

.faq-title {
    color: #595758;
    font-weight: bold;
}

.faq-section h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

.bg-light-pink {
    background-color: #FFEEF2;
}

.bg-soft-gray {
    background-color: #C9C5C5;
}

.bg-dark-custom {
    background-color: #595758;
}

.bg-bright-pink {
    background-color: #FF92C2;
}

/* =========================
COURSE PAGE - BOOK STYLE
========================= */

.course-title {
    color: #595758;
    font-weight: bold;
}

.course-book {
    max-width: 800px;
}

.book-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.book-item {
    background-color: #FFEEF2;
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
    font-weight: 500;
    color: #595758;
    cursor: pointer;
}

.book-item:hover {
    transform: translateX(10px);
    background-color: #FF92C2;
    color: white;
}

.lesson-number {
    background-color: #595758;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* =========================
BLOG PAGE
========================= */

.blog-title {
    font-size: 3rem;
    font-weight: bold;
    color: #595758;
}

/* Blog Sections */
.blog-post {
    width: 100%;
}

.bg-post-1 {
    background-color: #FFEEF2;
}

.bg-post-2 {
    background-color: #F8F9FA;
}

/* Blog Image */
.blog-img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Blog Text */
.blog-post h3 {
    color: #595758;
    font-weight: bold;
}

.blog-post p {
    color: #595758;
    font-size: 1.05rem;
}

.footer-link i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* =========================
FOOTER UPGRADE
========================= */

.site-footer {
    background-color: #595758;
    color: #FFEEF2;
}

.footer-brand {
    font-weight: bold;
    font-size: 1.3rem;
}

.footer-text {
    font-size: 0.95rem;
}

.footer-heading {
    font-weight: bold;
}

/* ROUND SOCIAL ICONS */
.social-icon {
    width: 45px;
    height: 45px;
    background-color: #FF92C2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

/* Glow Hover Effect */
.social-icon:hover {
    background-color: #e97bb0;
    box-shadow: 0 0 15px rgba(255, 146, 194, 0.8);
    transform: translateY(-3px);
}

/* Contact Button */
.btn-footer {
    background-color: #FF92C2;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    border: none;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background-color: #e97bb0;
    box-shadow: 0 0 15px rgba(255, 146, 194, 0.8);
    transform: translateY(-2px);
    color: white;
}

.footer-divider {
    border-color: rgba(255, 238, 242, 0.3);
    margin: 30px 0 20px 0;
}

.footer-copy {
    font-size: 0.85rem;
}