
:root {
  --primary-color: #f7cad0;
  --background-color: #fff6f8;
  --dark-color: #2d2d2d;
  --muted-color: #888;
  --heading-font: 'Poppins', sans-serif;
  --radius-md: 1.2rem;
  --radius-lg: 2rem;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.08);
  --transition-fast: 0.3s ease-in-out;
}

body {
  font-family: var(--heading-font);
  background-color: var(--background-color);
  color: var(--dark-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: var(--dark-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.header {
  background-color: #fff;
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}

.logo-placeholder {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-placeholder .highlight {
  color: var(--dark-color);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  display: inline-block;
  transition: background-color var(--transition-fast);
}

.btn:hover {
  background-color: #f5b7bd;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.language-switcher img {
  height: 24px;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 4rem 2rem;
  box-shadow: var(--shadow-sm);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-logo p {
  margin-top: 1rem;
  max-width: 300px;
  font-size: 1.4rem;
}

.footer-column h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  font-size: 1.4rem;
  color: var(--dark-color);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  font-size: 1.4rem;
  color: var(--muted-color);
}

/* Portfolio */
.card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-md);
  margin: 10rem auto;
  max-width: 1200px;
}

.card-title {
  font-size: 3.2rem;
  font-family: var(--heading-font);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--dark-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  gap: 3rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
