@charset "utf-8";

:root {
  --bg-light: #fbf1eb;
  --bg-dark: #1f2a33;
  --text-dark: #1f2a33;
  --text-muted: #6b7280;
  --text-active: rgba(143,188,160,0.95)
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: rgba(143,188,160,0.95);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,247,243,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 18px;
}

.nav-links a:hover {
  color: rgba(143,188,160,0.95);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: rgba(251,247,243,0.98);
  border: 1px solid rgba(0,0,0,0.06);
  min-width: 120px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 10px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 7px;
  font-size: 14px;
  opacity: 0.85;
  border-radius: 10px;
}

.dropdown-menu a:hover {
  background: rgba(143,188,160,0.75);
  color: var(--text-dark);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hero */
.hero-image {
  width: 100%;
  height: 65vh;
  min-height: 480px;
  background: url('../images/hero-banner-new-BoezbdcY.jpg')
              center / cover no-repeat;
}

/* Content */
.content {
  max-width: 820px;
  margin: auto;
  padding: 80px 24px 120px;
  text-align: center;
}

.content h1 {
  font-size: clamp(36px, 6vw, 65px);
  letter-spacing: 0.4em;
  font-weight: bold;
  margin-bottom: 32px;
  text-transform: lowercase;
}

.content p {
  font-size: 18px;
  margin-bottom: 5px;
}

.muted {
  color: var(--text-muted);
}

.highlight {
  font-size: 48px;
  font-weight: 600;
  margin: 42px 0 28px;
}

.closing {
  font-size: 30px;
  font-weight: 600;
  margin-top: 48px;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 40px 24px;
  text-align: center;
}

footer p {
  font-size: 18px;
  opacity: 0.9;
}

footer span {
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 0.2em;
  text-transform: lowercase;
}

/* Mobile */
.menu-toggle {
  display: none;
}

/* About Section */
.about-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 50px 20px 80px;
}

.about-title {
  text-align: center;
  font-size: 48px;
  letter-spacing: 6px;
  margin-bottom: 40px;
}

/* Image */
.about-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.about-content {
  max-width: 100%;
}

.about-content p {
  margin-bottom: 24px;
  font-size: 18px;
}

/* GRID */
.sculpture-section {
  padding: 40px 24px 80px;
}

.sculpture-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.sculpture-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  padding: 25px 15px;
}

/* IMAGE + HOVER ANIMATION */
.image-wrap {
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.sculpture-card:hover img {
  transform: scale(1.15);
  filter: saturate(1.15);
}

/* CONTENT */
.card-content {
  padding: 28px;
}

.card-content h3 {
  text-transform: lowercase;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.medium {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
	line-height: 1.4;
}

.card-content p {
  font-size: 14px;
  color: #374957;
  margin-bottom: 18px;
}

.status {
  font-size: 14px;
  color: var(--text-active);
  font-weight: 800;
}

.status2 {
  font-size: 14px;
  color: var(--accent);
  font-weight: 300;
}



/* CONTACT SECTION */
.contact-section {
  padding: 80px 48px;
  max-width: 900px;
  margin: auto;
}

.contact-section h1 {
  font-size: 64px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 16px;
}

.subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 80px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* LEFT INFO */
.contact-info .info-block {
  margin-bottom: 32px;
}

.label {
  font-size: 14px;
  color: #6b7280;
}

.info-text {
  margin-top: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FORM */
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 6px;
  margin-top: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fffaf5;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  margin-top: 32px;
  padding: 16px;
  background: #1f2933;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
	
  .header{
    display: flex;
    align-items: center;
  }

  /* Logo on left */
  .logo{
    order: 1;
    margin-right: auto;
  }

  /* Menu icon on right */
  .menu-icon,
  .menu-toggle{
    order: 2;
    margin-left: auto;
  }

  /* Hamburger styles (keep yours) */
  .menu-toggle {
    display: block;
    width: 22px;
    height: 16px;
    position: relative;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-dark);
    left: 0;
    transition: all 0.3s ease;
  }

  .menu-toggle span:nth-child(1) { top: 0; }
  .menu-toggle span:nth-child(2) { top: 7px; }
  .menu-toggle span:nth-child(3) { top: 14px; }

  .nav.active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
  }
  .nav.active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: 7px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(251,247,243,0.98);
    flex-direction: column;
    width: 220px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
	padding: 12px 0 12px 12px;
  }

  .nav.active .nav-links {
    display: flex;
  }

  .hero-image {
    height: 25vh;
    aspect-ratio: 16 / 9;   /* keeps proportion */
    background-size: contain;
    background-position: top right;
	min-height: 320px;
  }


 .content {
    padding: 0 20px 90px;
  }

  .content h1 {
    letter-spacing: 0.25em;
  }

  .highlight {
    font-size: 22px;
  }

  .closing {
    font-size: 18px;
  }

  .sculpture-grid {
    grid-template-columns: 1fr;
  }

  .page-title h1 {
    font-size: 36px;
    letter-spacing: 6px;
  }
	
	.contact-section {
    padding: 48px 20px;
  }

  .contact-section h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 16px;
  }
}
	
}

/* MOBILE */
@media (max-width: 500px) {
 
  .hero-image {
   height: 45vh;
   min-height: 150px;
   background-position: center top;
  }

	.header{
    flex-direction: row-reverse;   /* swaps left-right */
  }
	
	.menu-icon{ order: 2; }  /* goes right */
  .logo{ order: 1; }       /* goes left */
}
