@charset "UTF-8";

.mobile
{display:none
}
@media only screen and (min-width: 60em) { /* 960px */
  .desktop {
display: none
  }
	.mobile{display:block}
}
/* ===========================
   BASE
=========================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
background-image: url("pink background.jpg");
}

/* ================= NAVIGATION ================= */
.desktop-nav {
  background-color: #442326;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px;
}

.desktop-nav a {
font-family: "bogart", sans-serif;
font-weight: 700;
font-style: normal;
  color: #fff;
  text-decoration: none;
}
.desktop-nav a,
.menu-links a {
  position: relative;
  transition: all 0.3s ease;
}

/* Color + slight lift */
.desktop-nav a:hover,
.menu-links a:hover {
  color: #ffd1dc;
  transform: translateY(-3px);
}

/* Underline animation */
.desktop-nav a::after,
.menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ffd1dc;
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.menu-links a:hover::after {
  width: 100%;
}
/* Mobile Nav */
.mobile-nav {
  position: relative;
  z-index: 1000;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
  height: 45px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1001;
}

.menu-icon span {
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-links {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background: #a05861;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  transition: 0.3s;
}
.desktop-nav a,
.menu-links a {
  padding: 10px 15px;
  border-radius: 20px;
}
.menu-links a {
  color: #fff;
  text-decoration: none;
font-family: "bogart", sans-serif;
font-weight: 700;
font-style: normal;
  font-size: 1.5rem;
  transition: 0.3s ease;
}
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* Hover movement */
.menu-links a:hover {
  color: #ffd1dc;
  transform: translateY(-3px);
}

/* Sparkle ✨ */
.menu-links a::before {
  content: "✨";
  position: absolute;
  left: -20px;
  top: -5px;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s ease;
}

.menu-links a:hover::before {
  opacity: 1;
}
.desktop-nav a:hover,
.menu-links a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.desktop-nav a:hover::before {
  content: "✨";
  position: absolute;
  left: -15px;
  top: -5px;
  font-size: 12px;
	
}
/* ACTIVE LINK (works for both menus) */
.desktop-nav a.active,
.menu-links a.active {
  background: rgba(160, 88, 97, 0.9);
  color: white;
  border-radius: 20px;
  padding: 10px 15px;
}

#menu-toggle:checked ~ .menu-links {
  left: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}
/* ================= HERO / TOP BAR ================= */
.top-bar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e09ba3;
}

/* Center logo */
.logo {
  display: block;
  max-width: 100px;
  z-index: 2;
align-items: center;
}
/* Left + right containers */

.top-left {
  justify-content: flex-start;
}

.top-right {
  justify-content: flex-end;
}

/* Center logo */

@media (max-width: 768px) {
  .corner {
    width: 100px;
  }
}
/* Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.corner {
  position: absolute;
  top: 30px;
  width: 200px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.corner.left {
  left: 10px;
}

.corner.right {
  right: 10px;
}
@media (max-width: 768px) {
  .corner {
    width: 150px;
    top: 150px;
  }
}
/* Heading */
h1 {
font-family: "quimby-mayoral", sans-serif;
font-weight: 400;
font-style: normal;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  margin: 10px 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
h1 {
	letter-spacing: 1px;
}
h1.mobile-font{
font-family: "quimby-mayoral", sans-serif;
font-weight: 400;
font-style: normal;
	font-size: 25px;
}
/* ================= SLIDESHOW ================= */
.slideshow-container {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 20px;
  padding-bottom: 80px;
}

.slides-wrapper {
  display: flex;
  width: max-content;
  animation: scrollSlides 30s linear infinite;
  gap: 5px;
}

.slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes scrollSlides {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================= FOOTER ================= */

.bottom-bar {
  width: 100%;
  background-color: #442326;
  text-align: center;
  padding: 5px 0;
  margin-top: 40px;
}
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
P {
font-family: "bogart", sans-serif;
font-weight: 400;
font-style: normal;
	color: #fff;
}
.social-icon {
  width: 30px;
  margin-top: 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }
}

/* ================= LAYOUT ================= */
.contact-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 120px;
  padding-top: 20px;
}
.col-4 {
  display: flex;
  justify-content: center;
}
/* Shared column sizing */
.contact-section,
.contact-info {
  width: 100%;
  max-width: 420px;
}
.contact-form button:hover {
  transform: translateY(-2px) scale(1.03);
}
.contact-form button {
  cursor: pointer;
}

.contact-form button:hover {
  cursor: grab;
}
/* ================= FORM ================= */

