

.header {
    font-family: Consolas,monaco,'andale mono',monospace; 
    font-size: 31px;
    font-weight: normal;
    color: rgb(255, 255, 255);
    border: 3px solid;
    border-radius: 14px;
    margin: 10px 5px 0px 5px;
    text-align: right;
    justify-content: top;
    background-image: url('./mainpage/riversky.jpg');
    background-size: cover;
    height: 550px;
    padding-top: 5px;
    padding-right: 90px;
    -webkit-text-stroke: 2.5px black; 
    text-shadow: 
        3px 3px 0 red, 
        -1px -1px 0 red, 
        1px -1px 0 red, 
        -1px 1px 0 red, 
        1px 1px 0 red;
}

p {
    min-width: 400px; 
}

.headerfont:hover {
    text-shadow: 
        3px 0 10px rgba(250, 246, 246, 0.8), 
        0 0 20px rgba(215, 250, 107, 0.6), 
        1px 1px 30px rgba(240, 5, 5, 0.4), 
        0 0 40px rgb(37, 2, 160);
    -webkit-text-stroke: 2.5px black; 
    transition-duration: 2.9s;
}

.body {
background: radial-gradient(circle, rgba(51, 69, 139, 0.9) 0%, rgba(0,0,0,0.9) 100%);
}

nav {
    width: 100%; /* Ensure it spans the full width */
    text-align: center;
    background: rgb(13, 3, 50);
    border: 3px groove;
    border-radius: 16px;
    border-color: rgba(59, 58, 62, 0.7); 
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.65);
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    padding-top: 12px;
    padding-bottom: 12px;
    margin: 5px 0px -23px 0px;
    z-index: 1000;
    position: relative;
}
.topnav a {
    color: rgba(255, 255, 255, 0.677); 
}
a:hover {
    color: black;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 1px 0;
}

nav li {
    padding-right: 1rem;
    padding-left: 1rem;
    text-decoration: none;
    
}

button {
    background-color: rgba(70, 69, 85, 0.7); 
    color: white;
    font-size: 16px;
    font-family: 'andale mono',consolas,'courier new', monospace;
    font-weight: 600;
    border-radius: 11px;
    padding: 2.5px 1px;
    cursor: pointer;
    border: 2px solid;
    border-color: rgba(33, 32, 36, 0.7); 
    margin: 2px 2px;
    transition-duration: 0.7s;
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.517);
}
 


button:hover {
    background-color: rgb(255, 255, 255); /* Change background color on hover */
    border-color: rgb(97, 223, 245);
    box-shadow: 0 0 7px rgba(255, 255, 0, 0.8), 0 0 20px rgba(255, 255, 0, 0.6), 0 0 25px rgba(255, 255, 0, 0.4); /* Glowing light yellow effect */
    color: black;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.377);
}

nav a {
    display: flex;
    align-items: justify;
    justify-content: center;
    text-decoration: none;
    height: 100%; /* Ensure the anchor takes the full height of the li */
}

/* ABOUT PAGE ABOUT PAGE ABOUT PAGE ABOUT PAGE ABOUT PAGE ABOUT PAGE */
.aboutheader {
    font-family: Consolas,monaco,'andale mono',monospace; 
    font-size: 34px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 3px solid;
    border-color: white;
    border-radius: 14px;
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    text-align: center;
    justify-content: top;
    background-image: url('./aboutbackground.jpg');
    background-size: cover;
    height: 310px;
    margin: 10px 5px 0px 5px;
    -webkit-text-stroke: 1.2px black; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.65);
}
.aboutcontent {
    font-family: 'andale mono', consolas, 'courier new', monospace;
    font-weight: 500;
    font-size: 18px;
    width: 95%;
    max-width: 95%;
    line-height: 1.5em;
    text-align: justify;
    word-spacing: 0.04em;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.42);
}

