:root {
    --primary-blue: #1A4798;
    --accent-gold: #C89C4E;
    --background-beige: #ECE7CA;
    --light-beige: #F9F5E9;
    --text-dark: #000000;
    --text-light: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Larrseit", sans-serif;
    font-weight: 100;
    color: var(--primary-blue);
    padding-top: 62px;
    background-color: var(--light-beige);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    z-index: 10;
    transition: top 0.3s ease;
}

.beige-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--background-beige);
    z-index: 5;
    opacity: 0.9;
    backdrop-filter: blur(5px);
    transition: top 0.3s ease;
}

.navbar-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin-left: auto;
    margin-right: 110px;
    margin-top: 5px;
}

.navbar-menu li {
    margin: 0 15px;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('images/bowl.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
}

/* Instagram Section */
.instagram-section {
    padding: 40px;
    background-color: var(--background-beige);
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.instagram-post {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    padding: 40px;
    background-color: var(--light-beige);
    text-align: center;
}

.contact-section form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-section button {
    padding: 10px 20px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-section button:hover {
    background-color: var(--accent-gold);
}

/* Footer */
footer {
    background-color: var(--background-beige);
    color: var(--primary-blue);
    padding: 20px;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 0;
        background-color: var(--background-beige);
        width: 100%;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}