/* ..... PAGE DIVS ..... */

/* ===== Home ===== */






/* ..... GLOBAL ..... */

*	{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {font-family: system-ui, sans-serif;}

img { max-width: 100%; height: auto; }


/* ..... CLASSES ..... */

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 129 / 80;
}
.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 18s infinite;
}

.slider img:nth-child(1) { animation-delay: 0s; }
.slider img:nth-child(2) { animation-delay: 3s; }
.slider img:nth-child(3) { animation-delay: 6s; }
.slider img:nth-child(4) { animation-delay: 9s; }
.slider img:nth-child(5) { animation-delay: 12s; }
.slider img:nth-child(6) { animation-delay: 15s; }

@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.slider img:nth-child(1) { animation-delay: 0s; }
.slider img:nth-child(2) { animation-delay: 3s; }
.slider img:nth-child(3) { animation-delay: 6s; }
.slider img:nth-child(4) { animation-delay: 9s; }
.slider img:nth-child(5) { animation-delay: 12s; }
.slider img:nth-child(6) { animation-delay: 15s; }

.Aimages {
    position: relative;
    z-index: auto;
    min-width: 0;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.Atext {
    position: relative;
    z-index: 1;
    text-align: left;
	max-width: 790px;
}
.courier {
	font-family: "Courier New";
	font-size: 2rem;
	color: #666;
}
/* ===== Data ===== */

.data {
    display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}
/* ===== Layout ===== */

.layout {
    display: flex;
}

/* ===== Sidebar ===== */

.sidebar {
    width: 180px;
    background: #111;
    color: white;
    height: 100vh;
    padding: 14.5rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
	text-align:right;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    transition: transform 0.3s ease;
    will-change: transform;
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar a:hover {
    color: white;
}

/* ===== Content ===== */

.content {
    margin-left: 180px;
    padding: 2rem;
    flex: 1;
}

/* ===== Menu Button ===== */

.menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 2rem;
    background: #111;
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1001;
    border-radius: 6px;
}

/* ===== Overlay ===== */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

/* ===== Mobile ===== */

@media (max-width: 768px) {

    .sidebar {
        transform: translateX(-100%);
        z-index: 1002;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .content {
        margin-left: 0;
        padding-top: 5rem;
    }

    .menu-btn {
        display: block;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
















