/* ============================================
   SAATCHI GALLERY STYLE - LISOVSKA ART
   iOS Safari Optimized Version
   ============================================ */

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* iOS Safari height fix */
  height: -webkit-fill-available;
  height: 100%;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* iOS Safari height fix */
  min-height: -webkit-fill-available;
  min-height: 100vh;
  position: relative;
}

/* iOS Safari scroll fix */
body.scroll-locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
}

a {
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

a:hover {
  opacity: 0.6;
}

a:active {
  opacity: 0.4;
}

/* Touch-friendly button reset */
button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Prevent iOS image scaling */
  -webkit-user-select: none;
  user-select: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Bodoni MT', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== LAYOUT ===== */
.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  padding-left: calc(20px + env(safe-area-inset-left));
  padding-right: calc(20px + env(safe-area-inset-right));
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  transition: box-shadow 0.3s ease;
  /* iOS Safari safe area */
  padding-top: env(safe-area-inset-top);
}

.site-header.scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  padding-left: calc(20px + env(safe-area-inset-left));
  padding-right: calc(20px + env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: 'Playfair Display', 'Bodoni MT', 'Times New Roman', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #111111;
  font-weight: 400;
  white-space: nowrap;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  padding-bottom: 4px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #111111;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  width: 44px;
  height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  border-radius: 0;
}

.menu-toggle:active {
  opacity: 0.5;
  background: transparent;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ===== MOBILE FULLSCREEN MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  /* iOS Safari safe area */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  min-height: 100%;
  min-height: -webkit-fill-available;
  padding: 16px 20px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.mobile-menu-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666666;
}

