:root {
  --bg: #f6f6f6;
  --text: #202642;
  --accent1: #ed9a1a;
  --accent2: #f0b963;
  --accent3: #f3d7ad;
  --dark-bg: #202642;
  --font-main: 'Montserrat', sans-serif;
}

/* Base layout to pin footer */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body {
  flex: 1;
}

/* Header */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: white;
  border-bottom: 1px solid #ddd;
}

.logo-bar {
  display: flex;
  align-items: center;
}

.logo.enlarged {
  width: 100px;
  height: auto;
  border-radius: 12px; /* Adjust the value to control how soft the edges are */
}

/* Nav Menu */
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  margin-right: 2rem;
}

.nav-menu ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: var(--accent1);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  font-family: var(--font-main);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border: none;
  cursor: pointer;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.btn.start {
  background-color: var(--dark-bg);
  color: white;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.btn.dark {
  background-color: var(--dark-bg);
  color: white;
  margin-top: 1.5rem;
}

/* Client Galleries Section */
.client-galleries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background: #fdfaf7;
  flex: 1;
}

.gallery-preview img {
  width: 100%;
  max-width: 540px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gallery-text {
  max-width: 500px;
}

.gallery-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.gallery-text .tagline {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.gallery-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.gallery-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  width: 100%;
  margin-top: auto;
}