
body {
	  font-family: 'Murecho', sans-serif;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    background-color: #f8f8f8;
    margin: 0;
	}

/* --- Responsive Sidebar navigation adapted from W3.CSS Templates --- */
.w3-bar-block {
	display: flex;
	justify-content: left;
	padding-top: 80px;
	display:none;
	z-index:2;
	width:20%;
	min-width:300px
}

.w3-bar-item {
	padding:8px ;
	width:auto;
	border:none;
	display:block;
	outline:0;
	width:100%;
	white-space:normal;
	font-size: 24px;  /*  Menu items font size  */
}

.w3-bar {
	width:100%;
	overflow:hidden
}

.w3-top,
.w3-bottom {
	position:fixed;
	width:100%;
	z-index:1
	}

.w3-top {
	top:0;
	font-size: 48px;  /* Hamburger bars size */
}

.w3-card {
	box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
}

.w3-sidebar {
	height:100%;
	width:200px;
	background-color:#fff;
	position:fixed!important;
	z-index:1;
	overflow:auto;
}

.w3-animate-left {
	position:relative;
	animation:animateleft 0.4s;
}

@keyframes animateleft { from {left:-300px;opacity:0} to{left:0;opacity:1}}
/* The @keyframes CSS at-rule controls the intermediate steps in a CSS animation
sequence by defining styles for keyframes (or waypoints) along the animation
sequence. */ 

.w3-button {
	border:none;
	display:inline-block;
	padding:8px 16px;
	vertical-align:middle;
	overflow:hidden;
	text-decoration:none;
	color:inherit;
	background-color:inherit;
	text-align:center;
	cursor:pointer;
	white-space:nowrap}

.w3-button {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none} 

.w3-button:disabled {
	cursor:not-allowed;
	opacity:0.3
}

header h2{
	color: white;
}
/* --- Typographical Scales --- */

/* Viewport is the browser window size. 1vw = 1% of viewport width. */
header h1 { /* 64px is 3.333%  of 1920px */
	font-size: 3.333vw;
}
header h2 { /* 40px is 2.083%  of 1920px */
	font-size: 2.083vw;
}
.shine {  /*  Call to action color  */
	color: #557763;
}
/* Container styling for the advertisement */
.advertisements {
    display: flex;            
    justify-content: center;    
    align-items: center;        
    margin: 20px 0;            
    padding: 5px;               

}

.advertisements img {
    max-width: 100%;   
    height: auto;    
    display: block; 
    border-radius: 5px; 
	    box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
    transition: all 0.3s ease; 
}


.advertisements img:hover {
    transform: scale(1.05); 
    cursor: pointer;        
}

h1, h2, h3 {
	  font-family: 'Architects Daughter', cursive;
      margin: 0.5em 0;
}
h1 {
    font-size: 3rem;
	line-height: 1;
    color: #ff4500;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    line-height: 1.2;
    text-align: center;
	margin: 3rem 0;
}

h3 {
    font-size: 1.5rem;
    color: #161433;
    text-align: center;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2em;
    color: #555;
}
/* -------------------- Header -------------------- */
header {
    position: relative;
    margin-top: 80px;
}

