/* body */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    background-image: url('background.png');
    background-position: center;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(50px);
    z-index: -1;
}

section {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    align-items: center;
    margin: 20px;
}

.signinbttn {
    border: none;
    background-color: rgba(223, 89, 225, 0.62);
    border-radius: 25px;
    width: 145px;
    height: 55px;
    font-size: 32px;
    color: #000;
}

.signinbttn:hover {
   cursor: pointer; 
   transform: scale(1.05);
   transform: translateY(-2px);
   background-color: rgba(228, 49, 231, 0.62);
}

header h1 {
    font-size: 67px;
    font-weight: bold;
    margin: 0;
}

/* nav ul */
nav ul {
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

nav ul li {
    font-size: 24px;
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

header button {
    padding: 5px 10px;
}

main {
    padding: 20px;
    margin: 30px;
    flex: 1;
}

h2 {
    font-size: 24px;
    margin: 0 0 10px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #000;
}

.breadcrumbs span1 {
    color: #555;
}

.container {
    text-align: right;
}

.controls {
    margin: 10px 0;
    display: flex;
    flex-direction: row-reverse;
}

.controls button {
    margin-right: 10px;
    padding: 5px 10px;
}

.artwork-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin-left: 80px;
}

.artwork {
    padding: 10px;
    text-align: center;
}

.artwork img {
    width: 100%;
    height: auto; 
    max-width: 340px; 
    max-height: 560px; 
    display: block;
}

.artwork img:hover {
    background-color: #3b3b3b;
    opacity: 50%;
    cursor: pointer
}

.artwork p {
    margin: 10px 0 0;
    color: #000;
    font-size: 14px;
}

.artwork a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    margin-top: 10px;
    border-top: solid;
}

.footer-logo {
    height: 160px;
    width: 160px;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    margin-top: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.dropdown {
    margin-right: 10px;
}
.dropdown select {
    padding: 5px;
}

/* home page */
.containerhome {
    -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on other devices */
    background-size: contain; /* Adjust to cover the entire background */
    background-position: center; /* Center the background image */
    line-height: 1.1;
  }

  .grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 8px;
  }
  
  .grid-item {
    font-size: 30px;
    text-align: center;
    border-radius: 50px;
  }

  h3 {
    font-size: calc(20px + (30 - 16) * (100vw - 300px) / (1500 - 300) );
    margin-bottom: 40px;
}

.homebttns {
    display: inline-grid;
    text-align: center;
    border: none;
    background-color: rgba(223, 89, 225, 0.62);
    border-radius: 5px;
    width: 200px;
    height: 40px;
    font-size: 20px;
    color: #000;
    line-height: 2;
}

.homebttns:hover {
    cursor: pointer;
    transform: scale(1.05);
    transform: translateY(-2px);
    background-color: rgba(228, 49, 231, 0.62);
 }

 a {
    color: #8f18be;
    text-decoration: none;
}

a:hover {
    color:#ff00bf; 
    text-decoration:none; 
    cursor:pointer;  
}

/* art of the month */

  .grid-containeraotm {
    display: grid;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 8px;
    grid-template-columns: auto auto;
  }
  
  .grid-itemaotm1 {
    font-size: 30px;
    text-align: center;
    border-radius: 50px;
  }

  .grid-itemaotm2 {
    font-size: 30px;
    text-align: center;
    border-radius: 50px;
  }

  .galleryaotm {
    padding: 50px 0;
    text-align: center;
  }
  
  .gallery-gridaotm {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .gallery-itemaotm {
    width: 30%;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .gallery-itemaotm img {
    width: 100%;
    display: block;
  }
  
  .gallery-itemaotm:hover {
    transform: scale(1.05);
  }

/** artist page **/
header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

nav ul li a.sign-in {
    background-color: rgba(223, 89, 225, 0.62);
    padding: 5px 10px;
    border-radius: 5px;

}


main h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: right;
}

main .breadcrumb,
main .location {
    font-size: 14px;
    color: #666;
}

main .description {
    margin: 20px 0;
    font-size: 16px;
}

.artist{
    display: flex;
}

.sort-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border:grey;
    padding: 20px;
}

