@font-face {
    font-family: 'SimpleSerenity';
    src: url('fonts/Simple Serenity Serif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SimpleSerenityScript';
    src: url('fonts/Simple Serenity Script.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #DCCC9B;
    font-family: 'SimpleSerenity', 'Times New Roman', serif;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
}

.logo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    flex: 0 0 auto;
    margin-top: auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: calc(20px + env(safe-area-inset-bottom));
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.company-logo {
    max-width: 720px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 0px 0px transparent);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-name {
    font-family: 'SimpleSerenity', 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: normal;
    color: #3f210b;
    letter-spacing: 3px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.product-name {
    font-family: 'SimpleSerenity', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: normal;
    color: #7d6336;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    color: #3f210b;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details p {
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    color: #7d6336;
    line-height: 1.6;
}

.contact-details strong {
    color: #3f210b;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .company-logo {
        max-width: 600px;
    }
    
    .company-name {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .product-name {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }
    
    .contact-section {
        padding: 25px 20px;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-logo {
        max-width: 380px;
    }
    body { overflow: hidden; height: 100dvh; }
    
    .company-name {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    .product-name {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
}
