/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ff0000;
	border-radius: 15px;
}

#wrapper-1300 {
    width: 1300px;
    margin: 0 auto;
    background: #fff;
	border-radius: 15px;
}


/* unvisited link */
a:link {
	text-decoration:none;
  color: white;
}

/* visited link */
a:visited {
	text-decoration:none;
  color: white;
}

/* mouse over link */
a:hover {
  text-decoration:none;
  color: white;
}

/* selected link */
a:active {
	text-decoration:none;
  color: white;
}


/* Header Styles */


header {
    display: flex;
    justify-content: space-between; /* Forces left/right alignment */
    align-items: center; /* Vertically centers content */
    padding: 0px 20px;
	background: #8080ff;
    color: white;
	border-radius: 15px 15px 0px 0px;
	box-shadow: 0px 0px 10px #000;
}

.engraved-text {
  background-color: #666666;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 3px 5px 1px rgba(245, 245, 245, 0.5);
}

.embossed-text {
  background-color: #666666;
  background-clip: text;
  -webkit-background-clip: text;
  color: #f0f0f0;
  text-shadow: 1px 4px 4px #555555;
}

/* Left-aligned text */
.header-text {
	width:100%;
	font-family:tahoma;
	font-size:45px;
	font-weight:bold;
	line-height:auto;
	text-shadow: 3px 3px #808080;
    flex: 2; /* Takes available space */
	  background-color: #666666;
	  background-clip: text;
	  -webkit-background-clip: text;
	  color: #f0f0f0;
	text-shadow: 3px 3px 0 #000, 1px -1px 0 #ffffff, -1px 1px 0 #000, 1px 1px 0 #000;
}
.header-text2 {
	font-family:arial;
	top:-30px;
	font-weight:bold;
	line-height:24px;
    flex: 2; /* Takes available space */
	  background-clip: text;
	  -webkit-background-clip: text;
	  color: #ffffff;
	text-shadow: 3px 3px 0 #000, 1px -1px 0 #ffffff, -1px 1px 0 #000, 1px 1px 0 #000;
}

line2 {
    font-size: 24px;
}

line3 {
    font-size: 20px;
	line-height:2em;
	color:white;
	  background-clip: text;
	  -webkit-background-clip: text;
	text-shadow: 3px 3px 0 #000, 1px -1px 0 #ffffff, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* Right-aligned logo */
.header-logo {
    margin-left: 20px; /* Adds spacing between text and logo */
}

.logo {
    height: 90px; /* Adjust size */
    width: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    .header-logo {
        margin: 15px 0 0 0;
    }
}





/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }
    .logo-container {
        text-align: center;
        margin-top: 10px;
    }
}


/* Menu Styles */
.mainmenu {
    position: sticky; /* Makes the menu stick */
    top: 0;          /* Stick to the top of the viewport */
    z-index: 1000;   /* Ensures menu stays above other content */
    width: 100%;     /* Full width */
    background: #ffff00; /* Match your menu color */
	box-shadow: 0px 0px 0px #000;
	color:#000000;
}

.mainmenu.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffff00; /* Match your menu color */
    animation: slideDown 0.3s ease-out;
	color:#000000;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes slideDown1 {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes slideDown3 {
    from { transform: translateY(-50px); opacity:0;}
    to { transform: translateY(0);opacity:1; }
}



/* Add padding to body to prevent content jump */
body.sticky-menu-padding {
    padding-top: 60px; /* Adjust to match menu height */
}


.mainmenu ul {
    display: flex;
    list-style: none;
}

.mainmenu li {
    position: relative;
}

.mainmenu a {
	font-family: Helvetica;
	font-size: 14px;
	font-weight: bold;
	color: #0000ff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background 0.3s;
}

.mainmenu a:visited {
    text-decoration: none;
	color: #0000ff;
}

.mainmenu a:linked {
    text-decoration: none;
	color: white;
}

.mainmenu a:hover {
    background: #ff0000;
	color: white;
	border-radius: 5px;
}


