@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');
img {
  max-width: 100%;
  position: relative;
  z-index: 20;
}
/* Hero section logo overlay */
.hero-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}
.relative {
  position: relative;
  z-index: 10;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
/* Responsive typography and layout */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
        line-height: 1.2;
    }
    p, li, a {
        font-size: 1.125rem;
        line-height: 1.8;
    }
    .max-w-4xl {
        max-width: 90rem;
    }
    .max-w-6xl {
        max-width: 100rem;
    }
    .ml-20 {
        margin-left: 5rem;
    }
}
/* Wider content containers */
@media (min-width: 1024px) {
    .px-4 {
        padding-left: 6rem;
        padding-right: 6rem;
    }
    section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Hero section adjustments */
@media (min-width: 768px) {
    .relative.z-10 .w-1\/2 {
        width: 60% !important;
    }
    .relative.z-10 .max-w-md {
        max-width: 42rem !important;
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quattrocento', serif;
    margin-bottom: 1em;
}
h1 {
    font-size: 2rem;
    font-family: 'Quattrocento', serif;
}
h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}
h6 {
    font-size: 1rem;
}

.portfolio-item {
    transition: transform 0.3s ease;
}
.portfolio-item:hover {
    transform: scale(1.03);
}
.portfolio-item img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
p, li, a {
    font-size: 1rem;
}
