/* =========================================
QDENGA BLOG PAGE
PART 1
========================================= */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/* =========================================
RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --primary:#2f6b63;
    --secondary:#d16d53;
    --dark:#1f2937;
    --text:#444;
    --light:#f8f8f8;
    --border:#e7e7e7;
    --white:#ffffff;

}

body{

    font-family:'Inter',sans-serif;
    background:#f8f8f8;
    color:var(--text);
    line-height:1.8;
    overflow-x:hidden;

}

/* =========================================
LINKS
========================================= */

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

/* =========================================
HEADER
========================================= */

.article-header{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:85px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    border-bottom:1px solid #ececec;

    z-index:9999;

}

.header-wrapper{

    max-width:1300px;

    margin:auto;

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 35px;

}

/* =========================================
LOGO
========================================= */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo-circle{

    width:48px;
    height:48px;

    border-radius:50%;

    background:var(--secondary);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:19px;

}

.logo h2{

    font-size:34px;

    color:#222;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

}

/* =========================================
BACK BUTTON
========================================= */

.back-btn{

    display:flex;

    align-items:center;

    gap:10px;

    background:var(--primary);

    color:#fff;

    padding:12px 24px;

    border-radius:40px;

    font-size:15px;

    transition:.3s;

}

.back-btn:hover{

    background:#24554e;

    transform:translateY(-2px);

}

/* =========================================
HERO
========================================= */

.hero{

    padding-top:150px;

    padding-bottom:80px;

    background:linear-gradient(135deg,#f7faf9,#eef7f5);

}

.hero-content{

    max-width:1050px;

    margin:auto;

    padding:0 35px;

}

.article-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#e7f5ef;

    color:var(--primary);

    padding:10px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    line-height:1.12;

    color:#1d1d1d;

    margin-bottom:25px;

}

.hero-subtitle{

    font-size:20px;

    color:#666;

    max-width:900px;

    line-height:1.9;

    margin-bottom:35px;

}

/* =========================================
META INFO
========================================= */

.article-meta{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.article-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    background:#fff;

    padding:12px 18px;

    border-radius:30px;

    border:1px solid #ececec;

    font-size:14px;

    color:#555;

}

.article-meta i{

    color:var(--secondary);

}

/* =========================================
FEATURE IMAGE
========================================= */

.cover-image{

    max-width:1200px;

    margin:50px auto;

    padding:0 35px;

}

.cover-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/* =========================================
ARTICLE CONTAINER
========================================= */

.article-container{

    max-width:1100px;

    margin:auto;

    padding:0 35px 80px;

}

.article-content{

    background:#fff;

    padding:55px;

    border-radius:24px;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

/* =========================================
NOTICE BOX
========================================= */

.notice-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:#f6fbff;

    border-left:5px solid #4da3ff;

    padding:22px;

    border-radius:12px;

    margin-bottom:45px;

}

.notice-box i{

    font-size:22px;

    color:#4da3ff;

    margin-top:3px;

}

.notice-box p{

    margin:0;

    color:#555;

    font-size:15px;

}

/* =========================================
ARTICLE HEADINGS
========================================= */

.article-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:46px;

    color:#202020;

    margin-top:55px;

    margin-bottom:20px;

}

.article-content h3{

    font-size:28px;

    color:var(--primary);

    margin-bottom:20px;

    margin-top:35px;

    font-weight:700;

}

/* =========================================
PARAGRAPHS
========================================= */

.article-content p{

    font-size:17px;

    color:#555;

    line-height:2;

    margin-bottom:22px;

}

.article-content strong{

    color:#222;

    font-weight:700;

}

/* =========================================
QDENGA BLOG PAGE
PART 2
Feature Cards • Stats • Info Boxes
========================================= */

/* =========================================
LISTS
========================================= */

.article-content ul{
    margin:25px 0 35px 25px;
}

.article-content ul li{
    margin-bottom:14px;
    font-size:17px;
    color:#555;
    line-height:1.9;
}

.article-content ul li::marker{
    color:var(--secondary);
}

/* =========================================
HIGHLIGHT BOX
========================================= */

