/* --- BASE STYLES --- */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; background-color: #0b0b0c; }

body {
    color: #f3f3f4;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* --- SHARED NAV STRUCTURE --- */
    nav ul { list-style: none; padding: 0; margin: 0; display: flex; }
    nav a { text-decoration: none; color: #f3f3f4; transition: 0.3s; }

/* --- MOBILE STYLES (Default / Up to 480px) --- */
    @media (max-width: 768px) {
      .nav-overlay {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
        background: #0b0b0c; z-index: 1000; transition: 0.3s;
        padding: 80px 24px; overflow-y: auto;
      }
      .nav-overlay.active { left: 0; }
      .nav-overlay ul { flex-direction: column; }
      .nav-overlay li { margin-bottom: 13px; font-size: 12px; }
      .nav-overlay .dropdown ul { padding-left: 15px; margin-top: 10px; border-left: 1px solid rgba(215,180,106,.35); font-size: 11px; }
      .close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--gold); font-size: 30px; }
	  
    }
	


    /* --- MOBILE STYLES (Default / Up to 480px) --- */
    @media (max-width: 480px) {
      .nav-overlay {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
        background: #0b0b0c; z-index: 1000; transition: 0.3s;
        padding: 40px 24px; overflow-y: auto;
      }
      .nav-overlay.active { left: 0; }
      .nav-overlay ul { flex-direction: column; }
      .nav-overlay li { margin-bottom: 13px; font-size: 12px; }
      .nav-overlay .dropdown ul { padding-left: 15px; margin-top: 10px; border-left: 1px solid rgba(215,180,106,.35); }
      .close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #d7b46a; font-size: 30px; }
    }

    /* --- DESKTOP STYLES (Regular Horizontal Menu > 480px) --- */
    @media (min-width: 481px) {
      .burger, .close-menu { display: none !important; }
      
      .nav-overlay {
        position: static; width: auto; height: auto; background: transparent;
        padding: 0; display: block; margin-bottom: 20px;
      }

      .nav-overlay > ul {
        justify-content: center; gap: 25px;
        border-bottom: 1px solid rgba(215,180,106,.35); padding-bottom: 15px;
      }

      .nav-overlay a { font-size: 14px; font-weight: 600; }
      .nav-overlay a:hover { color: #d7b46a; }

      /* Dropdown Logic for Desktop */
      .dropdown { position: relative; }
      .dropdown ul {
        position: absolute; top: 100%; left: 0; background: #1a1a1e;
        flex-direction: column; min-width: 220px; border: 1px solid rgba(215,180,106,.35);
        display: none; z-index: 10; border-radius: 8px; padding: 10px 0;
      }
      .dropdown:hover > ul { display: flex; }
      .dropdown ul li { margin: 0; }
      .dropdown ul li a { padding: 10px 20px; display: block; text-transform: none; }
      .dropdown ul li a:hover { background: rgba(215,180,106,0.1); }
	  
    }

    /* --- HERO UI --- */
    .burger { width: 34px; height: 34px; border: 1px solid rgba(215,180,106,.35); background: rgba(255,255,255,.04); border-radius: 10px; cursor: pointer; 
	display: grid; place-items: center; }
    .burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 18px; height: 2px; background: #f3f3f4; 
	position: relative; transition: 0.3s; }
    .burger span::before { top: -6px; position: absolute; }
    .burger span::after { top: 6px; position: absolute; }

