/* CSS Variables for Color Scheme */
:root {
  --primary-yellow: #ffd93d;
  --primary-red: #ff6b6b;
  --primary-blue: #4ecdc4;
  --accent-red: #f6416c;
  --accent-blue: #00b8a9;
  --accent-yellow: #f6b93b;
  --dark: #2c3e50;
  --light: #ffffff;
  --gray: #95a5a6;
  --bg-cream: #fff8e7;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fredoka", sans-serif;
  background-color: var(--bg-cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background Shapes */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-yellow);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-red);
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--primary-blue);
  bottom: 10%;
  left: 20%;
  animation-delay: 10s;
}

.shape-4 {
  width: 180px;
  height: 180px;
  background: var(--accent-red);
  top: 40%;
  right: 30%;
  animation-delay: 15s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 50px) rotate(90deg);
  }
  50% {
    transform: translate(-30px, 80px) rotate(180deg);
  }
  75% {
    transform: translate(40px, -40px) rotate(270deg);
  }
}

/* Navigation */
.navbar {
  background: var(--light);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--primary-yellow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: "Righteous", cursive;
  font-size: 28px;
  color: var(--primary-red);
  line-height: 1;
  letter-spacing: 1px;
}

.logo-subtext {
  font-family: "Caveat", cursive;
  font-size: 20px;
  color: var(--primary-blue);
  margin-left: 5px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-yellow),
    var(--primary-red),
    var(--primary-blue)
  );
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--accent-yellow)
  );
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
  animation: bounce 2s infinite;
}

.hero-title {
  font-family: "Righteous", cursive;
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-line {
  display: block;
  animation: slideInLeft 0.8s ease;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInRight 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
  color: var(--light);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--light);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.6);
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--primary-yellow);
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--primary-yellow);
  transform: translateY(-3px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--accent-yellow)
  );
  color: var(--dark);
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-small:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.5);
}

.btn-large {
  padding: 22px 50px;
  font-size: 20px;
}