.highlight-box{

    background:linear-gradient(135deg,#eef8f6,#ffffff);

    border-left:5px solid var(--primary);

    padding:28px;

    margin:45px 0;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.highlight-box h4{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--primary);

    font-size:24px;

    margin-bottom:16px;

}

.highlight-box i{

    color:var(--secondary);

    font-size:22px;

}

.highlight-box p{

    margin:0;

    font-size:16px;

}

/* =========================================
FEATURE GRID
========================================= */

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

    margin:45px 0;

}

/* FEATURE CARD */

.feature-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(0,0,0,.08);

}

.feature-card i{

    width:65px;

    height:65px;

    margin:auto auto 20px;

    border-radius:50%;

    background:#eef8f6;

    color:var(--secondary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

}

.feature-card p{

    margin:0;

    font-size:16px;

    color:#444;

}

/* =========================================
STATISTICS GRID
========================================= */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin:45px 0;

}

.stat-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    border:1px solid #ececec;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-6px);

}

.stat-number{

    font-size:58px;

    color:var(--secondary);

    font-weight:700;

    margin-bottom:12px;

}

.stat-title{

    font-size:21px;

    color:#222;

    font-weight:600;

    margin-bottom:18px;

}

.stat-card p{

    margin:0;

    font-size:15px;

    color:#666;

}

/* =========================================
INFO BOX
========================================= */

.info-box{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#f8fafb;

    border-left:5px solid #4a90e2;

    border-radius:16px;

    padding:28px;

    margin:45px 0;

}

.info-box i{

    font-size:30px;

    color:#4a90e2;

}

.info-box h4{

    margin-bottom:10px;

    color:#1d3557;

    font-size:24px;

}

.info-box p{

    margin:0;

}

/* =========================================
QUOTE BOX
========================================= */

.quote-box{

    background:linear-gradient(135deg,#fff8ef,#ffffff);

    border-radius:18px;

    padding:35px;

    margin:45px 0;

    text-align:center;

    border:1px solid #f0e0cc;

}

.quote-box i{

    font-size:34px;

    color:var(--secondary);

    margin-bottom:18px;

}

.quote-box p{

    margin:0;

    font-size:18px;

    color:#555;

    font-style:italic;

}

/* =========================================
COMPARISON TABLE
========================================= */

.comparison-table{

    overflow-x:auto;

    margin:45px 0;

}

.comparison-table table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.comparison-table thead{

    background:var(--primary);

    color:#fff;

}

.comparison-table th{

    padding:18px;

    text-align:left;

    font-size:16px;

    font-weight:600;

}

.comparison-table td{

    padding:18px;

    border-bottom:1px solid #ececec;

    font-size:15px;

    color:#555;

}

.comparison-table tbody tr:hover{

    background:#fafafa;

}

/* =========================================
SUCCESS / WARNING ICONS
========================================= */

.success{

    color:#28a745;

    margin-right:8px;

}

.warning{

    color:#f39c12;

    margin-right:8px;

}

/* =========================================
ALERT BOX
========================================= */

.alert-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff8f2;

    border-left:5px solid #ff8c42;

    border-radius:16px;

    padding:30px;

    margin:45px 0;

}

.alert-box i{

    font-size:28px;

    color:#ff8c42;

}

.alert-box h4{

    font-size:24px;

    color:#c25d14;

    margin-bottom:10px;

}

.alert-box p{

    margin:0;

}

/* =========================================
QDENGA BLOG PAGE
PART 3
Highlights • Conclusion • Footer • Responsive
========================================= */

/* =========================================
KEY HIGHLIGHTS SECTION
========================================= */

.highlights-section{
    margin:70px 0;
}

.highlights-section h2{
    text-align:center;
    margin-bottom:40px;
}

.highlights-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.highlight-card{
    background:#ffffff;
    border:1px solid #e8ecef;
    border-radius:18px;
    padding:28px;
    text-align:center;
    transition:.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.highlight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 35px rgba(0,0,0,.08);
}

.highlight-card i{
    font-size:34px;
    color:var(--secondary);
    margin-bottom:18px;
}

.highlight-card p{
    margin:0;
    color:#444;
    font-size:16px;
    line-height:1.7;
}

/* =========================================
SUMMARY BOX
========================================= */