.mobile-close {
  border: none;
  background: transparent;
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-close:active {
  opacity: 0.5;
  background: transparent;
}

.mobile-menu-nav {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu-nav a {
  display: block;
  font-family: 'Playfair Display', 'Bodoni MT', 'Times New Roman', serif;
  font-size: 28px;
  color: #111111;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-menu-nav a:active {
  opacity: 0.5;
  background: transparent;
}

.mobile-menu-nav a:first-child {
  border-top: 1px solid #e5e5e5;
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-wrapper {
  padding-top: 65px;
  padding-top: calc(65px + env(safe-area-inset-top));
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* ===== HOME PAGE ===== */
.home-container {
  text-align: center;
  padding: 40px 16px 60px;
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
}

.home-container .artist-name {
  font-family: 'Playfair Display', 'Bodoni MT', 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  line-height: 1.4;
}

.home-container .artist-photo {
  margin-bottom: 30px;
}

.home-container .artist-photo img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #111111;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111111;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  background: transparent;
}

.gallery-button:hover {
  background: #111111;
  color: #ffffff;
  opacity: 1;
}

.gallery-button:active {
  transform: scale(0.98);
  background: #111111;
  color: #ffffff;
}

/* ===== GALLERY PAGE ===== */
.gallery-header {
  text-align: center;
  padding: 80px 16px 30px;
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
  margin-bottom: 10px;
}

.gallery-header h1 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 16px;
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
  max-width: 1400px;
  margin: 0 auto;
}

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

.artwork a {
  display: block;
}

.artwork-image {
  overflow: hidden;
  margin-bottom: 12px;
  background: #f5f5f5;
  -webkit-tap-highlight-color: transparent;
}

.artwork-image img {
  width: 100%;
  transition: opacity 0.3s ease;
}

.artwork-image img:active {
  opacity: 0.8;
}

.artwork-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #111111;
  padding-bottom: 6px;
  border-bottom: 1px solid #e5e5e5;
  display: inline-block;
}

/* ===== PAINTING DETAIL PAGE ===== */
.painting-page {
  max-width: 1200px;
  margin: 80px auto 40px;
  margin-top: calc(80px + env(safe-area-inset-top));
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 16px;
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
}

.painting-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.painting-images img {
  width: 100%;
}

.painting-info {
  padding-top: 10px;
}

.painting-info h1 {
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.painting-info p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #333333;
}

.painting-info strong {
  font-weight: 500;
  color: #111111;
}

.painting-details {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.viewing-location {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}

.viewing-location p {
  margin-bottom: 6px;
}

.viewing-location strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.whatsapp-button,
.map-button {
  padding: 14px 24px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  border: none;
}

.whatsapp-button {
  background: #111111;
  color: #ffffff;
}

.whatsapp-button:hover {
  background: #333333;
  opacity: 1;
  color: #ffffff;
}

.whatsapp-button:active {
  transform: scale(0.98);
  background: #333333;
}

.map-button {
  background: #ffffff;
  color: #111111;
  border: 1px solid #111111;
}

.map-button:hover {
  background: #111111;
  color: #ffffff;
  opacity: 1;
}

.map-button:active {
  transform: scale(0.98);
  background: #111111;
  color: #ffffff;
}

/* ===== ABOUT PAGE ===== */
.about-container {
  padding: 80px 16px 40px;
  padding-top: calc(80px + env(safe-area-inset-top));
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
  max-width: 1000px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-header h1 {
  font-size: 28px;
  letter-spacing: 0.06em;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.about-text {
  width: 100%;
}

.about-text h2 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 16px;
}

/* ===== FLORENCE PAGE ===== */
.florence-header {
  text-align: center;
  padding: 80px 16px 20px;
  padding-top: calc(80px + env(safe-area-inset-top));
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
}

.florence-header h1 {
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.florence-description {
  max-width: 100%;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  padding: 0 16px;
}

.location-section {
  margin-bottom: 50px;
  padding: 0 16px;
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
}

.location-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.location-address {
  text-align: center;
  font-size: 12px;
  color: #666666;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}

.location-grid img {
  width: 100%;
}

/* ===== CONTACT PAGE ===== */
.contact-container {
  padding: 80px 16px 40px;
  padding-top: calc(80px + env(safe-area-inset-top));
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.contact-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.contact-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 30px;
  padding: 0 10px;
}

.contact-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 16px;
  padding-right: 16px;
}

.contact-section:last-child {
  border-bottom: none;
}

.contact-section h2 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.contact-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.contact-section a {
  color: #111111;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.whatsapp-link,
.email-link {
  font-size: 14px;
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 20px 16px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
  border-top: 1px solid #e5e5e5;
  background: #ffffff;
  color: #666666;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ===== MODAL/LIGHTBOX ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 40px 16px;
  padding-top: calc(40px + env(safe-area-inset-top));
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}

.modal.open {
  display: flex;
}

.modal-content {
  max-width: 100%;
  max-height: 90vh;
  max-height: -webkit-fill-available;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 16px;
  top: calc(16px + env(safe-area-inset-top));
  right: 16px;
  right: calc(16px + env(safe-area-inset-right));
  font-size: 28px;
  color: #111111;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.modal-close:active {
  opacity: 0.5;
  background: transparent;
}

/* ===== RESPONSIVE DESIGN - TABLET ===== */
@media (min-width: 768px) {
  .nav-container {
    padding: 20px 30px;
    padding-left: calc(30px + env(safe-area-inset-left));
    padding-right: calc(30px + env(safe-area-inset-right));
  }
  
  .logo a {
    font-size: 12px;
    letter-spacing: 0.35em;
  }
  
  .main-nav {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .main-wrapper {
    padding-top: 73px;
    padding-top: calc(73px + env(safe-area-inset-top));
  }
  
  .content {
    padding: 60px 30px;
  }
  
  .home-container {
    padding: 60px 30px 80px;
  }
  
  .home-container .artist-name {
    font-size: 40px;
    letter-spacing: 0.22em;
    margin-bottom: 40px;
  }
  
  .gallery-header {
    padding: 100px 30px 40px;
  }
  
  .gallery-header h1 {
    font-size: 32px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
    padding: 30px;
  }
  
  .painting-page {
    margin: 100px auto 60px;
    margin-top: calc(100px + env(safe-area-inset-top));
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 0 30px;
  }
  
  .painting-info h1 {
    font-size: 28px;
  }
  
  .about-container {
    padding: 100px 30px 60px;
    padding-top: calc(100px + env(safe-area-inset-top));
  }
  
  .about-header h1 {
    font-size: 32px;
  }
  
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .florence-header {
    padding: 100px 30px 30px;
    padding-top: calc(100px + env(safe-area-inset-top));
  }
  
  .florence-header h1 {
    font-size: 32px;
  }
  
  .florence-description {
max-width: 600px;
    margin: 0 auto 50px;
  }
  
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-container {
    padding: 100px 30px 60px;
    padding-top: calc(100px + env(safe-area-inset-top));
    max-width: 600px;
  }
  
  .contact-container h1 {
    font-size: 32px;
  }
  
  .button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .whatsapp-button,
  .map-button {
    width: auto;
    flex: 1;
    min-width: 150px;
  }
}

/* ===== RESPONSIVE DESIGN - DESKTOP ===== */
@media (min-width: 1024px) {
  .nav-container {
    padding: 24px 40px;
    padding-left: calc(40px + env(safe-area-inset-left));
    padding-right: calc(40px + env(safe-area-inset-right));
  }
  
  .logo a {
    font-size: 13px;
  }
  
  .main-nav ul {
    gap: 40px;
  }
  
  .main-nav a {
    font-size: 12px;
  }
  
  .main-wrapper {
    padding-top: 89px;
    padding-top: calc(89px + env(safe-area-inset-top));
  }
  
  .content {
    padding: 80px 40px;
  }
  
  .home-container {
    padding: 100px 40px 120px;
  }
  
  .home-container .artist-name {
    font-size: 48px;
    letter-spacing: 0.25em;
    margin-bottom: 60px;
  }
  
  .home-container .artist-photo img {
    max-width: 900px;
  }
  
  .gallery-button {
    padding: 18px 50px;
    font-size: 11px;
  }
  
  .gallery-header {
    padding: 120px 40px 60px;
  }
  
  .gallery-header h1 {
    font-size: 36px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    padding: 40px;
  }
  
  .artwork-image {
    margin-bottom: 20px;
  }
  
  .painting-page {
    margin: 120px auto 80px;
    margin-top: calc(120px + env(safe-area-inset-top));
    gap: 80px;
    padding: 0 40px;
  }
  
  .painting-images {
    gap: 24px;
  }
  
  .painting-info h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .painting-details {
    margin-top: 40px;
    padding-top: 30px;
  }
  
  .viewing-location {
    margin-top: 30px;
    padding: 24px;
  }
  
  .button-row {
    gap: 16px;
    margin-top: 30px;
  }
  
  .whatsapp-button,
  .map-button {
    padding: 14px 28px;
    font-size: 11px;
  }
  
  .about-container {
    padding: 120px 40px 80px;
    padding-top: calc(120px + env(safe-area-inset-top));
  }
  
  .about-header {
    margin-bottom: 60px;
  }
  
  .about-header h1 {
    font-size: 36px;
  }
  
  .about-content {
    gap: 60px;
  }
  
  .about-text h2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .florence-header {
    padding: 120px 40px 40px;
    padding-top: calc(120px + env(safe-area-inset-top));
  }
  
  .florence-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .florence-description {
    font-size: 15px;
    margin-bottom: 60px;
  }
  
  .location-section {
    margin-bottom: 80px;
  }
  
  .location-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .location-address {
    font-size: 13px;
    margin-bottom: 40px;
  }
  
  .location-grid {
    gap: 24px;
  }
  
  .contact-container {
    padding: 120px 40px 80px;
    padding-top: calc(120px + env(safe-area-inset-top));
  }
  
  .contact-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .contact-intro {
    font-size: 15px;
    margin-bottom: 50px;
  }
  
  .contact-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  
  .contact-section h2 {
    font-size: 12px;
  }
  
  .contact-section p {
    font-size: 15px;
  }
  
  .site-footer {
    padding: 30px 40px;
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }
  
  .modal {
    padding: 60px;
    padding-top: calc(60px + env(safe-area-inset-top));
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }
  
  .modal-close {
    top: 30px;
    top: calc(30px + env(safe-area-inset-top));
    right: 40px;
    right: calc(40px + env(safe-area-inset-right));
    font-size: 36px;
  }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-width: 360px) {
  .home-container .artist-name {
    font-size: 24px;
    letter-spacing: 0.15em;
  }
  
  .gallery-header h1 {
    font-size: 24px;
  }
  
  .painting-info h1 {
    font-size: 20px;
  }
  
  .about-header h1,
  .florence-header h1,
  .contact-container h1 {
    font-size: 24px;
  }
  
  .mobile-menu-nav a {
    font-size: 24px;
  }
}
