* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
        }

        /* NAVBAR */
        nav {
            background: #8b4513;
            color: white;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
        }

        nav h1 {
            font-size: 24px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        nav ul li a:hover {
            text-decoration: underline;
        }

        /* SECTIONS */
        section {
            padding: 80px 40px;
            text-align: center;
        }

        /* INTRO */
        #intro {
            background: url("https://images.unsplash.com/photo-1549931319-a545dcf3bc73") center/cover;
            color: white;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        #intro h2 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px black;
        }

        #intro p {
            font-size: 20px;
            text-shadow: 2px 2px 5px black;
        }

        /* ABOUT */
        #about {
            background: #f5f5f5;
        }

        /* CATALOGUE */
        .catalogue-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        /* CONTACT */
        #contact form {
            max-width: 400px;
            margin: auto;
        }

        #contact input, #contact textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
        }

        #contact button {
            background: #8b4513;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 15px;
        }