.summary-box{
    background:linear-gradient(135deg,#eef8f6,#ffffff);
    border-left:6px solid var(--primary);
    padding:40px;
    border-radius:20px;
    margin:70px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.summary-box h2{
    margin-top:0;
    color:var(--primary);
}

.summary-box p:last-child{
    margin-bottom:0;
}

/* =========================================
DISCLAIMER
========================================= */

.disclaimer-box{
    background:#fff8e8;
    border:1px solid #f3d999;
    border-radius:20px;
    padding:35px;
    margin:60px 0;
}

.disclaimer-title{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:24px;
    font-weight:700;
    color:#b86a00;
    margin-bottom:20px;
}

.disclaimer-title i{
    font-size:26px;
}

.disclaimer-box p{
    color:#5d4b22;
    margin-bottom:18px;
}

.disclaimer-box p:last-child{
    margin-bottom:0;
}

/* =========================================
AUTHOR CARD
========================================= */

.article-footer{
    margin-top:70px;
}

.author-card{
    display:flex;
    align-items:center;
    gap:25px;
    padding:35px;
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.author-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
}

.author-card h3{
    margin:0 0 10px;
    color:#222;
    font-size:24px;
}

.author-card p{
    margin:0;
}

/* =========================================
BOTTOM NAVIGATION
========================================= */

.bottom-navigation{
    margin:60px 0 20px;
    text-align:center;
}

.back-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:40px;
    background:var(--secondary);
    color:#fff;
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.back-button:hover{
    background:#b95539;
    transform:translateY(-3px);
}

/* =========================================
FOOTER
========================================= */

.site-footer{
    background:#143d3b;
    color:#ffffff;
    text-align:center;
    padding:45px 20px;
    margin-top:80px;
}

.site-footer p{
    margin:8px 0;
    font-size:15px;
    color:#f2f2f2;
}

.site-footer strong{
    color:#ffffff;
}

/* =========================================
SCROLLBAR
========================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
    background:var(--secondary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b95539;
}

/* =========================================
SMOOTH HOVER EFFECTS
========================================= */

.feature-card,
.highlight-card,
.stat-card,
.back-button,
.back-btn{
    transition:all .3s ease;
}

/* =========================================
RESPONSIVE - TABLET
========================================= */

@media(max-width:992px){

.hero h1{
    font-size:48px;
}

.article-content{
    padding:40px;
}

.article-content h2{
    font-size:36px;
}

.article-content h3{
    font-size:24px;
}

.author-card{
    flex-direction:column;
    text-align:center;
}

.stats-grid{
    grid-template-columns:1fr;
}

.feature-grid{
    grid-template-columns:repeat(2,1fr);
}

.highlights-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* =========================================
RESPONSIVE - MOBILE
========================================= */

@media(max-width:768px){

.header-wrapper{
    padding:0 18px;
}

.logo h2{
    font-size:28px;
}

.logo-circle{
    width:42px;
    height:42px;
    font-size:17px;
}

.back-btn{
    padding:10px 18px;
    font-size:13px;
}

.hero{
    padding-top:120px;
    padding-bottom:50px;
}

.hero-content{
    padding:0 20px;
}

.hero h1{
    font-size:36px;
    line-height:1.2;
}

.hero-subtitle{
    font-size:17px;
}

.article-meta{
    flex-direction:column;
    align-items:flex-start;
}

.cover-image{
    padding:0 20px;
}

.article-container{
    padding:0 20px 50px;
}

.article-content{
    padding:28px;
}

.article-content h2{
    font-size:30px;
}

.article-content h3{
    font-size:22px;
}

.article-content p,
.article-content li{
    font-size:15px;
}

.feature-grid,
.highlights-grid{
    grid-template-columns:1fr;
}

.notice-box,
.highlight-box,
.info-box,
.alert-box{
    flex-direction:column;
}

.summary-box,
.disclaimer-box{
    padding:25px;
}

.author-card{
    padding:25px;
}

.author-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.comparison-table table{
    min-width:700px;
}

.back-button{
    width:100%;
    justify-content:center;
}

}

/* =========================================
SMALL DEVICES
========================================= */

@media(max-width:480px){

.hero h1{
    font-size:30px;
}

.hero-subtitle{
    font-size:15px;
}

.article-content{
    padding:22px;
}

.article-content h2{
    font-size:26px;
}

.article-content h3{
    font-size:20px;
}

.logo h2{
    font-size:24px;
}

.back-btn{
    padding:8px 14px;
    font-size:12px;
}

.site-footer p{
    font-size:13px;
}

}