*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#F2F0EF;
    font-family:"Be Vietnam Pro", sans-serif;
}

#menu-toggle{
    display:none;
}

.header{
    width:95%;
    margin:20px auto;
    padding:18px 35px;
    border-radius:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    z-index:1;
}

.left, .right{
    display:flex;
    align-items:center;
    gap:15px;
}

.menu-icon img{
    width:22px;
    cursor:pointer;
}
.icon{
    width:20px;
}

.flag{
    width:26px;
}
.title{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    font-weight:700;
    letter-spacing:2px;
}
.sidebar{
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: rgba(20,20,20,0.98);
    padding-top: 120px;
    transition: 0.3s ease;
    z-index: 3000;   
}
.sidebar a{
    display:block;
    color:white;
    padding:15px 30px;
    text-decoration:none;
    font-weight:500;
}
.sidebar a:hover{
    background:rgba(255,255,255,0.1);
}

#menu-toggle:checked ~ .sidebar{
    left:0;
}
.content{
    width:95%;
    margin:20px auto;
    padding:60px 40px;
    border-radius:12px;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
}
.info{
    max-width:920px;
    margin:0 auto;
    text-align:center;
    line-height:1.8;
}
.info h3{
    color:#0f2f5f;
    font-size:34px;
    font-weight:800;
}
.info p{
    color:#555;
}
.video_wrapper{
    margin:50px -40px 0 -40px;
}
.video_wrapper video{
    width:100%;
    display:block;
    pointer-events:none;
}
.experience_section{
    width:90%;
    margin:60px auto;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:60px;
}
.experience_section h2{
    color:#c1121f;
    margin-bottom:30px;
}
.info_block{
    margin-bottom:35px;
}
.info_block a{
    font-size:22px;
    margin-bottom:10px; color:#0f2f5f; text-decoration:none ;
}

.info_block p{
    color:#666;
}
.species-detail-header {
            background:#004185;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }
        .bcb-card {
            background-color: #eefbff;
            padding: 30px;
            border-radius: 20px; margin-top: 20px;}
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px; row-gap: 20px;
        }
        .stats-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
        }
        .stats-table td:first-child {
            font-weight: bold;
            color: #0077be;
        }
.feedback-box {
    background: #004185; color: white; padding: 50px;margin:40px ; 
    border-radius: 25px; text-align: center;
}
.feedback-box input, .feedback-box textarea {
    width: 80%; padding: 15px; margin: 10px 0; border-radius: 10px; border: none;
}
.btn-submit {
    background: #ffd700; color: #003366; padding: 15px 40px;
    font-weight: bold; border: none; border-radius: 30px; cursor: pointer;
}
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; 
  transform: translate(-50%, -50%); 
  object-fit: cover; 
}
.camon-card {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 40%;
}
.footer{
    text-align:center;
    padding:25px;
    margin-top:40px;
    color:#666;
}
.explore_section {
    margin-top: 60px;
    text-align: center;
}
.explore_section h2 {
    color: #0f2f5f;
    margin-bottom: 20px;
}
.explore_text {
    max-width: 900px;
    margin: auto;
    color: #555;
    line-height: 1.8;
}
.gallery_section {
    margin-top: 60px;
    text-align: center;
}

.gallery_section h2 {
    margin-bottom: 30px;
    color: #c1121f;
}
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}
.stats_section {
    margin-top: 70px;
    text-align: center;
}

.stats_section h2 {
    color: #0f2f5f;
    margin-bottom: 20px;
}

.cta_section {
    margin-top: 70px;
    padding: 40px;
    text-align: center;
    background: #004185;
    color: white;
    border-radius: 15px;
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    background: #ffd700;
    color: #003366;
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}
.credits{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid #ddd;
    text-align:center;
}
.credits h3{
    color:#0f2f5f;
    margin-bottom:20px;
}
.credits p{
    margin-bottom:15px;
    color:#555;
    line-height:1.6;
}