 body {
		font-family: Arial, sans-serif;
		background: #fafafa;
		text-align: center;
        }
		
	p {
		font-family: Arial, Helvetica, sans-serif
		font:Arial, Helvetica, sans-serif; 
		font-size: 11pt;
		text-align: left;
		line-height:17pt;
		text-indent: 60px;
		}
		
	.top_graphic {
	background-color: #ac9261;
	background-image: url(../images/quilt_images/content_lotus.jpg);
		background-repeat: no-repeat;
	position: absolute;
	top: 13px;
	left: -1px;
	max-width: 100%;
	height: 574px;
	width: 1003px;
	 	}
		
	header {
		background: #FF9999;
		color: white;
		padding: 15px;
		text-align: center;
		}

	.container {
		display: flex;
		gap: 20px;
		margin-top: 20px;
		}
		
		
/*	HERE*/
	.content {
	/*background-image: url(../images/quilt_images/content_lotus.jpg);*/	
		text-indent: 20px;
		flex: 3;
		/*background: white;*/
		padding: 20px;
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
		}

	.sidebar {
		flex: 1;
		background: #eee;
		padding: 20px;
		}
	
	img.responsive {
		max-width: 100%;
		height: auto;
		display: block;
		margin: 0 auto;
		}
		
	figure.float {
		display: inline-block; /* shrink-wraps to image width */
		margin: 0;
		}
		
	figure.float.left {
		float: left;
		margin: 0 30px 30px 0; /* top, right, bottom, left */
		}

	figure.float.right {
		float: right;
		margin: 0 0 30px 30px; /* top, right, bottom, left */
		}
		
	figure.float.center {
		float: center;
		margin: 0 0 30px 30px; /* top, right, bottom, left */
		}

/* Make sure image behaves well */
	figure.float img {
		display: block; /* removes the small gap under images */
		height: auto;
		max-width: 100%; /* keeps it responsive */
		}

/* Caption style */
	figure.float figcaption {
		font-size: 0.8em;
		color: #555;
		text-align: center;
		margin-top: 5px;
		font-style: italic;
		}
		
	.quilt-image {
		max-width: 90%;
		height: auto;
		border-radius: 12px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
		}

	.caption {
		margin-top: 15px;
		font-size: 1.1em;
		color: #555;
		}

    .nav {
		margin-top: 40px;
		display: flex;
		justify-content: center;
		gap: 40px;
		}

	.nav a {
		text-decoration: none;
		color: #0077cc;
		font-size: 1.1em;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-weight: bold;
		}

    .nav svg {
		width: 18px;
		height: 18px;
		fill: #0077cc;
		}

    .nav a:hover svg,
    .nav   {
      fill: #005999;
      color: #005999;
    }
 
		
		
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 20px;
        }
        .gallery img {
            max-width: 200px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
            transition: transform 0.2s;
        }
        .gallery img:hover {
            transform: scale(2.05);
			}
			
			
			/* Lightbox Styles */
        #lightbox {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            flex-direction: column; /* allow arrows & close button */
        }
        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
        }
        #lightbox span.close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            cursor: pointer;
        }
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 50px;
            color: white;
            cursor: pointer;
            user-select: none;
            padding: 10px;
        }
        .arrow.left { left: 20px; }
        .arrow.right { right: 20px; }
			
			
			


    /* Tablet adjustments */
    @media (max-width: 1024px) {
      body {
        background: #eef7ff; /* subtle change so you can see effect */
      }

      .container {
        flex-direction: column;
      }
    }

    /* Mobile adjustments */
    @media (max-width: 600px) {
      header {
        font-size: 18px;
      }

      body {
        background: #fff4f4;
      }

      .content, .sidebar {
        padding: 15px;
      }
    }
			
			
			
