@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Cinzel:wght@400;600&display=swap');

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Remove focus outline from non-interactive elements */
h1:focus, h2:focus, h3:focus, main:focus {
    outline: none;
}

/* SVG Background Styling */
.page {
    min-height: 100vh;
    background-image: url('/bg1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

main {
    min-height: 100vh;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styling */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .site-header h1 {
        font-size: 2.2rem;
        font-weight: 400;
        color: #2c3e50;
        font-family: 'Cinzel', 'Georgia', serif;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        outline: none;
    }

        .site-header h1:focus {
            outline: none;
        }

    .site-header nav {
        display: flex;
        gap: 2rem;
    }

        .site-header nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s ease;
        }

            .site-header nav a:hover {
                color: #3498db;
            }

/* Hero Section */
.hero {
    text-align: left;
    padding: 4rem 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(1px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .hero h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-family: 'Cormorant Garamond', 'Georgia', serif;
        font-weight: 300;
        font-style: italic;
    }

    .hero p {
        font-size: 1.25rem;
        color: #404040;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

        .site-header nav {
            flex-direction: column;
            gap: 1rem;
        }

    .hero h2 {
        font-size: 2rem;
    }
}