/* --- PAGE WRAPPER (Now containing the gradients) --- */
.page-wrapper {
    min-height: 60vh;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    /* Gradient logic moved here from body */
    background:
        radial-gradient(900px 800px at 90% 30%, rgba(255,255,255,.05), transparent 60%),
        radial-gradient(800px 600px at 20% 20%, rgba(255,255,255,.06), transparent 55%),
        radial-gradient(900px 800px at 90% 30%, rgba(255,255,255,.05), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* --- HEADER & TOP BAR --- */
.header-container {
    max-width: 1300px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.info-bar {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid rgba(215,180,106,.35);
    border-radius: 11.5px;
    background: rgba(0,0,0,.22);
    box-shadow: 0 22px 55px rgba(0,0,0,.55);
    text-align: center;
}

.info-text {
    font-size: 13px;
    color: rgba(215,180,106,.92);
    font-weight: 600;
    text-transform: capitalize;
}

/* --- NAVIGATION & MENU --- */
.navigation-menu a { text-decoration: none; color: #f3f3f4; transition: 0.3s; }

.menu-toggle {
    width: 34px; height: 34px;
    border: 1px solid rgba(215,180,106,.35);
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px;
    background: #f3f3f4; position: relative; transition: 0.3s;
}
.menu-toggle span::before { top: -6px; position: absolute; }
.menu-toggle span::after { top: 6px; position: absolute; }

/* --- MAIN CONTENT CONTAINER --- */
.content-section {
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid rgba(215,180,106,.28);
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    box-shadow: 0 22px 55px rgba(0,0,0,.55);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(700px 380px at 50% 0%, rgba(215,180,106,.20), transparent 55%),
        radial-gradient(520px 520px at 50% 65%, rgba(255,255,255,.06), transparent 65%);
      pointer-events:none;
}

.content-box { padding: 5px; position: relative; }

/* --- BRAND IDENTITY --- */
.identity-block {
    display: flex; flex-direction: column; align-items: center;
    gap: 5px; margin-top: 5px; text-align: center;
}

.identity-logo { width: 40px; height: 40px; }
.identity-logo img { width: 100%; height: 100%; object-fit: cover; }

.identity-title {
    font-family: "Poppins", sans-serif;
    font-size: 22px; margin: 0; font-weight: 600; color: #f3c963;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215,180,106,.55), transparent);
    margin: 14px 0 12px;
}

.section-tagline { text-align: center; font-size: 13px; color: #f3f3f4; margin: 5px 0; }

/* --- GRID SYSTEM --- */
.layout-grid { display: flex; align-items: center; gap: 10px; }
.grid-column { flex: 1; }

.features-container {
    display: grid; grid-template-columns: 1fr; gap: 10px; padding: 6px;}

.feature-card {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    border-radius: 12px;
    padding: 12px;
    display: flex; gap: 12px; align-items: center;
}

.feature-icon {
    width: 50px; height: 50px; border-radius: 5px;
    border: 1px solid rgba(215,180,106,.35);
    background: rgba(215,180,106,.10);
    display: grid; place-items: center; flex: 0 0 auto;
}

.feature-label {
    margin: 0; font-size: 20px; font-weight: 500; font-family: "Poppins", sans-serif;
}

/* --- PROFILE DETAILS --- */
.profile-image-box { margin: 5px auto 0; width: 40%; }
.profile-img img { width: 100%; display: block; }

.profile-details { text-align: center; padding: 4px 0; }
.profile-name {
    font-family: "Poppins", sans-serif; font-size: 17px;
    color: #d7b46a; font-weight: 600; margin: 0;
}

.profile-role { margin: 4px 0 0; font-size: 12px; color: rgba(243,243,244,.85); }
.profile-role strong { color: #d7b46a; }
.profile-bio { margin: 3px 0 0; font-size: 11px; color: rgba(243,243,244,.8); }

/* --- DESKTOP NAVIGATION --- */
@media (min-width: 481px) {
    .menu-toggle, .menu-close { display: none !important; }
    .nav-links {
        list-style: none; padding: 0; margin: 0 0 20px;
        display: flex; justify-content: center; gap: 25px;
        border-bottom: 1px solid rgba(215,180,106,.35); padding-bottom: 15px;
    }
    .nav-links a { font-size: 14px; font-weight: 600; }
    .nav-links a:hover { color: #d7b46a; }

    .has-submenu { position: relative; }
    .submenu {
        position: absolute; top: 100%; left: 0; background: #1a1a1e;
        display: none; flex-direction: column; min-width: 220px;
        border: 1px solid rgba(215,180,106,.35); border-radius: 8px;
        padding: 10px 0; z-index: 10; list-style: none;
    }
    .has-submenu:hover .submenu { display: flex; }
    .submenu li a { padding: 10px 20px; display: block; font-size: 13px; }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .navigation-menu {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
        background: #0b0b0c; z-index: 1000; transition: 0.3s;
        padding: 80px 24px; overflow-y: auto;
    }
    .navigation-menu.active { left: 0; }
    .nav-links { flex-direction: column; list-style: none; padding: 0; }
    .menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #d7b46a; font-size: 30px; }
    .layout-grid { flex-direction: column; }
	.identity-title { font-size: 17.5px; }
	.info-bar { padding: 6px 12px;}
	.info-text {font-size: 10.5px;}
	.section-tagline { font-size: 11px; }
	.profile-image-box { margin: 0px auto 0; width: 40%; }
	.profile-name {font-size: 14px;}
.profile-role { font-size: 10px; }
.profile-bio { font-size: 9px; }
.content-box { padding: 3px 5px; }
	
}

/* --- SMALL MOBILE --- */
@media (max-width: 480px) {
    .features-container { grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .feature-card { padding: 4px 6px; flex-direction: inline; text-align: left; gap: 3px; }
    .feature-icon { width: 20px; height: 20px; font-size: 12px; }
    .feature-label { font-size: 8.5px; text-align: center; }
    .identity-title { font-size: 17.5px; }
	.info-bar { padding: 6px 12px;}
	.info-text {font-size: 10.5px;}
	.section-tagline { font-size: 11px; }
	.profile-image-box { margin: 0px auto 0; width: 40%; }
	.profile-name {font-size: 14px;}
.profile-role { font-size: 10px; }
.profile-bio { font-size: 9px; }
.content-box { padding: 3px 5px; }
}