@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

:root {
  --text: #333333;
  --text-h: #000000;
  --bg: #ffffff;
  --border: #e0e0e0;
  --code-bg: #f5f5f5;
  --accent: #000000;
  --accent-bg: rgba(0, 0, 0, 0.05);
  --accent-border: rgba(0, 0, 0, 0.3);
  --social-bg: rgba(0, 0, 0, 0.05);
  --shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px,
             rgba(0, 0, 0, 0.05) 0 4px 6px -2px;

  --sans: 'Roboto', system-ui, 'Segoe UI', sans-serif;
  --heading: 'Roboto', system-ui, 'Segoe UI', sans-serif;
  --mono: ui-monospace, Consolas, monospace;

  font: 100 16px/1.5 var(--sans);
  letter-spacing: 0.16px;
  color-scheme: light;
}

/* Global body styles */

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive font */

@media (max-width: 1024px) {
  :root {
    font-size: 16px;
  }
}

/* Dark mode */

@media (prefers-color-scheme: dark) {
  :root {
    --text: #9ca3af;
    --text-h: #f3f4f6;
    --bg: #16171d;
    --border: #2e303a;
    --code-bg: #1f2028;
    --accent: #c084fc;
    --accent-bg: rgba(192, 132, 252, 0.15);
    --accent-border: rgba(192, 132, 252, 0.5);
    --social-bg: rgba(47, 48, 58, 0.5);
    --shadow: rgba(0, 0, 0, 0.4) 0 10px 15px -3px,
               rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
  }

  #social .button-icon {
    filter: invert(1) brightness(2);
  }
}

/* Layout */

#root {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border-inline: 1px solid var(--border);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Headings */

h1, h2 {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--text-h);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.68px;
  margin: 32px 0;
}

h2 {
  font-size: 24px;
  line-height: 118%;
  letter-spacing: -0.24px;
  margin: 0 0 8px;
}

/* Responsive headings */

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
    margin: 20px 0;
  }

  h2 {
    font-size: 20px;
  }
}

p {
  margin: 0;
}

/* Code */

code,
.counter {
  font-family: var(--mono);
  display: inline-flex;
  border-radius: 4px;
  color: var(--text-h);
}

