/* General Styles */
body {
    margin: 0;
    font-family: 'Italiana', serif;
    background-color: white;
    color: black;
    scroll-behavior: smooth;
}

h1, h2, h3, p {
    margin: 0;
}

/* Header Section */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.brand {
    text-align: center;
}

.brand h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5vw;
    margin: 0;
}

.tagline {
    font-family: 'Italiana', serif;
    font-size: 0.1vw;
    margin-top: 0;
}

/* Hamburger Menu for Small Screens */
.hamburger {
    display: none;
    position: absolute;
    left: 20px;
    top: 20px;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    width: 100%;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
    list-style: none;
    padding: 10px;
    text-align: center;
}

.mobile-menu ul li {
    margin-bottom: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: black;
    font-size: 1.5em;
}

/* Regular Menu */
.left-menu, .right-menu {
    display: flex;
    flex: 1;
}

.left-menu {
    justify-content: flex-start;
}

.right-menu {
    justify-content: flex-end;
    padding-right: 40px;
}

.left-menu ul, .right-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.left-menu ul li, .right-menu ul li {
    margin-right: 20px;
}

.left-menu ul li a, .right-menu ul li a {
    text-decoration: none;
    color: black;
    font-size: 1.2em;
}

/* Launch Message Section */
.launch-message {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.launch-message h2 {
    font-size: 8vw;
    text-transform: uppercase;
    color: white;
}

/* Permanent Jewelry Section */
.jewelry {
    background-color: #f5f5f5;
}

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

.block {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.block h3 {
    margin-top: 0;
    font-size: 2vw;
}

.contact {
    background-color: #fff;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.contact-info {
    text-align: left;
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .left-menu, .right-menu {
        display: none; /* Hide regular menus */
    }

    .hamburger {
        display: flex; /* Show hamburger */
    }

    .mobile-menu.active {
        display: block; /* Show mobile menu when active */
    }

    .brand h1 {
        font-size: 8vw;
    }

    .tagline {
        font-size: 3vw;
    }

    .launch-message h2 {
        font-size: 10vw;
    }

    .block h3 {
        font-size: 4vw;
    }
}

/* For large screens, ensure the default menus are displayed */
@media (min-width: 769px) {
    .mobile-menu {
        display: none; /* Hide mobile menu */
    }

    .hamburger {
        display: none; /* Hide hamburger menu */
    }

    .left-menu, .right-menu {
        display: flex; /* Show regular menus */
    }

    .brand h1 {
        font-size: 4rem;
    }

    .tagline {
        font-size: 2rem;
    }

    .launch-message h2 {
        font-size: 6rem;
    }

    .block h3 {
        font-size: 1.75rem;
    }
}
