/* ============================= */
/* GLOBAL */
/* ============================= */

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  background-color: #f2eee8;
  color: #333;
  line-height: 1.6;
}



h1, h2, h3 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
}

section {
  padding: 90px 24px;   /* mobile-friendly spacing */
}

@media (min-width: 900px) {
  section {
    padding: 90px 10%;
  }
}


/* ============================= */
/* WHITE SECTIONS (TOP AREA) */
/* ============================= */

.hero,
.featured {
  background-color: #ffffff;
}




/* ============================= */
/* HERO */
/* ============================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px 0;
}

/* keeps your text aligned with rest of site */
.hero-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  max-width: 500px;
  position: relative;
  z-index: 2;
}


.logo {
  width: 140px;
  margin-bottom: 20px;
}


/* ============================= */
/* INTRO */
/* ============================= */

.intro {
  background-color: #f2eee8;   /* 👈 your soft beige */
  padding: 70px 0 60px 0;      /* 👈 IMPORTANT: use padding, not margin */
}

.intro-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.intro p {
  max-width: 500px;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}



/* ============================= */
/* FEATURED */
/* ============================= */

.featured h2 {
  text-align: center;
  margin-bottom: 60px;
}

.featured-grid {
  display: flex;
  gap: 30px;
}

.artwork img {
  width: 100%;
  display: block;
}

.large {
  flex: 2;
}

.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* ============================= */
/* GALLERY */
/* ============================= */

.gallery-section {
  background-color: #faf6f3;
  padding: 90px 0;
}

.gallery-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-row-top {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.gallery-row-bottom {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}




/* ============================= */
/* BUTTON */
/* ============================= */



.cta {
  text-align: center;
  margin-top: 40px;
}

.button {
  display: inline-block;
  background: #e8e0d4;
  color: #333;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.95rem;

  transition: all 0.3s ease;
}

.button:hover {
  background: #ddd4c7;          /* slightly darker */
  transform: translateY(-2px);  /* gentle lift */
  box-shadow: 0 6px 14px rgba(0,0,0,0.08); /* soft shadow */
}





/* ============================= */
/* ABOUT */
/* ============================= */

.about {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 2;
}

.about-image img {
  width: 100%;
  max-width: 300px;
}


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

footer {
  background: #777;
  color: white;
  padding: 40px 10%;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}


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

.footer-block a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-block a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


/* ============================= */
/* SOCIAL ICONS */
/* ============================= */

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons img {
  height: 28px;
  width: auto;
  max-width: 100%;
  display: block;
}

.icon-img {
  height: 26px;
  width: auto;        /* ensures aspect ratio stays correct */
  display: block;
}

.social-icons a:hover .icon-img {
  opacity: 1;
  transform: translateY(-2px);
}



/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {

  .hero {
    flex-direction: column;
  }

  .featured-grid {
    flex-direction: column;
  }
	
	
	.gallery-row-top,
.gallery-row-bottom {
  grid-template-columns: repeat(2, 1fr);
}

 

  .about {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    gap: 20px;
  }

}