/* ======== RESET & BASE STYLES ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background-color: #222;
  color: #fff;
  flex-wrap: wrap;
}
.navbar .logo a {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}
.navbar .menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}
.navbar nav ul li a {
  color: #fff;
  font-weight: 500;
}
.menu-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar .menu-icon {
    display: block;
    margin-top: 10px;
  }
  .navbar nav {
    width: 100%;
  }
  .navbar nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    padding: 0;
  }
  .menu-toggle:checked + .menu-icon + nav ul {
    display: flex;
  }
  .dashboard-wrapper {
    padding: 10px;
  }
  .profile-pic {
    max-width: 100px;
  }
  .upload-slots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 10px auto;
  object-fit: cover;
  border: 4px solid #000;
}




/* ======== NAVBAR ======== */
.navbar {
  background: #000;
  color: #fff;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar .logo {
  font-size: 1.4rem;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar li a {
  color: #fff;
  font-weight: 500;
}

.navbar-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile menu */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #111;
    padding: 1rem;
  }


  .art-card img {
    max-height: 200px;
  }


  .navbar ul.show {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }
}

/* ======== HERO SECTION ======== */
.hero {
  background: url('Artgallerydisplay.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 10%;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ======== CTA SECTIONS ======== */
.cta-section {
  padding: 60px 10%;
}

.cta-section.dark-section {
  background: #f2f2f2;
}

.cta-flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-flex img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.cta-text {
  flex: 1;
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #444;
}

/* ======== ART GRID ======== */
.art-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}

.art-card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.art-card img {
  width: 100%;
  max-height: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  background-color: #f9f9f9;
  padding: 4px;
}




/* ======== REVIEW SECTION ======== */
.artist-review-section {
  padding: 60px 10%;
  background: #fafafa;
  text-align: center;
}

.review-card {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin: 0 10px;
}

.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* ======== PARTNER LOGOS ======== */
.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logos img {
  width: 100px;
  filter: grayscale(100%);
}

/* ======== FAQ SECTION ======== */
.faq-section {
  padding: 60px 10%;
  background: #f4f4f4;
}

.faq-container details {
  margin-bottom: 15px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.faq-container summary {
  font-weight: bold;
}

/* ======== FOOTER ======== */
.footer {
  background: #111;
  color: #ccc;
  padding: 20px 10%;
  text-align: center;
  font-size: 0.9rem;
}

/* ======== MEDIA QUERIES ======== */
@media screen and (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }


  .art-card img {
    max-height: 200px;
  }




  .hero p {
    font-size: 1rem;
  }

  .navbar ul {
    gap: 10px;
  }

  .review-card {
    max-width: 280px;
    margin: auto;
  }
}



/* ======== FORM SECTION (LOGIN/REGISTER) ======== */
.form-section {
  padding: 60px 10%;
  max-width: 500px;
  margin: auto;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.form-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: 600;
  margin: 10px 0 5px;
}


form input[type="email"],
form input[type="text"],
form input[type="password"],
form input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form .btn {
  margin-top: 20px;
  font-size: 1rem;
  padding: 12px;
  cursor: pointer;
}

form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form .btn {
  margin-top: 20px;
  font-size: 1rem;
  padding: 12px;
  cursor: pointer;
}

.message {
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
}

.message.error {
  color: #d60000;
}

.message.success {
  color: #007e33;
}



.dashboard-wrapper {
  padding: 20px;
  max-width: 960px;
  margin: auto;
}

.upload-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.upload-slot {
  flex: 0 1 120px;
}

@media (max-width: 768px) {
  .navbar nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  .form-section h2,
  .form-section h3 {
    text-align: center;
  }

  .upload-slot {
    flex: 0 1 45%;
  }

  .profile-pic {
    display: block;
    margin: 10px auto;
  }

  .payment-options {
    flex-direction: column;
    gap: 10px;
  }

  .payment-box select,
  .wallet-display {
    width: 100%;
  }
}



input, select, textarea {
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  max-width: 500px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button.btn {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button.btn:hover {
  background-color: #333;
}



@media (max-width: 600px) {
  .art-grid {
    padding: 20px 5%;
    gap: 16px;
  }

  .art-card {
    padding: 10px;
  }

  .art-card img {
    height: 180px;
  }

  .art-info h4 {
    font-size: 1em;
  }

  .art-info p {
    font-size: 0.9em;
  }

  .btn {
    width: 100%;
    padding: 12px;
    font-size: 1em;
  }

  h2.title {
    font-size: 1.6em;
    padding: 0 10px;
  }
}




.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* Keeps video from stretching on mobile */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enter-button {
  padding: 14px 30px;
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.enter-button:hover {
  background: #444;
}

@media (max-width: 768px) {
  .video-wrapper {
    aspect-ratio: 4/3;
  }

  .enter-button {
    font-size: 1em;
    padding: 12px 24px;
  }
}



.navbar {
  background: #111;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  z-index: 10;
}
.navbar.logged-in {
  background: linear-gradient(to right, #1f1f1f, #292929);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}


.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
}


.nav-links {
  display: flex;
  justify-content: center;  /* center links horizontally */
  align-items: center;
  list-style: none;
  gap: 20px;
  text-align: center;
  flex-grow: 1;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}
.nav-toggle {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: white;
  display: none;
}
.logout-btn {
  background: #e60023;
  padding: 5px 12px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 58px;
    right: 10px;
    padding: 12px;
    border-radius: 8px;
    z-index: 1000;
    width: 160px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}



.navbar {
  background: #111;
  color: #fff;
  padding: 10px 20px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 20px;
  text-align: center;
  flex-grow: 1;
}
.nav-links li a {
  color: white;
  text-decoration: none;
}
.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  display: none;
}
.logout-btn {
  background: red;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #111;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 12px;
    border-radius: 8px;
    z-index: 1000;
    width: 180px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}




.profile-pic-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #000;
  display: block;
}




.social-icons a {
  margin: 0 10px;
  color: #ccc;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1da1f2; /* Twitter blue or adjust */
}





