/* Import Eurostile font */
@font-face {
    font-family: 'Eurostile';
    src: url('assets/eurostile.woff') format('woff'),
         url('assets/EuroStyle Normal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Eurostile';
    min-height: 100vh;
    overflow: none;
    background: #6B1B1B;
    position: relative;
    padding: 0 !important;
    font-size: 16px;
}

/* Red marble background using actual image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('assets/marble-texture.png') center center,
        linear-gradient(145deg, #6B1B1B 0%, #8B2635 25%, #5A1616 50%, #7A1E2E 75%, #4A1212 100%);
    background-size: cover, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    z-index: -1;
}

/* Additional texture overlay for depth */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    z-index: -1;
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 0 !important;
    overflow: none;
}

/* Paper content using actual torn paper image - perfectly centered */
.paper-content {
    background: url(assets/paper-torn.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 75vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    margin: 5rem auto 0 auto;
}

/* Paper content fallback background color */
.paper-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 8px;
}

/* Content wrapper - positioned over the paper background */
.paper-content > * {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    padding-right: 5rem;
}

/* Logo container */
.logo-container {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
}

.logo-svg {
    width: 240px;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    filter: brightness(0) saturate(100%) invert(8%) sepia(88%) saturate(1652%) hue-rotate(347deg) brightness(99%) contrast(92%);
}

/* Content text */
.content-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    font-size: 2.4dvh;
}

.main-text {
    line-height: 1.4;
    color: #3A1512;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    font-family: 'Eurostile';
    padding: 0rem 1rem;
}

.tagline {
    line-height: 1.3;
    color: #3A1512;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    font-family: 'Eurostile';
    padding: 0rem 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    
    .logo-svg {
        max-width: 280px;
        margin: 0 auto 20px auto;
    }

    .paper-content {
        width: 100%;
        padding: 0;
        background-position: 50% 50%;
        background-size: contain;
        margin: 10vh auto 0 2vh;
    }

    .content-text {
        font-size: 2.5dvh;
    }
    
}

@media (max-width: 480px) {
    
    
    .logo-svg {
        max-width: 75%;
        margin: 0 auto 20px 3rem;
        padding: 0;
    }
    
    .paper-content {
        width: 100%;
        padding: 0;
        background-position: 50%;
        background-size: 45em;
        height: 100vh;
        margin: 0 auto;
    }
    
    .content-text {
        font-size: 5.7dvw;
        padding: 0;
    }
}

@media (max-width: 360px) {

    
    .logo-svg {
        max-width: 180px;
        margin: 0 auto 12px auto;
    }

    .content-text {
        font-size: 2.9dvh;
    }

}

/* Large screens */
@media (min-width: 1200px) {
    
    .paper-content > * {
        padding: 0 60px;
        margin-right: 3rem;
    }
    
    .logo-svg {
        max-width: 400px;
        margin: 0 auto 30px auto;
    }

    .content-text {
        font-size: 2.9dvh;
    }

}

/* Animation */
.paper-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 