* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}


/* ===== HEADER ===== */

.header {

width: 100%;
position: sticky;
top: 0;
z-index: 999;

background: rgba(11,31,58,0.95);
backdrop-filter: blur(8px);

box-shadow: 0 4px 20px rgba(0,0,0,0.2);

}


.container {

max-width: 1200px;
margin: auto;
padding: 0 20px;

}


.nav-wrap {

display: flex;
align-items: center;
justify-content: space-between;
height: 75px;

}



/* ===== LOGO ===== */

.logo a {

color: white;
font-size: 20px;
font-weight: 700;
letter-spacing: 1px;
text-decoration: none;

}



/* ===== MENU ===== */

.nav ul {

display: flex;
gap: 35px;
list-style: none;
align-items: center;

}


.nav a {

color: white;
text-decoration: none;
font-weight: 500;
transition: 0.3s;

position: relative;

}


.nav a::after {

content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: gold;
transition: 0.3s;

}


.nav a:hover::after {

width: 100%;

}



/* ===== RIGHT ===== */

.nav-right {

display: flex;
align-items: center;
gap: 15px;

}



/* ===== BUTTON ===== */

.btn-kontak {

background: linear-gradient(45deg,gold,orange);
color: black;
padding: 10px 18px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;

transition: 0.3s;

}


.btn-kontak:hover {

transform: translateY(-2px);
box-shadow: 0 5px 10px rgba(0,0,0,0.3);

}



/* ===== BURGER ===== */

.burger {

display: none;
flex-direction: column;
cursor: pointer;

}


.burger span {

width: 26px;
height: 3px;
background: white;
margin: 4px;
border-radius: 3px;

}



/* ===== CLOSE ===== */

.close-menu {

display: none;

}



/* ===========================
MOBILE
=========================== */

@media (max-width: 900px) {


.nav {

position: fixed;
top: 0;
right: -100%;
width: 270px;
height: 100vh;

background: #0b1f3a;

transition: 0.35s;

padding-top: 80px;

box-shadow: -5px 0 20px rgba(0,0,0,0.4);

}


.nav.active {

right: 0;

}


.nav ul {

flex-direction: column;
gap: 25px;
padding-left: 25px;

}


.close-menu {

display: block;

position: absolute;
top: 15px;
right: 15px;

background: none;
border: none;

color: white;
font-size: 24px;
cursor: pointer;

}


.burger {

display: flex;

}


.btn-kontak {

display: none;

}



/* tombol kontak di dalam menu */

.mobile-kontak {

margin-top: 20px;

}


.btn-kontak-mobile {

display: inline-block;

background: gold;
color: black;

padding: 12px 18px;

border-radius: 6px;

font-weight: 600;

text-decoration: none;

}


}

/* ===== MOBILE MENU LEFT ALIGN ===== */

@media (max-width:900px){

.nav ul{

flex-direction: column;
align-items: flex-start;
gap: 20px;
padding-left: 25px;

}

.nav li{

width:100%;

}

.nav a{

display:block;
width:100%;

}


/* tombol kontak di menu */

.mobile-kontak{

margin-top:15px;
width:100%;

}

.btn-kontak-mobile{

display:block;
width:100%;

background: linear-gradient(45deg,gold,orange);
color:black;

padding:12px;

border-radius:6px;

font-weight:600;
text-align:center;

text-decoration:none;

}

}


/* posisi tombol kontak dekat menu */

.menu-kontak{
display:none;
}


@media (max-width:900px){

.menu-kontak{

display:block;

margin-top:15px;
padding-left:25px;
padding-right:25px;

}

.btn-kontak-mobile{

display:block;
width:100%;

background: linear-gradient(45deg,gold,orange);

color:black;

padding:12px;

border-radius:6px;

font-weight:600;

text-align:center;

text-decoration:none;

}

}
/* =====================
BLOG
===================== */

.blog-hero {
padding: 100px 0;
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url("../img/lotus-residence-medan.webp") center/cover;
color: white;
text-align: center;
}

.blog-hero h1 {
font-size: 36px;
margin-bottom: 10px;
}

.blog-hero p {
font-size: 16px;
opacity: 0.9;
}

/* list */

.blog-list {
padding: 80px 0;
background: #f5f7fa;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 25px;
}

/* card */

.blog-card {
background: white;
border-radius: 10px;
overflow: hidden;
text-decoration: none;
color: black;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: 0.3s;
}

.blog-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.blog-card h3 {
padding: 15px;
font-size: 16px;
}

.blog-card p {
padding: 0 15px 15px;
font-size: 14px;
color: #555;
}

.blog-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* mobile */

@media(max-width:900px){
.blog-grid {
grid-template-columns: 1fr;
}
}

/* =====================
FOOTER
===================== */

.footer{

background:#0b1f3a;
color:white;

padding-top:60px;

}


.footer-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}


.footer-col h3{

margin-bottom:10px;

}


.footer-col h4{

margin-bottom:10px;

}


.footer-col p{

font-size:14px;
line-height:1.6;

}


.footer-col ul{

list-style:none;
padding:0;

}


.footer-col li{

margin-bottom:8px;

}


.footer-col a{

color:white;
text-decoration:none;

}


.footer-col a:hover{

color:black;

}


/* WA button */

.footer-wa{

display:inline-block;

margin-top:10px;

background:gold;
color:black;

padding:8px 14px;

border-radius:6px;

font-weight:600;

}


/* bottom */

.footer-bottom{

text-align:center;

margin-top:40px;

padding:20px;

background:#081529;

font-size:14px;

}


/* mobile */

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

}

}

.article {
padding: 80px 0;
background: #f9fbfd;
}
.article-container {
max-width: 800px;
margin: auto;
padding: 0 20px;
}
.article h1 {
font-size: 32px;
margin-bottom: 20px;
}
.article img {
width: 100%;
border-radius: 10px;
margin: 20px 0;
}

.article h2 {
margin-top: 30px;
margin-bottom: 10px;
}

/* ===== ARTIKEL TEXT ===== */
.article p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

/* ===== LINK DALAM ARTIKEL ===== */
.article a {
  color: inherit; /* warna normal (ikut teks) */
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transition: 0.3s;
}

.article a:hover {
  color: #c59d00; /* gold */
  border-bottom: 1px solid #c59d00;
}

.cta-box {
background: linear-gradient(45deg, gold, orange);
padding: 25px;
border-radius: 10px;
margin-top: 40px;
text-align: center;
}
.cta-box a {
display: inline-block;
margin-top: 10px;
background: black;
color: white;
padding: 10px 20px;
border-radius: 6px;
text-decoration: none;
}
.cta-box p {
color: black;
text-align: center;
margin-top: 5px;
}

