html, body { margin: 0; padding: 0; height: 100%; width: 100%; }

/* Use Lora for a refined yet warm serif style */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;700&display=swap');
/* Font Awesome-like fallback for styled icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #111;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 60px 20px;
}
nav a {
  text-decoration: none;
  color: #111;
  margin-left: 30px;
  font-weight: 400;
}


nav .left img {
  height: 40px;
  display: block;
}

nav .right a {
  margin-left: 40px;
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 500;
}

main {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}
h1 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}
.gallery-cover {
  display: block;
  margin-bottom: 40px;
}
.gallery-cover img {
  width: 100%;
  max-width: 800px;
  border: none;
}
ul {
  padding-left: 20px;
}.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px 20px;
}

.collection {
  width: 45%;
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.collection:hover {
  transform: translateY(-4px);
}

.image {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.text-overlay {
  padding: 20px;
  background: #fff;
}

.text-overlay h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.text-overlay p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 15px;
}

.button {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #000;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .collections-grid {
    flex-direction: column;
    padding: 20px 10px;
  }

  .collection {
    width: 100%;
  }

  .image {
    height: 300px;
  }
}


.collections-container {
  display: flex;
  gap: 20px;
  padding: 40px 60px;
  flex-wrap: wrap;
}

.collection-card {
  flex: 1 1 48%;
  height: 600px; /* Taller container */
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.collection-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.85);
  max-width: 90%;
}

.collection-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.collection-card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.collection-card .button {
  border: 1px solid #000;
  background: none;
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

@media (max-width: 768px) {
  .collections-container {
    flex-direction: column;
    padding: 20px;
  }

  .collection-card {
    height: 400px;
    flex: 1 1 100%;
  }

  .collection-card .content {
    padding: 20px;
  }
}


/* Fix: Make content box span full width and responsive visibility */
.collection-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .collections-container {
    flex-direction: column;
    padding: 20px;
  }

  .collection-card {
    height: auto;
    flex: 1 1 100%;
  }

  .collection-card .content {
    position: relative;
    padding: 20px;
  }
}


/* Menu font styling */
nav a {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 17px;
}

/* Remove bullets on CV page */
ul {
  list-style-type: none;
  padding-left: 0;
}


/* Global body font */
body {
  font-family: 'Playfair Display', serif;
  color: #111;
  font-size: 17px;
  line-height: 1.8;
}

/* Main content padding */
main {
  padding: 80px 60px;
  max-width: 900px;
  margin: auto;
}

/* Footer consistency */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: #666;
}

/* Heading consistency */
h1, h2 {
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  line-height: 1.4;
}


/* Consistent footer style */
.site-footer {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: #666;
}

/* Ensure consistent paragraph styling in About and CV */
main p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.8;
  color: #111;
}



body, main p, nav a, footer, h1, h2 {
  font-family: 'Merriweather', serif;
  color: #111;
}

/* Adjust font sizing for readability */
body {
  font-size: 17px;
  line-height: 1.8;
}

h1, h2 {
  font-weight: 700;
  line-height: 1.4;
}

nav a {
  font-size: 17px;
  font-weight: 500;
}




body, main p, nav a, footer, h1, h2 {
  font-family: 'Lora', serif;
  color: #111;
}

/* Body and heading adjustments */
body {
  font-size: 17px;
  line-height: 1.8;
}

h1, h2 {
  font-weight: 700;
  line-height: 1.4;
}

nav a {
  font-size: 17px;
  font-weight: 500;
}


/* Global link styling */
a {
  font-family: 'Lora', serif;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: color 0.3s, border-color 0.3s;
}

a:hover {
  color: #555;
  border-color: #999;
}




a {
  font-family: 'Lora', serif;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: color 0.3s, border-color 0.3s;
}

a:hover {
  color: #555;
  border-color: #999;
}


.gallery-link {
  text-decoration: none;
  display: block;
}

.gallery-cover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-cover:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
