/*
 * =========================================================================
 * FONT EMBED
 * =========================================================================
 */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/*
 * =========================================================================
 * GENERAL STYLES
 * =========================================================================
 */
body {
    background-color: #181818;
    background-image: radial-gradient(circle, #2d2d2d 0%, #181818 70%);
    color: #f4f4f4;
    font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.content-container {
    padding: 20px;
    position: relative;
    /* Sets the initial state of the animation */
    opacity: 0;
}

/*
 * =========================================================================
 * ANIMATION
 * =========================================================================
 */
.content-container.loaded {
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*
 * =========================================================================
 * ORNAMENTAL LINES
 * =========================================================================
 */
.content-container::before,
.content-container::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #A954A9;
    margin: 0 auto 20px auto;
    transition: all 500ms ease-in-out;
}

.content-container::after {
    margin: 20px auto 0 auto;
}

/* Ornament hover effect */
.content-container:hover::before,
.content-container:hover::after {
    width: 100px;
    background-color: magenta;
}

/*
 * =========================================================================
 * TEXT STYLING
 * =========================================================================
 */
.header-text {
    margin: 0;
    line-height: 1.0;
}

.phase-text,
.studio-text {
    font-size: 3rem;
}

.iv-container {
    font-size: 12rem;
    font-weight: 700;
    line-height: 0.8;
    margin: 0;
}

/* Manual kerning to create the ligature effect */
.iv-v {
    position: relative;
    left: -0.05em;
}

.slogan-text {
    font-size: 1.1rem;
    margin-top: 20px;
    font-style: normal;
    opacity: 0.8;
}

.email-text {
    font-size: 1.1rem;
    margin-top: 10px;
    font-style: normal;
}

/*
 * =========================================================================
 * LINK STYLING
 * =========================================================================
 */
.email-text a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 500ms ease-in-out;
}

.email-text a:hover {
    color: #A954A9;
}