/* Load Trajan Pro Bold font */
@font-face {
    font-family: 'Trajan Pro';
    src: url('Trajan Pro Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background: #1f1f1f;
    background: radial-gradient(circle at center calc(50% - 180px), #495269 0%, #3a3f4d 20%, #2d3139 30%, #252729 40%, #1f1f1f 50%);
    font-family: Arial, sans-serif;
    color: #ffffff;
    position: fixed;
}

/* Main container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding: 20px;
    margin-top: -115px;
}

/* Content wrapper */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

/* Logo */
.logo {
    width: 242px;
    height: auto;
    margin-bottom: 5px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Title - ONE LINE */
.title {
    font-family: 'Trajan Pro', serif;
    font-size: 39px;
    font-weight: semibold;
    letter-spacing: 0.05em;
    color: #b6e0f9;
    margin-bottom: -15px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Divider container with lines and ornament */
.divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 20px;
    gap: 20px;
}

.divider-line {
    flex: 1;
    height: 4px;
    max-width: 400px;
}

.divider-line.left {
    background: linear-gradient(to right, transparent 0%, rgba(168, 184, 200, 0.5) 50%, transparent 100%);
}

.divider-line.right {
    background: linear-gradient(to left, transparent 0%, rgba(168, 184, 200, 0.5) 50%, transparent 100%);
}

.divider-ornament {
    width: 80px;
    height: auto;
    display: block;
    opacity: 0.45;
    flex-shrink: 0;
}

/* Contact */
.contact {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
}

.contact a:hover {
    color: #a8b8c8;
}

/* Mobile responsive */
@media (max-width: 768px) {
    body {
        background: radial-gradient(circle at center, #495269 0%, #3a3f4d 20%, #2d3139 30%, #252729 40%, #1f1f1f 50%);
    }
    
    .container {
        align-items: center;
        margin-top: 0;
        height: 100vh;
    }
    
    .logo {
        width: 150px;
        margin-bottom: 30px;
    }
    
    .title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .divider-container {
        margin-bottom: 40px;
    }
    
    .divider-ornament {
        width: 20%;
    }
    
    .divider-line {
        max-width: 200px;
    }
    
    .contact {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
        margin-bottom: 25px;
    }
    
    .title {
        font-size: 24px;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
    }
    
    .divider-container {
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .divider-ornament {
        width: 100px;
    }
    
    .divider-line {
        max-width: 100px;
    }
}
