/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;1,300&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrollbars */
}

body {
    background-color: #89B6C9;
    position: relative;
}

/* Container for centering */
.container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Logo styling */
.logo {
    display: block;
    max-width: 90vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    /* Large size for prominence */
    min-width: 400px;
    min-height: 200px;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

/* Tagline styling */
.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0.9;
    margin: 10px auto 0 auto;
    white-space: nowrap;
    transform: translateX(0); /* Ensure no transform offset */
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        min-width: 300px;
        min-height: 150px;
        max-width: 95vw;
        max-height: 65vh;
        margin: 0 auto 15px auto;
    }
    
    .tagline {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin: 10px auto 0 auto;
    }
}

@media (max-width: 480px) {
    .logo {
        min-width: 250px;
        min-height: 125px;
        max-width: 98vw;
        max-height: 60vh;
        margin: 0 auto 10px auto;
    }
    
    .tagline {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin: 8px auto 0 auto;
    }
}

/* Additional centering fallback */
@media (orientation: landscape) and (max-height: 600px) {
    .logo {
        max-height: 50vh;
        min-width: 300px;
        min-height: 100px;
    }
    
    .tagline {
        font-size: 14px;
    }
}