.container {
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
}

.image {
    margin-right: 20px;
    
}

.image img {
width: 600px;
}

.content p {
    font-size: 20px;
}

.content {
    flex: 1 1 auto;
    color: #333;
}

.content h1 {
    font-size: 1.5em;
    margin: 0 0 10px;
}

.breadcrumb {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 10px;
    text-align: right;
}

.location {
    margin-top: 10px;
    font-size: 0.9em;
    color: #333;
    text-align: right;
}

.location span {
    background: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: right;
}

.sort-filter button {
    padding: 10px;
    border: grey;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 5px;
}

.artwork-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    /** align-items: center; **/
}

.artwork-item {
    text-align: center;
}

.artwork-item img {
    max-width: 100%;
}

footer .footer-logo img {
    height: 160px;
    width: 160px;
}

footer .footer-nav {
    display: flex;
    gap: 50px;
}

footer .footer-column {
    text-align: left;
}

footer .footer-social a {
    margin-left: 10px;
}

footer .footer-social img {
    width: 24px;
    height: 24px;
}


/*register.html page*/

/* Styles for the form container */
.form-box {
    height: 500px; 
    width: 440px; 
    position: relative; /* Positions the form container relative to its normal position */
    margin: 6% auto; /* Centers the form container horizontally and sets a vertical margin */
    background: #fff; 
    padding: 5px; /* Adds padding inside the form container */
    overflow: hidden; /* Hides any overflow content */
    border-radius: 50px; 
}

/* Styles for the button container */
.button-box {
    width: 220px; 
    margin: 35px auto; /* Centers the button container horizontally and sets a vertical margin */
    position: relative; /* Positions the button container relative to its normal position */
    box-shadow: 0 0 28px #ff61241f; /* Adds a shadow effect to the button container */
    border-radius: 30px; 
}

/* Styles for the toggle buttons */
.toggle-button {
    padding: 18px 30px; /* Adds padding inside the buttons */
    cursor: pointer; 
    background: transparent; 
    border: 0; /* Removes the default border */
    outline: none; /* Removes the default outline */
    position: relative; /* Positions the buttons relative to their normal position */
}

/* Styles for the sliding background indicator */
#button-main {
    top: 0;
    left: 0; 
    position: absolute; 
    width: 110px; /* Sets the width of the indicator */
    height: 100%; /* Sets the height of the indicator to 100% of its container */
    background-color: rgba(223, 89, 225, 0.62); 
    border-radius: 30px; 
    transition: 0.5s; 
}

/* Styles for the form data container */
.input-data {
    top: 160px; /* Positions the top of the form data container */
    position: absolute; /* Positions the form data container absolutely */
    width: 280px; /* Sets the width of the form data container */
    transition: 0.5s; /* Adds a transition effect for 0.5 seconds */
    
}

/* Styles for the input fields */
.input-field {
    width: 100%; 
    padding: 10px 0; /* Adds padding inside the input fields */
    margin: 5px 0; /* Adds margin around the input fields */
    border-left: 0; /* Removes the left border */
    border-top: 0; /* Removes the top border */
    border-right: 0; /* Removes the right border */
    border-bottom: 1px solid #999; 
    outline: none;
    background: transparent; 
}

/* Styles for the submit buttons */
.submit-button {
    width: 85%; 
    padding: 10px 30px; /* Adds padding inside the submit buttons */
    cursor: pointer; 
    display: block; /* Displays the submit buttons as block elements */
    margin: auto; /* Centers the submit buttons */
    background-color: rgba(223, 89, 225, 0.62); 
    border: 0; /* Removes the default border */
    outline: none; /* Removes the default outline */
    border-radius: 30px; /* Rounds the corners of the submit buttons */
}

/* Styles for the checkboxes */
.check-box {
    margin: 30px 10px 30px 0; /* Adds margin around the checkboxes */
}

