/* Font Imports */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/robotolight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/robotoregular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-pattern-responsive {
    display: none;
}

/* Background Pattern */
.background-pattern {
    position: absolute;
    top: 90px;
    right: 0;
    height: 73%;
    z-index: 1;
}

.bg-arrows-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

/* Logo Section */
.logo-section {
    margin-top: 2rem;
}

.logo-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 600px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-image {
    height: 105px;
    width: auto;
    margin-top: 10px;
    margin-left: 50px;
}

.tagline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 2rem;
    border-left: 2px solid #EC4899;
}

.tagline-line {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
}

/* QR Code Section */
.qr-section {
    margin-bottom: 100px;
    margin-left: 100px;
}

.qr-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
}

.qr-code {
    width: 100px;
    height: 100px;
    border-radius: 4px;
}

.qr-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 50px;
}

.scan-text {
    font-size: 1.5rem;
    color: #6f6f6f;
}

.instagram-text {
    font-size: 1.3rem;
    color: #6f6f6f;
}

/* Bottom Gradient Line */
.bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 0;
    }

    .qr-container {
        padding: 40px;
        display: inherit;
        text-align: center;
        max-width: inherit;
    }

    .scan-text {
        color: #FFF;
    }

    .instagram-text {
        color: #FFF;
    }

    .qr-text {
        margin-top: 10px;
    }

    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }


    .logo-image {
        height: 60px;
    }

    .tagline {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #EC4899;
        padding-top: 1rem;
    }

    .background-pattern {
        width: 100%;
        opacity: 0;
    }

    .background-pattern-responsive {
        display: block;
    }

    .background-pattern-responsive img {
        display: block;
        width: 80%;
        height: 80%;
        margin-left: 10%;
        margin-top: 0;
    }

    .qr-section {
        margin-bottom: 0;
        margin-left: 0;
        background: #382479;
        background: linear-gradient(90deg, rgba(56, 36, 121, 1) 0%, rgba(121, 23, 115, 1) 49%, rgba(185, 11, 109, 1) 100%);
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 80px;
    }

    .logo-section {
        margin-top: -140px;
        position: absolute;
    }

    .bg-arrows-image {
        margin-bottom: 50px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .tagline-line {
        font-size: 1rem;
    }

    .qr-code {
        width: 60px;
        height: 60px;
    }

    .scan-text {
        font-size: 1rem;
    }

    .instagram-text {
        font-size: 0.8rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .main-content {
        padding: 1rem;
    }

    .logo-image {
        height: 40px;
    }

    .tagline-line {
        font-size: 0.9rem;
    }

    .qr-code {
        width: 50px;
        height: 50px;
    }


}