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

a {
    font-family: "Metamorphous Regular";
}

h1 {
    font-family: "Metamorphous Regular";
}

p {
    font-family: "Metamorphous Regular";
}

body {
    font-family: 'Metamorphous Regular', serif;
    color: #5a3602;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevent scrolling */
    background-color: #f7e9d1;
}

/* Background Image */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(working-graphics/art-nouveau.jfif) no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: -1;
    background-position: center 20%;
}

/* Navigation Styles */
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    z-index: 10; /* Set z-index to ensure it is above other content */
}

nav ul {
    display: flex;
    justify-content: center;
    background-color: #d5c0e2;
    padding: 10px 0;
    list-style: none;
    position: relative;
}

nav ul li {
    margin: 0 20px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #5a3602;
    transition: color 0.3s;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #d88c51;
}

/* Animated Bar */
nav ul li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    height: 4px;
    width: 0;
    background-color: #d88c51;
    transition: width 0.3s;
}

nav ul li:hover::after {
    width: 100%;
}

/* Hero Section */
.hero h1 {
    font-size: 4vw; /* Responsive font size */
    max-font-size: 5rem; /* Optional: Set a maximum size */
    background: linear-gradient(90deg, #e6c77e, #9a751b); /* Darker metallic gold gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        1px 1px 0 rgba(0, 0, 0, 0.3),
        2px 2px 0 #c4a72a,
        4px 4px 0 #8a6f1e,
        5px 5px 0 #5c4a14;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Main Content Section */
main {
    display: flex; /* Enable flexbox for layout */
    align-items: stretch;
    padding: 0;
}

/* Side Images */
.side-images {
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
}

.side-images.left {
    left: 0;
}

.side-images.right {
    right: 0;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Styling */
.content {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

/* Hamburger Menu Styles */
.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #d5c0e2;
        z-index: 10;
    }

    nav ul.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .side-images {
        display: none;
    }
}
