* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif; /* Default body text font */
    background-color: #ffffff;
    color: #333;
}

/* Desktop Menu */
.desktop-menu {
    position: fixed;
    left: 0;
    top: 220px;
    width: 260px;
    height: 60vh;
    background-color: #ffffff;
    z-index: 1000;
    display: block;
	text-align: right;
}

.menu-container {
    height: 100%;
    overflow-y: auto;
    padding: 20px 0;
}

.menu-item {
    display: block;
    padding: 20px 30px;
    color: #10075a;
    text-decoration: none;
    font-size: 40px;
    border-bottom: 1px solid #E8E8E8;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: #10075a;
    color: #fae7bc;
}

.menu-item.active {
    background-color: #10075a;
    color: #fae7bc;
	font-weight: bold;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: relative;
    background-color: #ffffff;
    padding: 15px 0;
    z-index: 1000;
}

.mobile-menu-container {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 50px;
    -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    scroll-behavior: smooth;
}

.mobile-menu-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar on mobile */
}

.mobile-menu-items {
    display: flex;
    white-space: nowrap;
}

.mobile-menu-item {
    color: #10075a;
    text-decoration: none;
    font-size: 24px;
    padding: 10px 20px;
    border-right: 1px solid #E8E8E8;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    color: #fae7bc;
	background-color: #10075a;
}

.mobile-menu-item.active {
    color: #fae7bc;
	background-color: #10075a;
	font-weight: bold;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fae7bc;
    color: #b27e04;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: #b27e04;
	color: #fae7bc;
}

.nav-left {
    left: 5px;
}

.nav-right {
    right: 5px;
}

/* Main Content */
.main-content {
    margin-left: 240px;
    min-height: 100vh;
    padding: 10px 0px 0px 40px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    grid-template-rows: auto 1fr;
    gap: 40px;
	max-width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    align-items: start;
}

.mobile-image {
    display: none;
}

.text-content {
    grid-column: 1;
    grid-row: 1 / -1;
}

.desktop-image {
    grid-column: 2;
    grid-row: 1 / -1;
    position: sticky;
    top: 40px;
}

.year {
    font-size: 80px;
    color: #10075a;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
	padding: 40px 0px 0px 0px;
}

.title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #b27e04;
    line-height: 1.2;
}

.content {
    font-size: 20px;
    line-height: 1.6;
    color: #0e0b1e;
    text-align: left;
    margin-bottom: 20px;
}

.responsive-image {
    width: 100%;
    height: auto;
    /* border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease; */
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Responsive Design */

/* Target text content on desktops */

@media (min-width: 1600px) {
.text-content {
	margin: 0 auto;
	max-width: 80%;
	}
}

/* resize menu on desktops 1 of 2 */

@media (max-width: 1600px) {
.desktop-menu {
    width: 200px;
	}
}
/* resize menu image and content on desktops 2 of 2 */
@media (max-width: 1400px) {
.desktop-menu {
    width: 150px;
	}
	
.main-content {
    margin-left: 140px;
	}

.content-wrapper {
    grid-template-columns: 1fr 400px;
	}
}



@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding: 20px;
    }

    .content-wrapper {
        display: block;
    }

    .mobile-image {
        display: block;
        margin-bottom: 30px;
    }

    .desktop-image {
        display: none;
    }

    .year {
        font-size: 36px;
        margin-bottom: 15px;
		padding: 0px;
    }

    .title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 15px;
    }

    .year {
        font-size: 30px;
    }

    .title {
        font-size: 24px;
    }

    .content {
        font-size: 15px;
    }

    .mobile-menu-item {
        font-size: 20px;
        min-width: 80px;
        padding: 8px 15px;
    }
}

/* Smooth scrolling for menu */
.menu-container {
    scrollbar-width: thin;
    scrollbar-color: #fff #fff;
}

.menu-container::-webkit-scrollbar {
    width: 8px;
}

.menu-container::-webkit-scrollbar-track {
    background: #fff;
}

.menu-container::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 4px;
}

.menu-container::-webkit-scrollbar-thumb:hover {
    background: #fff;
}


/* HEADER SECTION Starts*/
		
    .header {
		background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 35px 0px 15px 0px;
      border-bottom: 2px solid #f7c560;
    }

    .logo {
      height: 46px;
    }

    .horizontal-line {
		background: #fff !important;
		border-bottom: 1px solid #888888;
		box-shadow: 0px 3px 6px #888888;
		padding: 16px;
		}
		
	        .logo-left {
            max-width: 1000px;
            margin: 0 auto;
        }	
		
		@media (max-width:600px)  {
		
		.header {
		background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0px 0px 0px;
      border-bottom: 2px solid #f7c560;
    }

    .logo {
      height: 46px;
    }

    .horizontal-line {
		background: #fff !important;
		border-bottom: 1px solid #c7c6c6;
		box-shadow: 0px 3px 6px #c7c6c6;
		padding: 6px;
		}
		
	        .logo-left {
            max-width: 1000px;
            margin: 0 auto;
        }
	}
		
/* Content transition animation */
#content-area {
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

#content-area.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

#content-area.fade-in {
    opacity: 1;
    transform: translateY(0);
}
		/* Header Style End */