@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;
}

.about-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 5% 0;
    flex: 1 0 auto;
}

.about-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -2px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-left: -24px;
    margin-bottom: 30px;
}

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: 1200px) {
    .about-page h1 {
        font-size: 64px;
    }
}

@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%;
    }
    
    .about-page h1 {
        font-size: 48px;
    }
    
    .highlight-text {
        font-size: 20px;
        margin-left: -20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .about-page h1 {
        font-size: 40px;
    }
    
    .about-content p {
        font-size: 16px;
    }
    
    .highlight-text {
        font-size: 18px;
        margin-left: -16px;
    }
    
    .footer-message p,
    .footer-email p,
    .footer-info p {
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    .about-page h1 {
        font-size: 36px;
    }
}