/*
Theme Name: Maison
Theme URI: https://example.com/
Author: You
Author URI: https://example.com/
Description: A luxury minimalist business theme
Version: 1.0
*/

/* Full CSS for Cardi B template — standalone, no Canvas dependencies */
:root {
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Cormorant Garamond', serif;
  --font-highfashion: 'Cormorant Garamond', serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-sans);
  background: white;
  color: #000;
  padding-top: 4rem;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
nav .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}
.nav-links {
  font-family: var(--font-sans);
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #666;
}
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  color: white;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
}
.services {
  padding: 5rem 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 4rem;
}
.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}
.service-card {
  flex: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.service-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-image {
  transform: scale(1.05);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-overlay {
  opacity: 1;
}
.service-content {
  text-align: center;
  color: white;
  padding: 1rem;
  font-family: var(--font-highfashion);
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-description {
  font-family: var(--font-sans);
  font-size: 0.875rem;
}
.about-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}
.about-text {
  flex: 1;
}
.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.nwco-services {
  padding: 4rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}
.services-map-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.service-list {
  list-style: disc inside;
  padding-left: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1 1 300px;
}
.map-placeholder {
  flex: 1 1 300px;
}
.map-box {
  background-color: #e0e0e0;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: var(--font-sans);
  font-size: 1rem;
}
.footer {
  background: #111;
  color: white;
  padding: 2.5rem 1rem;
  font-family: var(--font-highfashion);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  gap: 2rem;
}
.footer-column {
  flex: 1 1 200px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  color: #aaa;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.social-icon {
  font-size: 1.25rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-icon:hover {
  color: white;
}
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
    height: auto;
    padding: 1rem 0;
  }
  .hero {
    height: auto;
  }
  .services-grid {
    flex-direction: column;
  }
  .service-card {
    height: auto;
  }
  .about-grid {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    height: 250px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    flex-wrap: wrap;
  }
  .services-map-flex {
    flex-direction: column;
  }
  .map-box {
    height: 200px;
  }
}


.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #666;
}


.nav-links {
  list-style: none;
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block !important;
  list-style: none;
  margin: 0;
  padding: 0;
}