.aboutmyphotos-container {
    display: flex;
    margin-left: 10px;
    width: 90%;
    max-width: 90%;
    align-items: center; /* Align items vertically centered */
    gap: 10px; /* Add space between the image and text */
}

.aboutmyphotosimg img {
    height: 290px; /* Match the height of the about header */
    width: auto; /* Maintain aspect ratio */
    border: 3px groove;
    border-color: white;
    border-radius: 14px;
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    margin-right: 5px;
    margin-left: 5px;
    transition: transform 2s ease; 
}

.aboutmyphotosimg img:hover {
    transform: scale(1.08); /* Scale the image on hover */
    box-shadow: 0 0 20px 10px rgba(10, 10, 10, 0.8);
    cursor: zoom-in;
}
.aboutmyphotos {
    text-align: left; /* Align text to the left */
    font-family: calibri, futura, optima;
    font-weight: 400;
    font-size: 17px;
    padding-right: 90px;
    padding-left: 20px;
    line-height: 1.4em;
    word-spacing: 0.05em;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.42);
}

h3 {
    font-family: calibri, futura, optima;
    font-weight: 500;
    text-align: center;
    font-size: 22px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.42);
}


/* ------ABOUT MY GRAPHICS ABOUT MY GRAPHICS ABOUT MY GRAPHICS ABOUT MY GRAPHICS ABOUT-- */
.aboutmygraphics-container {
    display: flex;
    margin: 50px 10px;
    width: 80%;
    max-width: 80%;
    align-items:stretch; /* Align items vertically centered */
    gap: 20px; /* Add space between the image and text */
}

.aboutmygraphicsimg img {
    height: 290px; /* Match the height of the about header */
    width: auto; /* Maintain aspect ratio */
    border: 3px groove;
    border-color: white;
    border-radius: 14px;
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    margin: 5px 0;
    transition: transform 4s ease; 
    overflow: hidden;
}
.aboutmygraphicsimg img:hover {
    box-shadow: 0 0 20px 10px rgba(255, 40, 177, 0.8); /* Glowing pink background effect */
    cursor: pointer;
    transform: scale(1.35);
}
.aboutmygraphics {
    text-align: center; /* Align text to the left */
    font-family: 'Trebuchet MS','Lucinda Sans Typewriter', calibri, serif;
    font-weight: 450;
    font-size: 17px;
    padding-right: 25px;
    line-height: 1.4em;
    word-spacing: 0.05em;
    color: rgb(253, 183, 254);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.42);
}

.aboutmygraphics p {
    background: solid;
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.715);
    background-color: black;
    border-radius: 14px;
    padding: 10px 15px;
}
.aboutmygraphics a {
    text-decoration: none;
    font-family: "Holtwood One SC", calibri, serif;
    font-weight: 500;
    color:white;
}
.aboutmygraphics h3 {
    font-family: "Holtwood One SC", calibri, serif;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 23px;
    border-radius: 14px;
    border-width: auto;
    color: white;
    padding: 14px 10px;
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.715);
    Border: 5px solid;
    background-color: rgb(0, 0, 0);
    background-size:cover;
    border-color: rgb(179, 14, 255);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.42);
    transition-duration: 0.7s;
}
.aboutmygraphics h3:hover {
    transform: scale(1.04);
    font-family: "Holtwood One SC", calibri, serif;
    font-weight: 500;
    color:white;
    box-shadow: 0 0 20px 10px rgba(255, 20, 147, 0.8); /* Glowing pink background effect */
}
/*-------ABOUT ART ABOUT ART ABOUT ART ABOUT ART ABOUT ART ABOUT ART ABOUT ART-----*/
.aboutart-container {
    display: flex;
    flex-direction: row;
    margin: 50px 10px 10px 10px;
    align-items: top; /* Align items vertically centered */
    gap: 30px; /* Add space between the image and text */
    width: 80%;
    max-width: 80%;
}

.aboutart1img img {
    height: auto; /* Match the height of the about header */
    width: 80%; /* Maintain aspect ratio */
    border: 15px solid;
    border-color: rgb(128, 32, 32);
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    transition: transform 2s ease; 
    overflow: hidden;
}