.contact-form {
  background: rgba(160, 88, 97, 0.9);
  padding: 12px;
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
}

/* Labels */
.contact-form label {
  display: block;
  margin: 8px 0 4px;
  color: #ffd1dc;
  font-size: 0.9rem;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #ffd1dc;
}

/* Button */
.contact-form button {
  background: #442326;
  color: #ffd1dc;
  padding: 10px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  width: 100%;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #ffd1dc;
  color: #442326;
  transform: translateY(-2px);
}
.thank-you {
  display: none;
  margin-top: 15px;
  padding: 10px;
  background: rgba(255, 209, 220, 0.25);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  animation: fadeIn 0.4s ease;
}
.contact-form,
.contact-info {
  border: 4px dotted #fff;
}
.glitter {
  text-align: center;
}
@keyframes shimmer {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.glitter {
  animation: shimmer 2s infinite;
}
/* smooth appearance */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================= INFO BOX ================= */

.contact-info {
  background: rgba(68, 35, 38, 0.4);
  padding: 10px;
  border-radius: 20px;
  color: #ffd1dc;
  max-width: 420px;
  box-sizing: border-box;
}

h3 {
font-family: "bogart", sans-serif;
font-weight: 700;
font-style: normal;
	text-align: center;
	color: #ffd1dc;
}
/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .col-4 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .contact-form,
  .contact-info {
    width: 90%;
    max-width: 420px;
  }
}
/* ================= About infromation ================= */

.about-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 120px;
  padding-top: 20px;
}
.gallery-button {
	font-family: "begaz", sans-serif;
font-weight: 400;
font-style: normal;
  display: inline-block;
  background: rgba(160, 88, 97, 0.9);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  overflow: hidden;

  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  
  animation: pulseGlow 12s infinite ease-in-out;
}

/* hover effect */
.gallery-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* soft breathing glow */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(160, 88, 97, 0.25);
  }
  50% {
    box-shadow: 0 8px 24px rgba(255, 105, 180, 0.35);
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.profile-overlay {
  background: rgba(68, 35, 38, 0.6);
  backdrop-filter: blur(2px);
}
/* TEXT */
.about-text {
  text-align: left;
  max-width: 600px;
  line-height: 1.6;
}

.about-text {
  border: 4px dotted #fff;
  padding: 20px;
  border-radius: 18px;
  background: #442326;
}
/* IMAGE CARD */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
	cursor: grab;
}

.profile-card img {
  width: 100%;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}

.profile-card:hover {
  transform: translateY(-5px) scale(1.01);
}

/* OVERLAY */
.profile-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.profile-overlay h6 {
	font-family: "quimby-mayoral", sans-serif;
font-weight: 400;
font-style: normal;
  color: #fff; text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}
/* ================= PAGE LAYOUT ================= */

.art-page {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  align-items: flex-start;
}

/* ================= SLIDESHOW ================= */

.Topart-container {
  flex: 1;
  max-width: 400px;
  position: relative;
  padding: 15px;
  background: rgba(68, 35, 38, 0.2);
  border-radius: 25px;
}

.art-slide {
  display: none;
}

.art-slide img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

/* arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  padding: 10px;
  background: rgba(68,35,38,0.7);
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ================= RIGHT SECTION ================= */

.art-gallery-section {
  flex: 2;
  max-width: 900px;
	padding-bottom: 80px;
}

/* GRID */
.art-grid {
  display: grid;
	grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* ================= CARDS ================= */

.art-grid a {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(68, 35, 38, 0.1);
  border-radius: 18px;

  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);

  transition: 0.25s ease;
}

/* images (FIXED CROPPING ISSUE) */
.art-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* hover */
.art-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.art-grid a:hover img {
  transform: scale(1.05);
}

/* ================= SECTIONS ================= */

h2 {
	font-family: "begaz", sans-serif;
font-weight: 400;
font-style: normal;
  margin: 5px 0 15px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .art-page {
    flex-direction: column;
    align-items: center;
  }

 .lb-image {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.open .lb-image {
  opacity: 1;
}
	.lightboxOverlay {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lightboxOverlay.show {
  opacity: 0.8;
}
}

/* clicked/selected state */
.art-grid a.selected {
  outline: 3px solid hotpink;
  box-shadow: 0 0 18px rgba(255, 105, 180, 0.8);
  transform: scale(1.02);
}

/* optional: make image glow slightly */
.art-grid a.selected img {
  filter: saturate(1.2) contrast(1.1);
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
