* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}

body {
    font-family: Arial, Helvetica, sans-serif;
background: #111;
color: #fff;
overflow-x: hidden;
line-height: 1.6;
}

.container {
display: block;
margin-left: 260px;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 100%);
    padding: 40px 30px;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.logo {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5c400;
    line-height: 1.4;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
   
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar nav a {
    display: block;
    padding: 12px 16px;
    color: #999;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 0;
}

.sidebar nav a:hover {
    color: #f5c400;
    background-color: rgba(245, 196, 0, 0.1);
    border-left-color: #f5c400;
    padding-left: 20px;
}

.sidebar nav a.active {
    color: #f5c400;
    background-color: rgba(245, 196, 0, 0.15);
    border-left-color: #f5c400;
    padding-left: 20px;
    font-weight: 600;
}

/* Hero Section */
.hero {
display: flex;
position: relative;
width: 100%;
height: 100vh;
}

.hero-image {
width: 50%;
background: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2") center/cover no-repeat;
}

.hero-text {
width: 50%;
padding: 80px 60px;
background: #151515;
display: flex;
flex-direction: column;
justify-content: center;
}

/* Alternating layout */
.hero:nth-child(odd) .hero-image {
order: 1;
}

.hero:nth-child(odd) .hero-text {
order: 2;
}

.hero:nth-child(even) .hero-image {
order: 2;
}

.hero:nth-child(even) .hero-text {
order: 1;
}

.hero-text h2 {
font-size: 42px;
margin-bottom: 20px;
}

.hero-text p {
color: #bbb;
margin-bottom: 30px;
line-height: 1.6;
}

.hero-text button {
width: fit-content;
padding: 12px 22px;
background: transparent;
color: #f5c400;
border: 2px solid #f5c400;
cursor: pointer;
font-weight: bold;
}

.hero-text button:hover {
background: #f5c400;
color: #000;
}

/* ===================== RESPONSIVE MEDIA QUERIES ===================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
.container {
margin-left: 200px;
}

.sidebar {
width: 200px;
padding: 30px 20px;
}

.logo {
font-size: 16px;
margin-bottom: 30px;
}

.sidebar nav a {
font-size: 12px;
padding: 10px 12px;
}

.hero {
height: auto;
flex-direction: column;
}

.hero-image {
width: 100%;
height: 300px;
}

.hero-text {
width: 100%;
padding: 40px 30px;
}

.hero-text h2 {
font-size: 32px;
}

.hero-text p {
font-size: 14px;
}
}
/* Mobile: 768px and below */
@media (max-width: 768px) {
.container {
margin-left: 0;
}

.sidebar {
width: 100%;
height: auto;
position: relative;
padding: 20px;
margin-bottom: 20px;
box-shadow: none;
border-bottom: 2px solid #f5c400;
}

.logo {
font-size: 18px;
margin-bottom: 15px;
text-align: center;
}

.sidebar nav {
display: flex;
flex-direction: row;
gap: 0;
flex-wrap: wrap;
}

.sidebar nav a {
flex: 1;
min-width: 80px;
padding: 10px 8px;
font-size: 11px;
text-align: center;
border-left: none;
border-bottom: 2px solid transparent;
margin: 5px;
}

.sidebar nav a:hover,
.sidebar nav a.active {
border-left: none;
border-bottom: 2px solid #f5c400;
padding-left: 8px;
background-color: transparent;
}

.hero {
height: auto;
flex-direction: column;
}

.hero-image {
width: 100%;
height: 250px;
order: 1 !important;
}

.hero-text {
width: 100%;
padding: 30px 20px;
order: 2 !important;
}

.hero-text h2 {
font-size: 24px;
margin-bottom: 15px;
}

.hero-text p {
font-size: 13px;
margin-bottom: 20px;
}

.hero-text button {
padding: 10px 18px;
font-size: 12px;
}
}

/* Small Mobile: 480px and below */
@media (max-width: 480px) {
.sidebar {
padding: 15px;
}

.logo {
font-size: 14px;
margin-bottom: 10px;
border-bottom: 1px solid #f5c400;
padding-bottom: 10px;
}

.sidebar nav {
gap: 0;
}

.sidebar nav a {
min-width: 60px;
padding: 8px 6px;
font-size: 10px;
margin: 2px;
}

.hero-image {
height: 200px;
}

.hero-text {
padding: 15px;
}

.hero-text h2 {
font-size: 18px;
margin-bottom: 10px;
}

.hero-text p {
font-size: 12px;
margin-bottom: 15px;
}

.hero-text button {
padding: 8px 15px;
font-size: 11px;
}
}