.header-bg-wrap {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: #fff;
}
.header-a{
	color: #c8f500;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.header-a:visited{
color: #c8f500;	
}
article a{
	color: #182b27;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
article a:hover{
   color: #8a0000;
    text-decoration: underline;
}
.header-a:hover{
	   color: #fff;
    text-decoration: underline;
}
/* -------------------- Sidebar / Menu -------------------- */
.w3-sidebar {
    width: 250px;
    background: linear-gradient(180deg, #ff7c1a, #2c3e50);
    color: #fff;
    height: 100%;
    position: fixed;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.w3-bar-block {
    padding-top: 80px;
}

.w3-bar-item {
    font-size: 1.2rem;
    padding: 12px 16px;
    display: block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
	margin-bottom: 1rem;
}

.w3-bar-item:hover {
    background-color: rgba(255,255,255,0.2);
}

/* -------------------- Buttons -------------------- */
.w3-button {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1rem;
    color: #fff;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.w3-button:hover {
    background-color: #ff4500;
}

/* -------------------- Ads & Banner -------------------- */
.advertisements {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.advertisements img,
.ad-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advertisements img:hover,
.ad-image:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    cursor: pointer;
}


main, .bg-container {
	width: 71%;
	margin: 20px auto;
	}

main {
	padding-top: 20px;
	overflow: hidden;
}

.content {
	margin-left: auto;
 	margin-right: auto;
  	width: 80%;
}

article img {
	border: none;
	box-shadow: 3px 3px 7px #777;
}

.image-container {
	width: 70%;
	margin: 0 auto;
}

footer {
	padding: 40px 0;
	margin-top: 24px;
	background-color: #a9a9a9;
}
aside {
   img{
	display: block;
	margin: 0 auto;
	margin-bottom: 1.5rem;}
	p{
		max-width: 65ch;
	}

}
	.advertisement {
  text-align: center;         /* Center the banner */
  margin: 1.5rem 0;           /* Space above and below */
}

.ad-image {
  width: 100%;                /* Responsive width */
  max-width: 728px;           /* Ensure it doesn’t exceed banner size */
  height: auto;               /* Keep aspect ratio */
  border-radius: 8px;         /* Rounded corners for a clean look */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* subtle shadow */
  transition: transform 0.3s ease;
}

.ad-image:hover {
  transform: scale(1.03);     /* Slight zoom on hover */
  cursor: pointer;            /* Pointer cursor for clickable effect */
}
/* -------------------- Main Content -------------------- */
main, .bg-container {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 1rem;
}

.content {
    margin: auto;
    width: 100%;
}

/* Article Card Style */
article {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.main-news{
     background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.main-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.main-news a{
    text-decoration: none;
    color: #3a5168 ;
    font-weight: bolder;
    display: inline-block;
    border-radius: 5px;
    transition: transform 0.3s ease;
    text-align: center;
}
.main-news a:hover{
     color: #08282b;
    cursor: pointer;
}
.picnic-spot{
      background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.picnic-spot a{
    text-decoration: none;
    color: #3a5168;
    font-weight: bolder;
    display: inline-block;
    border-radius: 5px;
   
}
.picnic-spot a:hover{
    color: #08282b;
    cursor: pointer;
}
/* --- What's New & Exciting Section --- */
.whats-new {
  text-align: center;          
  margin: 40px 0;              
}

.whats-new h2 {
  font-size: 2em;             
  margin-bottom: 20px;          
  color:#161433;             
}

.whats-new div {
  display: flex;             
  justify-content: center;      
  gap: 20px;                    
  flex-wrap: wrap;           
}
.img-cards{
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;  
}
.whats-new div img {
  width: 300px;                
  height: auto;             
  border-radius: 10px;         
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
  transition: transform 0.3s;   
}

.whats-new div img:hover {
  transform: scale(1.05);   
}
article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

article img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}
.image-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

article img:hover {
    transform: scale(1.05);
}

/* Image container for centered images */
.image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Grid Layout for Two Inner Containers */
.outer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* -------------------- Aside / About -------------------- */
aside {
    margin-top: 2rem;
}

.about-me {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: center;
	margin-bottom: 2rem;
}

.about-me img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
}



footer {
    background: linear-gradient(90deg, #2c3e50, #1a1a1a);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

footer a {
    color: #c8f500;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer ol {
    list-style: none;
    padding: 0;
    display: flex;
	flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
footer ol li{
	padding: 0.5rem 2rem;
    border-radius: 5px;
}
h3{
	text-align: center;
}

/* -- Code for the Cookie Compliance popover window -- */
/* -------------------- Cookie Popup -------------------- */
#cookiePopup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 2em rgba(0,0,0,0.2);
    font-size: 1rem;
    max-width: 500px;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 2000;
}

#cookiePopup button {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

#cookiePopup button:hover {
    background-color: #ff4500;
}

.hide {
  visibility: hidden;
}

.show {
  visibility: visible;
}

/* -- End of Code for the Cookie Compliance popover window -- */

@media only screen and  (min-width:900px) {
 
 nav {
 	width: 40%;
 }

    footer ol {
        flex-direction: row;
        gap: 1rem;
    }
	footer li{
			background-color: #00363a;
	}

 h2 {
	font-size: 48px;
}

h3 {
	font-size: 36px;
	margin-top: 3rem;
}
.about-me{
  display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 gap: 1rem;
 p{
	flex: 1;
 }
 img{
	display: unset;
	margin: unset;
 }
}

.outer-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	}

.inner-container {
	width: 48%;
	}

	.w3-bar-item {
		font-size: 36px;
	}

}

@media only screen and  (min-width:1340px) {
 
 .hamburger-position {
		margin-left: 10%;
	}
}
