
/* Global */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7e8e9;
    color: #8b3f45;
}
header{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 1vw;
    margin-bottom: 5vw;
}

h1, h2 {
    margin: 0 0 10px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 2px solid #d98b8f;
}

.logo {
    padding: 10px 25px;
    border: 2px solid #d98b8f;
    border-radius: 4px;
    font-weight: bold;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #8b3f45;
    font-weight: 600;
}

/* Hero section */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    border-bottom: 2px solid #d98b8f;
}

.hero-text {
    max-width: 45%;
}

.hero-text p {
    margin: 20px 0;
    line-height: 1.5;
}

.product{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.box {
    /* width: 250px; */
    width: 100%;
    /* height: 250px; */
    max-width: 250px;
    aspect-ratio: 1 / 1; /* Keep for now */
    border-radius: 4px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    background: #d98b8f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.btn.light {
    background: white;
    color: #8b3f45;
    border: 2px solid #d98b8f;
}
button{
    background: white;
    color: #8b3f45;
    border: 2px solid #d98b8f;
    padding: .2vw;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
button:hover{
    background: #d98b8f;
    color: white;
}
nav{
    display: flex;
    gap:.5vw;
}
/* Signup */
.signup-section {
    background: #d98b8f;
    padding: 40px;
    display: flex;
    justify-content: center;
}
/* .product-image{ old text
    width: 250px;
    height: 250px;
    border: 2px solid #d98b8f;
    border-radius: 4px;
} */

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 920px) {    
    body {
        font-size: 14px;
    }

    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .hamburger {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #f7e8e9;
        margin-top: 10px;
    }

    nav a {
        padding: 10px 0;
        border-bottom: 1px solid #d98b8f;
    }

    nav.active {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .btn {
        width: 100%;
    }
}