/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: black;
}

.min-h-screen {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("photo-1554080353-a576cf803bda.avif");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

/* Portfolio Section */
.portfolio {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

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

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    background-color: #18181b;
    padding: 4rem 1rem;
}

.about-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Contact Section */
.contact {
    background-color: black;
    padding: 3rem 1rem;
    text-align: center;
}

.contact h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

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

.social-link {
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d1d5db;
}

.copyright {
    color: #9ca3af;
}