/* Floating Art Cards */
.floating-art {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.art-card {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  transform: rotate(-10deg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.art-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.float-1 {
  top: 15%;
  left: 10%;
  animation: floatArt 6s infinite ease-in-out;
}

.float-2 {
  bottom: 20%;
  right: 8%;
  animation: floatArt 8s infinite ease-in-out 2s;
}

.float-3 {
  top: 50%;
  left: 5%;
  animation: floatArt 7s infinite ease-in-out 4s;
}

@keyframes floatArt {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 40px;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Righteous", cursive;
  font-size: 56px;
  color: var(--dark);
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-blue),
    var(--primary-yellow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 20px;
  color: var(--gray);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  grid-auto-rows: 350px;
}

.gallery-item {
  animation: fadeIn 0.8s ease;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.artwork-frame {
  height: 100%;
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.artwork-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.artwork-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.artwork-placeholder {
  font-family: "Caveat", cursive;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.artwork-info {
  padding: 20px;
  background: var(--light);
  border-top: 3px solid var(--primary-yellow);
}

.artwork-title {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}

.artwork-price {
  font-family: "Caveat", cursive;
  font-size: 24px;
  color: var(--primary-red);
  margin-bottom: 12px;
  font-weight: 700;
}

.gallery-footer {
  text-align: center;
  margin-top: 60px;
}

/* Artist Bio Section */
.artist-bio {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffe5e5 0%, #e3f4ff 100%);
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
}

.bio-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.bio-image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 8px solid var(--light);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.bio-image:hover {
  transform: rotate(0deg);
}

.bio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--primary-red),
    var(--primary-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-text {
  font-family: "Caveat", cursive;
  font-size: 36px;
  color: var(--light);
  text-align: center;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.frame-decoration {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: var(--primary-yellow);
  border-radius: 50%;
  z-index: -1;
}

.crayon-note {
  margin-top: 20px;
  background: var(--primary-yellow);
  padding: 15px;
  border-radius: 10px;
  transform: rotate(2deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.crayon-text {
  font-family: "Caveat", cursive;
  font-size: 24px;
  text-align: center;
  color: var(--dark);
}

.bio-content {
  animation: fadeInRight 1s ease;
}

.bio-header {
  margin-bottom: 30px;
}

.bio-label {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--light);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.bio-title {
  font-family: "Righteous", cursive;
  font-size: 48px;
  color: var(--dark);
}

.bio-text {
  margin-bottom: 40px;
}

.bio-paragraph {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--dark);
}

.highlight-box {
  background: var(--primary-yellow);
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-red);
  font-weight: 600;
}

.fun-text {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: var(--primary-blue);
}

.call-out {
  background: var(--primary-red);
  color: var(--light);
  padding: 20px;
  border-radius: 15px;
  font-weight: 600;
}

.bio-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  flex: 1;
  text-align: center;
  background: var(--light);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-family: "Righteous", cursive;
  font-size: 36px;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--gray);
}
/* Artist's Mother Section */
.mother-note {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 100%);
  position: relative;
  overflow: hidden;
}

.mother-note::before {
  content: "💝";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 120px;
  opacity: 0.1;
  transform: rotate(15deg);
}

.mother-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mother-header {
  text-align: center;
  margin-bottom: 50px;
}

.mother-label {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mother-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
}

.mother-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.mother-message {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 3px solid #ff6b9d;
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: #ff6b9d;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.mother-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mother-text:first-of-type {
  margin-top: 30px;
}

.mother-text.highlight {
  background: linear-gradient(135deg, #fff9e6 0%, #ffe8cc 100%);
  padding: 20px;
  border-left: 4px solid #ffa726;
  border-radius: 10px;
  font-weight: 500;
  color: #d84315;
}

.mother-signature {
  margin-top: 30px;
  text-align: right;
  padding-top: 20px;
  border-top: 2px dashed #ff6b9d;
}

.signature-text {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 5px;
  font-style: italic;
}

.signature-name {
  font-size: 1.3rem;
  color: #c44569;
  font-weight: 700;
  font-family: "Brush Script MT", cursive;
}

.mother-side-note {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.note-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #ff6b9d;
}

.note-card h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.note-card ul li {
  padding: 12px 0;
  color: #555;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.note-card ul li:last-child {
  border-bottom: none;
}

.note-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b9d;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mother-content {
    grid-template-columns: 1fr;
  }

  .mother-side-note {
    order: -1;
  }

  .mother-title {
    font-size: 2rem;
  }

  .mother-message {
    padding: 30px;
  }

  .quote-mark {
    font-size: 60px;
  }
}

@media (max-width: 640px) {
  .mother-note {
    padding: 60px 15px;
  }

  .mother-title {
    font-size: 1.75rem;
  }

  .mother-message {
    padding: 25px;
  }

  .mother-text {
    font-size: 1rem;
  }

  .mother-note::before {
    font-size: 80px;
    top: 10px;
    right: 10px;
  }

  .note-card {
    padding: 20px;
  }
}

/* Why Buy Section */
.why-buy {
  padding: 100px 40px;
  background: var(--light);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.reason-card {
  background: var(--bg-cream);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-yellow);
}

.reason-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.reason-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.reason-card p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
  color: var(--light);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-title {
  color: var(--light);
  -webkit-text-fill-color: var(--light);
}

.contact-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form {
  background: var(--light);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Fredoka", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
}

.form-error {
  background: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
}

.form-success.show {
  display: block;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: "Righteous", cursive;
  font-size: 24px;
  margin-bottom: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--primary-red)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: var(--gray);
  font-style: italic;
}

.footer h4 {
  margin-bottom: 15px;
  color: var(--primary-yellow);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .bio-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 16px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 42px;
  }

  .floating-art {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 400px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .bio-title {
    font-size: 36px;
  }

  .bio-stats {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 22px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 32px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
