.hero {
    text-align: center;
    padding: 30px 20px;
}

.home-logo{

    max-width:800px;
    width:100%;
    height:auto;

}


.subtitle {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 0px;
}

.craft-section {
    text-align: center;
    max-width: 800px;
    margin: 0px
    
}
.craft-section h2 {
    
    font-size: 2.5rem;
    margin-bottom: 0px;
    
}
.craft-section p {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 25px;
   
}

.welcome-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    
}

.welcome-section {
    text-align: center;
    
    max-width: 900px;
    margin: 0px;
    
}

.welcome-section p {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.info-columns {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 80px;
    max-width: 1200px;
    margin: 40px auto;
}

.info-columns h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #c9a44c;
    margin: 15px auto 0;
}
.info-columns h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #3d2417;
    
}

h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.welcome-section,
.craft-section {
    border: 2px solid #c9a44c;
    border-radius: 12px;
    padding: 40px;
}

.welcome-section,
.craft-section {
    flex: 1;
    max-width: 500px;
}

.button-container {
    text-align: center;
    margin-top: 50px;
}

.button {
    display: inline-block;
    padding: 25px 300px;
    background: #4d3f37;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 2rem;
}

.button:hover {
    opacity: 0.9;
}

/* ----------- UDVALG ----------- */


.shop-logo{

    max-width:350px;
    width:100%;
    height:auto;
}

.shop-layout{

    display:flex;

    gap:60px;

    max-width:1200px;

    margin:50px auto;

    align-items:flex-start;

}

.sidebar{

    width:260px;

}

.menu-box,
.workshop-box{

    border:2px solid #c9a44c;

    border-radius:12px;

    padding:30px;

    margin-bottom:40px;

}

.menu-box h2,
.workshop-box h2{

    font-family:'Cormorant Garamond', serif;

    color:#3d2417;

}

.menu-box ul{

    list-style:none;

    padding:0;

}

.menu-box li{

    margin:18px 0;

    cursor:pointer;

    transition:.2s;

}

.menu-box li:hover{

    color:#c9a44c;

}

.products-area{

    flex:1;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.product-card{

    display:flex;

    align-items:center;

    gap:30px;

    border:2px solid #c9a44c;

    border-radius:12px;

    padding:25px;

    transition:.25s;

    cursor:pointer;

}

.product-card:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 18px rgba(0,0,0,.08);

}

.product-card img{

    width:150px;

    height:150px;

    object-fit:contain;

    flex-shrink:0;

}

.product-card h3{

    margin-top:25px;

    font-family:'Cormorant Garamond', serif;

    font-size:2rem;

}

.price{

    display:block;

    margin-top:20px;

    font-size:1.6rem;

    font-weight:bold;

}

.product-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.product-info h3{

    margin-bottom:12px;

}

.product-info p{

    margin-bottom:15px;

}