/* Main menu items */
.nav-menu > ul > li > a {
    font-weight: normal;
 	font-size: 12px;
   padding: 12px;
}

/* Mobile menu button (if exists) */
.navbar-toggler {
    font-size: 12px;
}
/* Dropdown Menu */
.mainmenu ul ul {
	color: white;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #cc0066;
    z-index: -40;
	box-shadow: 0px 0px 13px #000;
    animation: slideDown3 0.4s ease-in-out;
}

.mainmenu ul ul li > a {
 	font-size: 12px;
	font-weight: normal;
	color: #ffccff;
	line-height:1em;
	border-radius: 5px;
}

.mainmenu ul ul li > a:visited {
	color: #ffccff;
}

.mainmenu ul ul li > a:hover {
	color: #ffffff;
}

.mainmenu li:hover > ul {
    background: #336600;
    display: block;
	opacity:0.9;
    width: 270px;
}

/* Layout Utama */
.container-main {
    display: flex;
    min-height: 500px;
    background: #ffffff;
	box-shadow: 0px 0px 10px #000;
}


.sidebar-left, .sidebar-right {
    flex: 0 0 350px;
    padding: 15px;
    background: #ffcc00;
}

.content-area {
    flex: 1;
    padding: 15px 20px;
    background: #ffffff;
    margin-bottom: 30px;
}

/* Footer Styles */
.footer {
    background: #1e293b;
    color: white;
    padding: 10px 0;
	border-radius: 0px 0px 15px 15px;
	box-shadow: 0px 0px 10px #000;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.footer-bottom {
    padding: 20px;
    text-align: center;
    background: #0f172a;
}

.copyright {
    padding: 10px;
    text-align: center;
	color:white;
    font-size: 0.9em;
	font-weight:bold;
}

/* Responsive Design */
@media (max-width: 1300px) {
    #wrapper-1300 {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .container-main {
        flex-direction: column;
    }
    
    .sidebar-left, .sidebar-right {
        flex: 1;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mainmenu ul {
        flex-direction: column;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    .module {
        margin-bottom: 20px;
    }
}

.cleared
{
   display:block;
   clear: both;
   float: none;
   margin: 0;
   padding: 0;
   border: none;
   font-size: 0;
   height:0;
   overflow:hidden;
}

.reset-box
{
   overflow:hidden;
   display:table;
}

/* Header Module/Block Styles */
.header-module {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.header-module-title {
    background: #8080ff;
    color: white;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 3px solid #6060cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-module-title .icon {
    margin-right: 10px;
    font-size: 20px;
}

.header-module-content {
    background: #ffffff;
    padding: 15px;
    border: 1px solid #e0e0e0;
}

/* Header Banner Block */
.header-banner {
    background: linear-gradient(135deg, #8080ff 0%, #6060cc 100%);
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.header-banner-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header-banner-subtitle {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* Header Card Block */
.header-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.header-card-image {
    flex: 0 0 35%;
    background-size: cover;
    background-position: center;
    min-height: 200px;
}

.header-card-content {
    flex: 1;
    padding: 20px;
}

.header-card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.header-card-text {
    color: #666;
    margin-bottom: 15px;
}

/* Featured Header Block */
.featured-header {
    position: relative;
    background: #8080ff;
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.featured-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 0 0 0 150px;
    z-index: 1;
}

.featured-header-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.featured-header-content {
    position: relative;
    z-index: 2;
}

/* Header Tab Block */
.header-tabs {
    margin-bottom: 20px;
}

.header-tab-links {
    display: flex;
    background: #f0f0f0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.header-tab-link {
    padding: 12px 20px;
    background: #e0e0e0;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.header-tab-link:hover {
    background: #d0d0d0;
}

.header-tab-link.active {
    background: #8080ff;
    color: white;
}

.header-tab-content {
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-card {
        flex-direction: column;
    }
    
    .header-card-image {
        flex: 0 0 200px;
    }
    
    .header-tab-links {
        flex-wrap: wrap;
    }
    
    .header-tab-link {
        flex-grow: 1;
        text-align: center;
    }
}


