* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; } 

body {
    background: radial-gradient(circle at left center, #0e0e14 0%, #1b1f2b 100%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    color: white;
    line-height: 1.6;
}

.container { max-width: 1100px; width: 100%;margin: 0 auto; padding: 10px; }
a { text-decoration: none; color: inherit; }

.glass-bar {
    position: fixed; top: 0; width: 100%; height: 70px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    z-index: 1000; display: flex; align-items: center;
}
.nav-content { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; }
#smallico { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; margin-right: 10px;}
.Nav { font-size: 20px; font-weight: 700; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { font-size: 16px; opacity: 0.8; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.hero {
    height: 20vh; 
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/hero-bg.jpg') center/cover no-repeat;
    margin-bottom: 50px;
}
.hero h2 { font-size: 3rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 25px; color: #dddddd; }

.data { font-weight: bold; font-size: 1.3rem; margin-bottom: 2px; }

.section-block { padding: 40px 0; margin-bottom: 50px; }
.section-title { font-size: 2rem; margin-bottom: 30px; border-left: 5px solid #fff; padding-left: 15px; }

.status-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.status-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px; border-radius: 10px;
    display: flex; align-items: center; gap: 15px;
    border: 1px solid rgba(255,255,255,0.1); flex: 1; min-width: 250px;
}
.status-card:hover {
    transition: 0.2s;

}


.dot { width: 12px; height: 12px; border-radius: 50%; display: block; box-shadow: 0 0 10px currentColor; }
.open .dot { background-color: #2ecc71; color: #2ecc71; }  
.closed .dot { background-color: #e74d3c00; color: #ff190000; }

.main-grid { display: flex; gap: 20px; flex-wrap: wrap; margin-top: -50px;}
.card {
    flex: 1; min-width: 300px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.card:hover { transform: translateY(-5px);  }
.img-placeholder {
    position: relative; width: 100%; height: 700px;
}
.card-img {object-fit: cover; border-radius: 0%;}


.card1 {
    flex: 1; min-width: 300px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.card1:hover { transform: translateY(-5px);  }

.img-placeholder1 {
    position: relative; width: 100%; height: 300px;
}

.btn {
    display: inline-block; background: #fff; color: #1a1d26;
    padding: 10px 20px; border-radius: 5px; font-weight: bold; transition: 0.3s;
}
.btn:hover { background: #ccc; }

.text-box { background: rgba(0,0,0,0.2); padding: 30px; border-radius: 15px; }

.site-footer {
    background: rgba(0,0,0,0.3); padding: 50px 0 20px; margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-col h4 { margin-bottom: 15px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #aaa; transition: 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; margin-top: 40px; color: #555; font-size: 0.9rem; }


.linecontent1, .linecontent2 {
    display: inline-flex;   
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;            
    
    background-color: #1c1c24;     

    padding: 15px;           
    border-radius: 8px;     
    margin: 10px;            
}

h1 {
    margin: 0;             
    font-size: 1.3rem;
}

.card-img{
    border-radius: 2px;
    height: 100%;
    width: 100%;
}
.card1{
    height: 100%;
    width: 100%;
    display: none;
}

@media (max-width: 768px) {
    .status-grid { flex-direction: column; }
    .card-img{width: 110%; height: 40vh; border-radius: 0px; margin-top: 100px; margin-left: -10px;}
    .card-img1{display: none;}
    .section-block{margin-bottom: -20px;}
    .img-placeholder1{display: none ;}
}

@media (max-height: 1000px) {
    .hero {transition: 0.2s; height: 50vh; }
}

