@font-face {
    font-family: 'DIN Mittelschrift';
    src: url('Assets/DIN Mittelschrift Mittelschrift/DIN Mittelschrift Mittelschrift.ttf') format('truetype');
}

@font-face {
    font-family: 'DIN Engschrift';
    src: url('Assets/dinengschriftstd/DINEngschriftStd.otf') format('opentype');
}

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

body {
    font-family: 'DIN Mittelschrift', Arial, sans-serif;
    color: #666;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Left Content Section */
.content-section {
    flex: 0 0 50%;
    padding: 60px 80px;
}

header h1 {
    font-family: 'DIN Engschrift', Arial, sans-serif;
    font-size: 48px;
    color: #666;
    font-weight: normal;
    margin-bottom: -10px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.about p {
    margin-bottom: 20px;
    font-size: 21px;
    text-align: justify;
}

.services {
    margin-top: 40px;
    margin-bottom: 60px;
}

.services h2 {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

.service-column p {
    font-size: 20px;
    margin-bottom: 12px;
    color: #666;
}

.contact-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 60px;
}

.profile-image {
    width: 280px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 20px;
    margin-bottom: 0;
    color: #666;
}

.instagram-link {
    display: inline-block;
    margin-top: 10px;
}

.instagram-icon {
    width: 28px;
    height: 28px;
}

/* Right Gallery Section */
.gallery-section {
    flex: 0 0 50%;
    padding: 60px 40px;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Instagram Native Embeds */
.instagram-embeds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
}

.instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

/* Tablet Breakpoint - 1049px */
@media (max-width: 1049px) {
    .container {
        flex-direction: column;
    }

    .content-section {
        max-width: 100%;
        padding: 50px 60px;
    }

    .gallery-section {
        padding: 40px 60px;
    }

    .services-grid {
        gap: 20px;
    }

    .contact-section {
        flex-direction: row;
        gap: 25px;
    }

    .profile-image {
        width: 220px;
    }
}

/* Mobile Breakpoint - 991px */
@media (max-width: 991px) {
    .content-section {
        padding: 40px 50px;
    }

    header h1 {
        font-size: 40px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .instagram-embeds {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Small Mobile Breakpoint - 479px */
@media (max-width: 479px) {
    .content-section {
        padding: 30px 25px;
    }

    .gallery-section {
        padding: 30px 25px;
    }

    header h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .profile-image {
        width: 100%;
        max-width: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .instagram-embeds {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about p {
        text-align: left;
    }
}
