:root {
    --purple: #6d4b82;
    --purple-dark: #503566;
    --purple-light: #f3edf7;
    --gold: #c9a35b;
    --gold-light: #e6cf9a;
    --cream: #faf7f1;
    --white: #ffffff;
    --text: #332d36;
    --muted: #77717a;
    --border: #eee7df;
    --shadow: 0 15px 45px rgba(74, 48, 88, .09);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.9;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* ================= HEADER ================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 27px;
    font-weight: 800;
    color: var(--purple);
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--purple);
}

.nav-btn {
    background: var(--purple);
    color: white !important;
    padding: 11px 22px;
    border-radius: 30px;
}

.nav-btn:hover {
    background: var(--purple-dark);
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
    color: var(--purple);
    cursor: pointer;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section {
    background: var(--cream);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--purple);
    font-weight: 600;
}

/* ================= ARTICLE HERO ================= */
.article-header {
    padding: 70px 0 40px;
    text-align: center;
}

.article-category {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.article-header h1 {
    max-width: 850px;
    margin: auto;
    color: var(--purple-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.4;
    font-weight: 800;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ================= FEATURE IMAGE ================= */
.article-image {
    max-width: 1050px;
    height: 520px;
    margin: 20px auto 60px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.article-image img {
    height: 100%;
    object-fit: cover;
}

/* ================= ARTICLE CONTENT ================= */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) 280px;
    gap: 60px;
    justify-content: center;
    align-items: start;
    margin-bottom: 90px;
}

.article-content {
    font-size: 17px;
    color: #4c4650;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    color: var(--purple-dark);
    font-size: 27px;
    margin: 45px 0 18px;
}

.article-content h3 {
    color: var(--purple);
    font-size: 21px;
    margin: 35px 0 14px;
}

.article-content ul {
    padding-right: 25px;
    margin-bottom: 28px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content strong {
    color: var(--purple-dark);
}

.quote {
    margin: 40px 0;
    padding: 25px 30px;
    background: var(--purple-light);
    border-right: 5px solid var(--gold);
    border-radius: 15px;
    color: var(--purple-dark);
    font-size: 19px;
    font-weight: 600;
}

/* ================= SIDEBAR ================= */
.sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    color: var(--purple-dark);
    font-size: 19px;
    margin-bottom: 17px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: .3s;
}

.share-btn:hover {
    background: var(--purple);
    color: white;
}

.booking-card {
    background: var(--purple);
    color: white;
    border-radius: 20px;
    padding: 27px;
}

.booking-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.booking-card p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    margin-bottom: 20px;
}

.booking-btn {
    display: block;
    text-align: center;
    background: var(--gold);
    color: white;
    padding: 11px 18px;
    border-radius: 25px;
    font-weight: 700;
}

/* ================= RELATED ARTICLES ================= */
.related-section {
    background: var(--cream);
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.section-heading h2 {
    color: var(--purple-dark);
    font-size: 34px;
    margin-top: 6px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: .35s;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.blog-card-image {
    height: 210px;
    overflow: hidden;
}

.blog-card-image img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px;
}

.blog-card-category {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}

.blog-card h3 {
    color: var(--purple-dark);
    font-size: 19px;
    line-height: 1.6;
    margin: 8px 0;
}

.blog-card p {
    color: var(--muted);
    font-size: 14px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--purple);
    font-size: 14px;
    font-weight: 700;
}

/* ================= CTA ================= */
.cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 28px;
    padding: 55px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    top: -100px;
    right: -60px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 700;
}

/* ================= FOOTER ================= */
footer {
    background: #2e2335;
    color: white;
    padding: 65px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 2;
}

footer h3 {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--gold-light);
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 10px;
}

footer li a {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    transition: .3s;
}

footer li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 45px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 82px;
        right: 0;
        left: 0;
        background: white;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 7%;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-btn {
        text-align: center;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .navbar {
        height: 72px;
    }

    .nav-links {
        top: 72px;
    }

    .article-header {
        padding: 45px 0 25px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .article-meta {
        flex-direction: column;
        gap: 5px;
    }

    .article-image {
        height: 280px;
        border-radius: 18px;
        margin-bottom: 40px;
    }

    .article-content {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 23px;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 22px;
    }

    .cta-box h2 {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}