.aboutart2img img {
    height: 300px; /* Match the height of the about header */
    width: auto; /* Maintain aspect ratio */
    border: 15px solid;
    border-color: rgb(142, 76, 35);
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    margin: 70px 15px;
    transition: transform 2s ease; 
    overflow: hidden;
}


.aboutart p {
    text-align: left; /* Align text to the left */
    font-family: calibri, futura, optima;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4em;
    word-spacing: 0.05em;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.42);
    
}


.aboutart-container2 {
    display: flex;
    width: 90%;
    min-width: 90%;
    align-items: center; /* Align items vertically centered */
    gap: 50px; /* Add space between the paragraph and the images */
}

.aboutart2 {
    flex: 1; /* Allow the paragraph to take up available space */
    font-family: 'Courier New','Lucinda Sans Typewriter', calibri, serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3em;
    
    color: white;
    text-align: justify;
    margin: 20px;
    text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.42);
    width: 100%;
}
.art-gallery-link {
    text-decoration: none;
    font-family: 'Courier New','Lucinda Sans Typewriter', calibri, serif;
}
.art-gallery-link a {
    color: rgb(255, 246, 152); /* Change this to your desired color */
    font-weight: 600;
    font-family: 'Courier New','Lucinda Sans Typewriter', calibri, serif;
}

.art-gallery-link:hover {
    color: rgb(193, 152, 3); /* Optional: Change color on hover */
    text-decoration: underline; /* Optional: Add underline on hover */
}
.aboutart-images {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    gap:150px;
}

.aboutart3img img{
    width:50%;
    height: auto; /* Maintain aspect ratio */
    border: 15px solid;
    border-color: rgb(41, 12, 3);
    border-radius: 50%;
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
    transition: transform 2s ease; 
    overflow: hidden;
    margin-top: 50px;
}
    .aboutart4img img {
        width: 50%;
        height: auto; /* Maintain aspect ratio */
        border: 15px solid;
        border-color: rgb(66, 22, 8);
        border-radius: 6px;
        box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
        transition: transform 2s ease; 
        overflow: hidden;
}


/* Media query to allow wrapping on smaller screens */
@media (max-width: 600px) {
    .black3menu .dropdown ul li {
        white-space: normal; /* Allow text to wrap on smaller screens */
    }
}
h2.aboutheader {
    font-family: Consolas, monaco,'andale mono',monospace; 
    position: flexible;
    font-size: 26px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: Center;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.85), -5px -3px 7px rgba(0, 0, 0, 0.95);
}

a.artgallerylink {
    color: rgb(152, 16, 16);
    text-decoration: none;
}
a.artgallerylink:hover {
    color: rgb(188, 188, 22);
    text-decoration: none;
}
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
}

img.expandable {
    cursor: zoom-in; /* Change cursor to zoom-in on hover */
}
/* Modal end - Modal end - Modal end - Modal end - Modal end- */






.websitefooter h6 {
        background: solid;
        text-decoration: none;
        font-family: 'andale mono', consolas, 'courier new', monospace;
        font-size: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 6px 20px rgba(0, 0, 0, 0.6);
        font-weight: 350;
        margin: 10px 10px 20px 10px;
        padding: 6px;
        color: white;
    }
    strong {
        color: rgb(176, 33, 33);
        font-family: 'courier new', monospace, 'andale mono', consolas;
        font-size: 12px;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.75);
        font-weight: 600;
    }

.expandable-image {
    width: 100%; /* Adjust the size as needed */
    cursor: pointer;
    transition: transform 2s ease;  /* Smooth transition for hover effect */
}

.expandable-image:hover {
    transform: scale(1.08); /* Increase the scale on hover */
}

.overlay {
    display: none; /* Initially hide the overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.854);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.full-image {
    max-width: 90%;
    max-height: 90%;
    cursor: pointer;
}


