
	/* Universal box-sizing rule */
*, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

/* Basic styling for the body */
body {
            font-family: 'Arial', sans-serif;
            line-height: ;
            color: #333;
            background-color: #f4f4f4;
            display: flex; /* Make body a flex container */
            flex-direction: column; /* Stack header, nav, main, footer vertically */
            min-height: 100vh; /* Ensure body takes full viewport height */
        }

       /* Header with Monogram */
    header {
      background: linear-gradient(-90deg,#009900, #fff);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 30px;
      border-bottom: 4px solid #fff;
    }
 /* Logo Image */
    header img.logo {
	width:120px;
      height:100px;
      border-radius 10px;
      box-shadow 0 4px 8px rgba(0,0,0,0.2);
	  
    }
 



/* Navigation styles */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Use flex-wrap on a single line */
    background-color:  #2c3e50;
    padding: 5px;
    border-right: 1px solid #ccc;
    transition: background-color 0.3s ease-in-out;
}

/* Flexible link button styles */
.flex-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: blue;
    text-decoration: none;
    margin-left: 5px;
    margin-top: 2px;
    margin-bottom: 4px;
}

.flex-link-btn: {
    background-color: #CCD4BC;
}

.flex-link-btn:active {
    background-color: #2e7d34;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Main content styles */
main {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    padding: 10px;
	
}

/* Content area and column styles */
.content-area {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    margin: 5px; /* Space between content and sidebar */
}

.column {
	
    width: 45%; /* Default width for larger screens */
    margin: 2.5%; /* Added semicolon for margin */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
	background-color: #fff;
	border-color:1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.column img {
            max-width: 80%; /* Make images responsive within their columns */
            height: 250px;
            border-radius: 5px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
margin-left:35px;
margin-top: 10px;

			
        }
		
		.column article {
            text-align: justify; /* Use CSS for justification */
            margin-top: 10px;
        }
		.column h2 {
   
    font-size: 2.2em;
   
}

	.read-more {
    display: inline-block;
    padding:5px 3.5px;
    background-color: #2c3e50;
    background-color: ;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 50;
    transition: background 0.3s;
  }

  .read-more:hover {
    background-color: #86918f;
  }
		
/* Sidebar styles */
.sidebar {
    width: 350px; /* Fixed width for sidebar */
    padding: 10px;
    background-color: #f4f4f4
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	sidebar-bg: #f9f9f9
	 border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
			border-color: #ddd;
	
}

/* Basic styling for the sidebar boxes */
.box.sidebar-widget {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px; /* Space between widgets */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.box.sidebar-widget h2 {
    background-color: #8a845c;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding: 10px;
     border: 1px solid #ddd;
	 border-radius: 5px;
}

.box.sidebar-widget li {
    background-color: #ddd;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding: 10px;
     border: 1px solid #ddd;
	 border-radius: 5px;
}


/* Video Container for responsiveness */
.video-container {
    position: relative;
    width: 100%;
    /* Maintain 16:9 aspect ratio (height is 56.25% of width) for video */
    padding-bottom: 56.25%; /* Or a fixed height if sidebar is narrow */
    height: 0;
    overflow: hidden;
    margin-bottom: 10px;
	border-radius: 5px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid blue;
}

a {
        text-decoration: none;
    }
/* Styling for the 4-picture grid */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 columns of equal width */
    gap: 10px; /* Adds space between the grid items */
    margin-bottom: 15px; /* Space below the grid */
}

.artwork-grid a {
    display: block; /* Ensures link fills grid cell */
    text-decoration: none;
    overflow: hidden; /* Helps with image scaling */
    border: 1px solid #eee;
    border-radius: 3px;
}

.artwork-grid img {
    width: 100%;
    height: 100px; /* Fixed height for thumbnails, adjust as needed */
    object-fit: cover; /* Crops image to fit without distortion */
    display: block; /* Removes extra space below image */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.artwork-grid img:hover {
    transform: scale(1.05); /* Slightly enlarge image on hover */
}


/* Image styling */
img {
    width: 100%; /* Ensures images scale correctly */
    height: auto; /* Keeps aspect ratio */
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .column {
        width: 100%; /* Stack columns on smaller screens */
        margin: 0; /* Corrected margin to stack properly */
    }

    .sidebar {
        width: 100%; /* Sidebar takes full width below the content */
        margin-left: 0; /* Remove left margin */
    }

    main {
        flex-direction: column; /* Stack content and sidebar */
    }
}

	
	
	