@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;700&display=swap');

:root {
    --primary-color: #000;
    --background-color: #f9f8f7;
    --accent-color: #333;
    --transition-speed: 0.3s;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary-color);
    background-color: var(--background-color);
}

body {
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px 5%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--background-color);
    z-index: 1000;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

.location {
    font-weight: 400;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    transition: opacity var(--transition-speed) ease;
}

nav ul li a:hover {
    opacity: 0.7;
}

main {
    flex: 1 0 auto;
    padding-top: 80px;
}

.hero {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 700;
    margin: 0 0 60px;
    letter-spacing: -2px;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle .highlight {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.subtitle .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease-in-out;
}

.subtitle .highlight:hover::after {
    transform: scaleX(1);
}

.more-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity var(--transition-speed) ease;
}

.more-link:hover {
    opacity: 0.7;
}

footer {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 40px 5%;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-message p,
.footer-email p,
.footer-info p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.footer-email a {
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
}

#localTime {
    font-size: 16px;
    color: #808080;
}

@media screen and (max-width: 1400px) {
    h1 {
        font-size: 120px;
    }
    
    .subtitle {
        font-size: 28px;
    }
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 100px;
    }
    
    .subtitle {
        font-size: 24px;
    }
}

@media screen and (max-width: 900px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    h1 {
        font-size: 80px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 60px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .more-link {
        font-size: 16px;
    }
    
    .footer-message p,
    .footer-email p,
    .footer-info p {
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    h1 {
        font-size: 50px;
    }
    
    .subtitle {
        font-size: 16px;
    }
}