* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Keroine', sans-serif;
}

@font-face {
    font-family: "Keroine";
    src: url("../fonts/KeroinePRO2023-IntenseLegere.otf");
}

@font-face {
    font-family: "arial-narrow";
    src: url("../fonts/arial-narrow.woff"); /* Note: "src" not "scr" */
}

body {
    font-family: "Arial-narrow", sans-serif;
    min-height: 100vh;
    padding: 40px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('3.3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.4) 0%, rgba(147, 112, 219, 0.15) 40%, transparent 70%);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    filter: blur(3px);
}

.go-back {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.go-back img {
    width: 100px;
    height: auto;
    display: block;
}

.go-back:hover {
    transform: scale(1.1);
}

.content-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    max-width: 1400px;
    margin: 0 auto;
    margin-left: 10px;
    gap: 50px;
    padding-top: 60px;
}

.text-content {
    flex: 1 1 700px !important;
    max-width: 700px !important;
    background: rgba(255, 255, 255, 0.208) !important;
    backdrop-filter: blur(3px);
    padding: 20px !important;
    border-radius: 4px;
    padding-top: 60px;
    order: 1; /* Text appears first (left) */
}

.business-card {
    flex: 0 0 400px !important;
    width: 400px !important;
    position: sticky;
    top: 300px;
    margin-top: 140px;
    order: 2; /* Card appears second (right) */
}

.business-card img {
    width: 100%;
    height: auto;
    /*display: block;*/
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    font-family: 'Keroine', sans-serif;
    font-size: 1em;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #d4a5c3;
}

p {
    font-family: 'Keroine', sans-serif;
    font-size: 0.8em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000;
}

.sparkle-text {
    font-family: 'Keroine', sans-serif;
    font-style: italic;
    margin: 10px 0;
}

.email-link,
.instagram-link {
    font-family: 'Keroine', sans-serif;
    color: #000;
    text-decoration: none;
    font-style: italic;
    font-size: 0.8em;
}

.email-link:hover,
.instagram-link:hover {
    text-decoration: underline;
}

strong {
    font-weight: bold;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .business-card {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 500px;
    }
    
    .text-content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    
    .go-back {
        top: 20px;
        left: 20px;
    }
    
    .go-back img {
        width: 70px;
    }
    
    .text-content {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 1.2em;
    }
    
    .content-wrapper {
        padding-top: 80px;
        gap: 30px;
    }
}