/* Styles for the text spans */
span {
    color: #777; /* Sets the text color */
    font-size: 12px; 
    bottom: 68px; /* Positions the text from the bottom */
}

/* Styles for the login form */
#login {
    left: 450px; /* Positions the left of the login form */
}

/* Styles for the register form */
#register {
    left: 50px; /* Positions the left of the register form */
}

.regphoto1 {
    position: absolute;
    width: 25%; 
    max-width: 308px; /* Set a maximum width for larger screens */
    height:auto ; 
    left: -60px; 
    top: -700px; 
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.4));
    border-radius: 0px;
}

.regphoto2 {
    position: absolute;
    width: 30%; 
    max-width: 324px; 
    height: auto; 
    left: 20px; 
    top: -300px; 
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.4));
    border-radius: 12px;
}

.regphoto3 {
    position: absolute;
    width: 35%;
    max-width: 399px; /* Set a maximum width for larger screens */
    height: auto; 
    left: 950px; 
    top: -700px; 
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.4));
    border-radius: 8px;
}

.regphoto4 {
    position: absolute;
    width: 30%; 
    max-width: 358px; /* Set a maximum width for larger screens */
    height: auto; 
    left: 900px; 
    top: -440px; 
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.4));
    border-radius: 0px;
}

.register-flexcontainer {
    position: relative; /* to ensure the container is positioned relative to its parent */
    max-width: 100%; /* to ensure it doesn't overflow its parent container */
    display: flex; 
    justify-content: space-around; 
    align-items: flex-start; 
}

.all-content {
    margin: 50px 50px;
    position: relative; /* to ensure relative positioning for contained absolute elements */
}


/*newsletter page*/

/*newsletter page*/

/* Styles for the container of the newsletter content */
.newsletter-content {
    width: 100%; /* Full width */
    display: flex; 
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
}
.newsletter-content p{
    margin: 0 75px;
}

/* Styles for each section of content within the newsletter */
.content-section {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 20px; /* Bottom margin for spacing */
    font-family: 'Open Sans'; 
    font-style: normal; 
    font-weight: 300; /* Light font weight */
    font-size: 42px; 
    line-height: 65px; /* Line height */
    color: #000000; 
}
.content-section1 {
    display: flex; 
    flex-direction: column; /* to arrange items vertically */
    align-items: left; /* to center items horizontally */
    margin-bottom: 20px; /* Bottom margin for spacing */
    font-family: 'Open Sans'; 
    font-style: normal; 
    font-weight: 300; /* Light font weight */
    font-size: 42px; 
    line-height: 65px; /* Line height */
    text-align: left;
}

.content-section5 {
    
    margin-bottom: 20px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 5px;
    color: #000000;
}


.content-section6{
display: flex; 
flex-direction: column; /* Arrange items vertically */
align-items: center; /* Center items horizontally */
margin-bottom: 20px; /* Bottom margin for spacing */
font-style: normal; 
font-weight: 100; /* Light font weight */
font-size: 24px; 
line-height: 39px; /* Line height */
background-color:#B4B4B4;
padding: 50px;
box-sizing: border-box;
width: 100%;
color: #FFFFFF;
font-family: 'Inter';
}


/* Styles for images within the newsletter */
.newsphoto{
    max-width: 100%; /* Maximum width within container */
    height: auto; 
    width: 1400px;
}


.newsletter-img {
    max-width: 100%; /* Maximum width within container */
    height: auto; 
    margin-left: 20px;
}

/* Styles for a row of input fields */
.input-data2 {
    display: flex; 
    flex-direction: row; /* to arrange items horizontally */
    gap: 10px; /* Spacing between items */
    align-items: center; 
    margin: 20px 0; /* Margin top and bottom */
}

/* Styles for individual input fields */
.input-field {
    padding: 10px; /* Padding inside the input field */
    width: 300px; 
    border-radius: 5px; /* Border radius for rounded corners */
    border: 1px solid #ccc; /* Border style and color */
}

