/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 禁止网页缩放和横向滚动 */
html {
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  touch-action: manipulation;
  overflow-x: hidden !important;
  width: 100vw;
  max-width: 100vw;
  position: relative;
}

/* 禁止双指/捏合缩放（移动端） */
html, body {
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
}

:root {
  --primary-color: #2c3e50;
  --secondary-color: #5dade2;
  --accent-color: #e67e22;
  --text-color: #2c3e50;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --watercolor-blue: #a8d8ea;
  --watercolor-pink: #ffb6b9;
  --watercolor-yellow: #ffd93d;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: var(--text-color);
  background-color: #fefefe;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(168, 216, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 182, 185, 0.1) 0%, transparent 50%);
  min-height: 100vh;
}

/* 防止横向滚动 */
.container,
.nav-container,
.hero,
.section,
.modal,
.modal-content,
.modal-info {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* 图片防护样式 */
.protected-image {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

/* 导航栏 */
.navbar {
  background: linear-gradient(to bottom, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(93, 173, 226, 0.1);
}

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

.nav-logo {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 1px;
  font-family: Georgia, serif;
  transition: all 0.3s;
}

.nav-logo:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu.active {
  display: flex;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 400;
  transition: all 0.3s;
  position: relative;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--watercolor-blue));
  transition: width 0.3s ease;
}

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

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

.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

/* 汉堡菜单按钮 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Watercolor Gallery Slider */
.hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Slider Container */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

/* Watercolor overlay effect */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.1) 0%,
    rgba(200,220,240,0.3) 50%,
    rgba(180,200,230,0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Content overlay */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 300;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-quote {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 300;
  border-left: 3px solid rgba(255,255,255,0.5);
  padding-left: 1.5rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider Navigation */
.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 1rem;
}

.hero-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-nav-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-nav-dot.active {
  background: white;
  width: 40px;
  border-radius: 6px;
}

/* Arrow Navigation */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
  left: 2rem;
}

.hero-arrow-right {
  right: 2rem;
}

.btn {
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), #3498db);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(93, 173, 226, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(93, 173, 226, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Container */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  overflow-x: hidden;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--watercolor-blue), 
    var(--secondary-color), 
    var(--watercolor-pink)
  );
  border-radius: 2px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-text h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--secondary-color);
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.certificate-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  cursor: pointer;
}

.certificate-img:hover {
  transform: scale(1.05);
}

/* Gallery Grid */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s;
  font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.artwork-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.artwork-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(168, 216, 234, 0.1), 
    rgba(255, 182, 185, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  pointer-events: none;
}

.artwork-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(93, 173, 226, 0.2);
}

.artwork-card:hover::before {
  opacity: 1;
}

.artwork-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.artwork-info {
  padding: 1.5rem;
}

.artwork-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: normal;
}

.artwork-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.artwork-description {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  animation: fadeIn 0.3s;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  animation: zoomIn 0.3s;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px 8px 0 0;
  object-fit: contain;
  display: block;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1;
}

.modal-info {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  width: 100%;
  box-sizing: border-box;
}

.modal-info h2 {
  font-weight: normal;
}

/* Contact Form */
.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Info Simple */
.contact-info-simple {
  text-align: center;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(168, 216, 234, 0.05);
  border-radius: 8px;
}

.contact-info-simple p {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-color);
  line-height: 1;
}

.contact-email-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.contact-email-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.social-links {
  margin-top: 3rem;
  text-align: center;
}

.social-links h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

.footer p {
  margin: 0;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-separator {
  opacity: 0.6;
}

.footer-developer {
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.developer-link {
  color: var(--watercolor-blue);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.developer-link:hover {
  color: var(--watercolor-yellow);
  border-bottom-color: var(--watercolor-yellow);
}

/* Loading */
.loading {
  text-align: center;
  padding: 3rem;
  font-size: 1.2rem;
  color: #666;
}

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

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

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  /* 强制禁止横向滚动 */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100vw !important;
  }
  
  * {
    max-width: 100vw !important;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    max-width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(93, 173, 226, 0.1);
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
  }
  
  .lang-switcher {
    margin-top: 2rem;
    justify-content: center;
    padding: 1rem 0;
    border-bottom: none;
  }
  
  .nav-logo {
    font-size: 1.3rem;
  }
  
  .hero {
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-quote {
    font-size: 1rem;
    padding-left: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .hero-arrow-left {
    left: 1rem;
  }
  
  .hero-arrow-right {
    right: 1rem;
  }
  
  .hero-content {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  /* 移动端页脚优化 */
  .footer-separator {
    display: none;
  }
  
  .footer-developer {
    display: block;
    margin-top: 0.5rem;
  }
  
  /* 移动端模态框优化 */
  .modal {
    background-color: rgba(0,0,0,0.98);
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  .modal-content {
    width: auto;
    max-width: 92vw;
    max-height: 90vh;
    margin: 0 auto;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    box-sizing: border-box;
  }
  
  .modal-image {
    width: auto;
    max-width: 92vw;
    height: auto;
    max-height: 70vh;
    border-radius: 8px 8px 0 0;
    object-fit: contain;
    display: block;
    background: transparent;
    box-sizing: border-box;
  }
  
  .modal-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2003;
    padding: 0;
    line-height: 1;
  }
  
  .modal-info {
    width: 100%;
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
    background: #fff;
    margin-top: 0;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  
  .modal-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .modal-info p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* 平板适配 */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    height: 60vh;
    min-height: 500px;
    max-height: 600px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
}

/* 小屏手机 */
@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }
  
  .hero {
    height: 55vh;
    min-height: 350px;
    max-height: 450px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-quote {
    font-size: 0.9rem;
    padding-left: 0.8rem;
  }
  
  /* 小屏模态框 */
  .modal-content {
    max-width: 95vw;
  }
  
  .modal-image {
    max-width: 95vw;
    max-height: 65vh;
    border-radius: 8px 8px 0 0;
  }
  
  .modal-close {
    width: 45px;
    height: 45px;
    font-size: 2.2rem;
    top: 0.8rem;
    right: 0.8rem;
  }
  
  .modal-info {
    padding: 1.2rem;
  }
  
  .modal-info h2 {
    font-size: 1.3rem;
  }
  
  .modal-info p {
    font-size: 0.95rem;
  }
}

/* Watercolor Brush Strokes Effect */
.watercolor-accent {
  position: relative;
}

.watercolor-accent::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at 30% 50%, 
    rgba(168, 216, 234, 0.2) 0%, 
    transparent 70%);
  z-index: -1;
  animation: watercolorPulse 4s ease-in-out infinite;
}

@keyframes watercolorPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--watercolor-blue);
  color: white;
}

::-moz-selection {
  background: var(--watercolor-blue);
  color: white;
}