code {
  font-size: 15px;
  line-height: 135%;
  padding: 4px 8px;
  background: var(--code-bg);
}.navbar {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  min-height: 120px;
  width: 100%;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.logo-blue {
  color: #5FA8D3;
}

.logo-brick {
  color: #000000;
}

.logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #999999;
  letter-spacing: 0.5px;
  font-weight: 400;
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-link:hover {
  color: #666;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #000000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    min-height: auto;
    flex-direction: row;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo {
    font-size: 1rem;
    gap: 0.5rem;
    margin: 0;
  }

  .logo-img {
    height: 80px;
  }

  .logo-name {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .logo-tagline {
    font-size: 0.6rem;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: auto;
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:active {
    background-color: #f5f5f5;
  }
}
.landing {
  min-height: 100vh;
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0 0 1rem 0;
  letter-spacing: 4px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin: 0 0 2rem 0;
  letter-spacing: 1px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.featured-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  gap: 3rem;
  background-color: #ffffff;
}

.feature {
  padding: 2rem;
  text-align: center;
}

.feature h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  letter-spacing: 2px;
}

.feature p {
  color: #666;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.link-arrow {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  transform: translateX(5px);
}

.why-choose-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-heading {
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 3rem 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.why-choose-card {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-card:hover {
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-choose-card h3 {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
  font-weight: 700;
  color: #000000;
}

.why-choose-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.selected-projects-section {
  background-color: #ffffff;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.spotlight-projects-heading {
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 4rem 0;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
}

.projects-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projects-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.project-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  width: 100%;
}

.project-image-main {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-main:hover .main-image {
  transform: scale(1.05);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.project-category {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #5FA8D3;
  font-weight: 600;
  text-transform: uppercase;
}

.project-main-title {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
}

.project-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.project-view-btn {
  display: inline-block;
  background-color: transparent;
  color: #000000;
  padding: 0;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.project-view-btn:hover {
  color: #5FA8D3;
  transform: translateX(5px);
}

.projects-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #000000;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.15);
}

.projects-indicators {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #000000;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator.active {
  background-color: #000000;
  transform: scale(1.3);
}

.indicator:hover {
  background-color: #000000;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-image-main {
    height: 400px;
  }

  .project-main-title {
    font-size: 2rem;
  }
}

.testimonials-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-heading {
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 3rem 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}

.testimonials-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.slider-arrow {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-arrow:hover {
  background-color: #000000;
  color: #ffffff;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
  perspective: 1000px;
}

.testimonial-card {
  background-color: #f9f9f9;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  transform: scale(0.85) translateY(20px);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  background-color: #ffffff;
}

.testimonial-card.prev,
.testimonial-card.next {
  opacity: 0.7;
  transform: scale(0.92) translateY(10px);
}

.testimonial-card.hidden {
  display: none;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e8e8;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  color: #000000;
}

.author-project {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background-color: #000000;
}

.dot:hover {
  background-color: #000000;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-projects-heading {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .project-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-image-main {
    height: 400px;
  }

  .project-main-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
  }

  .hero-content p {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .featured-section {
    grid-template-columns: 1fr;
    margin: 2rem auto;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .why-choose-section {
    padding: 2rem 1rem;
  }

  .why-choose-heading {
    font-size: 1.5rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .selected-projects-section {
    min-height: 100vh;
    padding: 2rem 1rem;
  }

  .spotlight-projects-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .projects-display {
    padding: 2rem 1rem;
  }

  .project-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-image-main {
    height: 300px;
  }

  .project-main-title {
    font-size: 1.5rem;
  }

  .project-description {
    font-size: 0.95rem;
  }

  .projects-controls {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .nav-btn {
    font-size: 1.5rem;
    padding: 0.8rem;
  }

  .projects-indicators {
    gap: 1rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .testimonials-section {
    padding: 2rem 1rem;
  }

  .testimonials-heading {
    font-size: 1.5rem;
  }

  .testimonials-slider {
    gap: 1rem;
    flex-direction: column;
  }

  .slider-arrow {
    padding: 0.6rem 0.8rem;
    font-size: 1.2rem;
    display: none;
  }

  .testimonials-track {
    display: flex;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }

  .testimonial-card {
    min-height: 250px;
    padding: 1.5rem;
    display: none;
  }

  .testimonial-card.active {
    display: flex;
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  .testimonial-card.prev,
  .testimonial-card.next,
  .testimonial-card.hidden {
    display: none;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .slider-dots {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .featured-section {
    padding: 1.5rem 0.8rem;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  .why-choose-section {
    padding: 1.5rem 0.8rem;
  }

  .why-choose-heading {
    font-size: 1.3rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-choose-card {
    padding: 1.5rem;
  }

  .why-choose-card h3 {
    font-size: 1rem;
  }

  .why-choose-card p {
    font-size: 0.9rem;
  }

  .testimonials-section {
    padding: 1.5rem 0.8rem;
  }

  .testimonials-heading {
    font-size: 1.3rem;
  }

  .testimonial-card {
    min-height: 200px;
    padding: 1rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .author-name {
    font-size: 0.9rem;
  }
}
.architecture {
  min-height: 100vh;
  padding: 0;
  background-color: #f0f0f0;
  overflow-x: hidden;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  background-color: #f0f0f0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin: 0 0 1rem 0;
  color: #000000;
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 100;
}

.page-header p {
  font-size: 1.1rem;
  color: #666;
  letter-spacing: 1px;
  margin: 0;
}

.projects-grid {
  width: 100%;
  margin: 0 auto;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.project-card-link {
  text-decoration: none;
  color: inherit;
}

.project-card {
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
}

.project-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-caption {
  opacity: 1;
}

.project-card h3 {
  font-size: 1.2rem;
  padding: 1rem;
  margin: 0;
  letter-spacing: 1px;
  border-bottom: 1px solid #000000;
}

.project-card p {
  padding: 1rem;
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .architecture {
    padding: 2rem 0;
  }

  .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .project-image-wrapper {
    height: 200px;
  }

  .project-image {
    height: 200px;
  }

  .project-card h3 {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .project-card p {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .project-caption {
    font-size: 1.1rem;
  }
}
.interior {
  min-height: 100vh;
  padding: 0;
  background-color: #f0f0f0;
  overflow-x: hidden;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  padding-top: 5rem;
  background-color: #f0f0f0;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.header-content {
  max-width: 4000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin: 0 0 1rem 0;
  color: #000000;
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 100;
}

.page-header p {
  font-size: 1.1rem;
  color: #666;
  letter-spacing: 1px;
  margin: 0;
}

.projects-grid {
  width: 100%;
  margin: 0 auto;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.project-card-link {
  text-decoration: none;
  color: inherit;
}

.project-card {
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
}

.project-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-caption {
  opacity: 1;
}

.project-card h3 {
  font-size: 1.2rem;
  padding: 1rem;
  margin: 0;
  letter-spacing: 1px;
  border-bottom: 1px solid #000000;
}

.project-card p {
  padding: 1rem;
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .interior {
    padding: 2rem 0;
  }

  .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .project-image-wrapper {
    height: 200px;
  }

  .project-image {
    height: 200px;
  }

  .project-card h3 {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .project-card p {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .project-caption {
    font-size: 1.1rem;
  }
}.project-detail {
  min-height: 100vh;
  padding: 3rem 2rem;
  background-color: #ffffff;
}

.project-detail.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.project-detail.error button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-detail.error button:hover {
  background-color: #ffffff;
  color: #000000;
}

.project-hero {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 3rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-description-panel {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.description-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.project-title {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 100;
  color: #000000;
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  text-align: left;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  max-width: 100%;
}

.detail-item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  text-align: left;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
  align-items: baseline;
}

.detail-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  min-width: 80px;
  flex-shrink: 0;
}

.detail-value {
  font-size: 1rem;
  color: #000000;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.info-section h3 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #999999;
  margin: 0;
  text-transform: uppercase;
  text-align: left;
}

.info-section p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.description-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.description-paragraphs p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.mood-board {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
  max-width: 100%;
}

.mood-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.color-palette {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.color-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-gallery {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-rows: auto;
}

/* First two images: 2x1 layout (2 columns each) */
.gallery-grid > .gallery-item:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.gallery-grid > .gallery-item:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1;
}

/* Remaining images: 4x1 layout (1 column each) */
.gallery-grid > .gallery-item:nth-child(3) {
  grid-column: 1 / span 1;
  grid-row: 2;
}

.gallery-grid > .gallery-item:nth-child(4) {
  grid-column: 2 / span 1;
  grid-row: 2;
}

.gallery-grid > .gallery-item:nth-child(5) {
  grid-column: 3 / span 1;
  grid-row: 2;
}

.gallery-grid > .gallery-item:nth-child(6) {
  grid-column: 4 / span 1;
  grid-row: 2;
}

.gallery-item {
  overflow: hidden;
  transition: transform 0.3s ease;
  aspect-ratio: 3 / 2;
  cursor: pointer;
  position: relative;
  background-color: #f9f9f9;
}

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

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.image-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 1rem;
}

.gallery-item:hover .image-caption {
  opacity: 1;
}

.project-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  flex-wrap: wrap;
}

.back-button,
.whatsapp-button {
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: #ffffff;
  color: #666666;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.back-button:hover,
.whatsapp-button:hover {
  background-color: #333333;
  color: #ffffff;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content {
  position: relative;
  max-width: 75vw;
  max-height: 80vh;
  cursor: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 75vw;
  max-height: 80vh;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 300;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .project-detail {
    padding: 2rem 1rem;
  }

  .gallery-item {
    cursor: pointer;
  }

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

  .lightbox-close {
    top: -35px;
    font-size: 1.5rem;
  }

  .project-hero {
    margin-bottom: 2rem;
  }

  .project-title {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
  }

  .project-description-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .description-content {
    gap: 1.5rem;
  }

  .detail-item {
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .detail-label {
    font-size: 0.8rem;
    min-width: 70px;
  }

  .detail-value {
    font-size: 0.95rem;
  }

  .info-section h3 {
    font-size: 0.8rem;
  }

  .info-section p {
    font-size: 0.95rem;
  }

  .description-paragraphs {
    gap: 1.2rem;
  }

  .description-paragraphs p {
    font-size: 0.95rem;
  }

  .floorplan-panel {
    gap: 1rem;
  }

  .floorplan-image-container {
    height: 250px;
  }

  .color-circle {
    width: 50px;
    height: 50px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  /* Responsive layout for tablet */
  .gallery-grid > .gallery-item:nth-child(1) {
    grid-column: 1 / span 1;
    grid-row: 1;
  }

  .gallery-grid > .gallery-item:nth-child(2) {
    grid-column: 2 / span 1;
    grid-row: 1;
  }

  .gallery-grid > .gallery-item:nth-child(3),
  .gallery-grid > .gallery-item:nth-child(4),
  .gallery-grid > .gallery-item:nth-child(5),
  .gallery-grid > .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: auto;
  }

  .project-actions {
    gap: 1rem;
    margin: 1.5rem auto;
  }

  .back-button,
  .whatsapp-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .project-detail {
    padding: 1.5rem 1rem;
  }

  .project-hero {
    margin-bottom: 1.5rem;
  }

  .project-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .detail-item {
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.8rem;
    align-items: flex-start;
  }

  .detail-label {
    font-size: 0.75rem;
    min-width: auto;
  }

  .detail-value {
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gallery-grid > .gallery-item:nth-child(1),
  .gallery-grid > .gallery-item:nth-child(2),
  .gallery-grid > .gallery-item:nth-child(3),
  .gallery-grid > .gallery-item:nth-child(4),
  .gallery-grid > .gallery-item:nth-child(5),
  .gallery-grid > .gallery-item:nth-child(6) {
    grid-column: 1 / span 1;
    grid-row: auto;
  }

  .project-actions {
    flex-direction: column;
    width: 100%;
  }

  .back-button,
  .whatsapp-button {
    width: 100%;
  }

  .lightbox-content {
    max-width: 90vw;
    max-height: 70vh;
  }

  .lightbox-image {
    max-width: 90vw;
    max-height: 70vh;
  }
}
.about {
  min-height: 100vh;
  padding: 0;
  background-color: #f0f0f0;
  overflow-x: hidden;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  padding-top: 5rem;
  background-color: #f0f0f0;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.page-header h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin: 0 0 1rem 0;
  color: #000000;
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 100;
}

.page-header p {
  font-size: 1.1rem;
  color: #666;
  letter-spacing: 1px;
  margin: 0;
}

.founder-section {
  max-width: 1200px;
  margin: 4rem auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.founder-image-wrapper {
  display: flex;
  justify-content: center;
}

.founder-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
}

.founder-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-name {
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 700;
  color: #000000;
}

.founder-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
  text-align: justify;
}

.founder-info p + p {
  margin-top: 1rem;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.about-section h2 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0 0 1rem 0;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.team-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.team-heading {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0 0 3rem 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
}

.member-image {
  width: 120px;
  height: 120px;
  background-color: #f0f0f0;
  border: 1px solid #000000;
  border-radius: 50%;
  margin-bottom: 1rem;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.team-member h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
  font-weight: 600;
}

.team-member p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  letter-spacing: 0.5px;
}

.member-image.grayscale {
  filter: grayscale(100%);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 2rem 0;
  }

  .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .founder-info {
    padding: 1.5rem 1rem;
  }

  .founder-image {
    max-width: 300px;
  }

  .founder-name {
    font-size: 1.5rem;
    text-align: center;
  }

  .founder-title {
    text-align: center;
  }

  .founder-bio {
    font-size: 0.95rem;
    text-align: center;
  }

  .about-sections {
    padding: 0 1rem;
  }

  .about-section {
    margin-bottom: 2rem;
  }

  .about-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .team-section {
    padding: 2rem 1rem;
  }

  .team-heading {
    font-size: 1.4rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-member-card {
    padding: 1.5rem;
  }

  .team-member-name {
    font-size: 1rem;
  }

  .team-member-role {
    font-size: 0.9rem;
  }

  .instagram-feed-section {
    padding: 2rem 1rem;
  }

  .instagram-feed-heading {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 1.5rem 0;
  }

  .page-header {
    padding: 1rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .founder-section {
    gap: 1.5rem;
    padding: 0 0.8rem;
  }

  .founder-image {
    max-width: 250px;
  }

  .founder-name {
    font-size: 1.2rem;
  }

  .about-sections {
    padding: 0 0.8rem;
  }

  .about-section h2 {
    font-size: 1.1rem;
  }

  .about-section p {
    font-size: 0.9rem;
  }

  .team-section {
    padding: 1.5rem 0.8rem;
  }

  .team-heading {
    font-size: 1.2rem;
  }

  .team-grid {
    gap: 1rem;
  }

  .instagram-feed-section {
    padding: 1.5rem 0.8rem;
  }

  .instagram-feed-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.contact {
  min-height: 100vh;
  padding: 0;
  background-color: #f0f0f0;
  overflow-x: hidden;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  padding-top: 5rem;
  background-color: #f0f0f0;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.page-header h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin: 0 0 1rem 0;
  color: #000000;
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 100;
}

.page-header p {
  font-size: 1.1rem;
  color: #666;
  letter-spacing: 1px;
  margin: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
  border: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.contact-info h2 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin: 0 0 2rem 0;
  color: #1a1a1a;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0;
  color: #1a1a1a;
}

.info-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mail-section {
  padding: 2rem;
  border: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.mail-section h2 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
}

.email-link a {
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link a:hover {
  color: #666;
}

.social-section {
  padding: 2rem;
  border: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.social-section h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin: 0 0 2rem 0;
}

.social-links {
  justify-content: center;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contact {
    padding: 2rem 0;
  }

  .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.2rem;
  }

  .info-item {
    margin-bottom: 1.5rem;
  }

  .info-item h3 {
    font-size: 0.95rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .contact-social {
    gap: 2rem;
  }

  .mail-section,
  .social-section {
    padding: 1.5rem;
  }

  .mail-section h2,
  .social-section h2 {
    font-size: 1.2rem;
  }

  .email-link a {
    font-size: 1rem;
  }

  .social-links {
    gap: 1.5rem;
  }

  .social-icon-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 1.5rem 0;
  }

  .page-header {
    padding: 1rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .contact-container {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .mail-section,
  .social-section {
    padding: 1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-icon-img {
    width: 35px;
    height: 35px;
  }
}

  .page-header p {
    font-size: 0.9rem;
  }

  .contact-container {
    padding: 0 0.8rem;
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1rem;
  }

  .contact-info h2 {
    font-size: 1.1rem;
  }

  .info-item {
    margin-bottom: 1.2rem;
  }

  .info-item h3 {
    font-size: 0.9rem;
  }

  .info-item p {
    font-size: 0.85rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 0.7rem;
    font-size: 0.8rem;
  }
}
:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #666666;
  --light-gray: #f0f0f0;
  --medium-gray: #e0e0e0;
  --border-color: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--white);
  color: var(--black);
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

main {
  flex: 1;
  padding-top: 90px;
}

/* Footer */
.footer {
  background-color: #f5f5f5;
  color: #555555;
  padding: 3rem 2rem;
  letter-spacing: 1px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.footer-blue {
  color: #5FA8D3;
}

.footer-brick {
  color: #000000;
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #999999;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #555555;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icon:hover {
  color: #333333;
  transform: scale(1.15);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer { padding: 1.5rem 1rem; }
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 0 1rem;
  }
  .footer-brand {
    justify-content: center;
    width: 100%;
    gap: 0.8rem;
  }
  .footer-logo { height: 60px; }
  .footer-name {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .footer-tagline { font-size: 0.7rem; }
  .footer-social {
    justify-content: center;
    width: 100%;
    gap: 1.2rem;
  }
  .social-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .footer { padding: 1rem 0.8rem; }
  .footer-container {
    gap: 1rem;
    padding: 0 0.8rem;
  }
  .footer-brand { gap: 0.6rem; }
  .footer-logo { height: 40px; }
  .footer-name { font-size: 0.85rem; }
  .footer-tagline { font-size: 0.6rem; }
  .footer-social { gap: 1rem; }
  .social-icon {
    width: 20px;
    height: 20px;
  }
}

/* Hero */
.hero {
  position: relative;
}

.hero .base,
.hero .framework,
.hero .vite {
  inset-inline: 0;
  margin: 0 auto;
}

.hero .base {
  width: 170px;
  position: relative;
  z-index: 0;
}

.hero .framework,
.hero .vite {
  position: absolute;
}

.hero .framework {
  z-index: 1;
  top: 34px;
  height: 28px;
  transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg) scale(1.4);
}

.hero .vite {
  z-index: 0;
  top: 107px;
  height: 26px;
  width: auto;
  transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg) scale(0.8);
}

/* Center */
#center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  place-content: center;
  place-items: center;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  #center {
    padding: 32px 20px 24px;
    gap: 18px;
  }
}

/* Next Steps */
#next-steps {
  display: flex;
  border-top: 1px solid var(--border);
  text-align: left;
}

#next-steps > div {
  flex: 1 1 0;
  padding: 32px;
}

@media (max-width: 1024px) {
  #next-steps {
    flex-direction: column;
    text-align: center;
  }
  #next-steps > div {
    padding: 24px 20px;
  }
}

#docs {
  border-right: 1px solid var(--border);
}

@media (max-width: 1024px) {
  #docs {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* Next Steps UL */
#next-steps ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  margin: 32px 0 0;
}

#next-steps ul .logo {
  height: 18px;
}

#next-steps ul a {
  color: var(--text-h);
  font-size: 16px;
  border-radius: 6px;
  background: var(--social-bg);
  display: flex;
  padding: 6px 12px;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: box-shadow 0.3s;
}

#next-steps ul a:hover {
  box-shadow: var(--shadow);
}

#next-steps ul .button-icon {
  height: 18px;
  width: 18px;
}

@media (max-width: 1024px) {
  #next-steps ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #next-steps ul li {
    flex: 1 1 calc(50% - 8px);
  }
  #next-steps ul a {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* Spacer */
#spacer {
  height: 88px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
  #spacer {
    height: 48px;
  }
}

/* Ticks */
.ticks {
  position: relative;
  width: 100%;
}

.ticks::before,
.ticks::after {
  content: '';
  position: absolute;
  top: -4.5px;
  border: 5px solid transparent;
}

.ticks::before {
  left: 0;
  border-left-color: var(--border);
}

.ticks::after {
  right: 0;
  border-right-color: var(--border);
}