/* Styles for the signup button */
.signup-button {
    width: 200px; /* Width of the button */
    padding: 10px; /* Padding inside the button */
    cursor: pointer; 
    border: 0; /* No border */
    outline: none; /* No outline */
    border-radius: 30px; /* Border radius for rounded shape */
    font-size: 16px; 
}
.help-button {
    width: 200px; /* Width of the button */
    padding: 10px; /* Padding inside the button */
    cursor: pointer; 
    background-color:#fff; 
    border: 0; /* No border */
    outline: none; /* No outline */
    border-radius: 30px; /* Border radius for rounded shape */
    font-size: 16px; 
    color: rgba(223, 89, 225, 0.62); ;
}

.content-section7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.5; /* Adjust line height for better spacing */
    color: #000000;
    text-align: center; /* Center text */
}

.content-section7-container {
    display: flex;
    flex-direction: row; /* to arrange items horizontally */
    align-items: flex-start; /* to align items at the top vertically */
    justify-content: center; /* to center content horizontally */
    max-width: 100%;
}



    /** art page **/

/** Art Page **/


nav ul li a {
    text-decoration: none;
    color: #000;
}

header button {
    padding: 5px 10px;
}
  

  
  .artworkss {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightpink;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 100%;
    margin: auto;
    border-radius: 10px;
  }
  .artwork-info {
    display: flex;
    align-items: center;
    gap: 70px;
 }
  
  .artwork img {
    max-width: 300px;
    margin-right: 20px;
  }
  
  .artwork .details {
    max-width: 600px;
  }
  
  .artwork .details h1 {
    margin-top: 0;
  }
  
  .artwork .reactions span {
    margin-right: 10px;
  }

  .artwork .comments p {
    margin: 5px 0;
  }
  
  .artwork .add-comment input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .information {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 1440px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.info-item strong {
    margin-right: 10px;
}
  
  .latest-works {
    margin-top: 40px;
    align-items: center;
    display: grid;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
  
  .latest-works .works-gallery {
    display: flex;
    overflow-x: scroll;
    align-items: center;
  }
  
  .latest-works .works-gallery img {
    max-width: 150px;
    margin-right: 10px;
  }
  

footer .footer-logo img {
    height: 160px;
    width: 160px;
}

footer .footer-nav {
    display: flex;
    gap: 50px;
}

footer .footer-column {
    text-align: left;
}

footer .footer-social a {
    margin-left: 10px;
}

footer .footer-social img {
    width: 24px;
    height: 24px;
}

/* about us */ 
.aboutuscolumn {
    float: left;
    width: 40vw;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  .aboutuscolumn img {
    width: 50vw;
    max-width: 400px;
    padding: 20px;
    border-radius: 50px;
  }
  
  .aboutuscard {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
    border-radius: 10px;
  }
  
  .about-section {
    padding: 1px;
    margin: 10px;
    text-align: center;
    background-color: #f9a8fc;
    background-size: cover;
    color: rgb(0, 0, 0);
    border-radius: 10px;
    position: relative;
  }
  
  .aboutuscontainer {
    padding: 0 10px;
    overflow: auto;
  }

  .aboutuscard:hover {
    transform: scale(1.05);
    transform: translateY(-2px);
  }
  
  .aboutuscontainer::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .aboutustitle {
    color: rgb(181, 129, 171);
  }
  
  @media screen and (max-width: 650px) {
    .aboutuscolumn {
      width: 100%;
      display: block;
    }
  }

/* faq */
.faqcolumn {
    float: left;
    width: 40vw;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  .faqcard {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
    border-radius: 10px;
  }
  
  .faqcontainer {
    padding: 20px;
    overflow: auto;
  }

  .faqcard:hover {
    transform: scale(1.05);
    transform: translateY(-2px);
  }
  
  .aboutuscontainer::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .faqtitle {
    color: rgb(181, 129, 171);
  }
  
  @media screen and (max-width: 650px) {
    .faqcolumn {
      width: 100%;
      display: block;
    }
  }







