body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8fb;
}
/*https://blog.hubspot.com/website/html-projects-for-beginners*/
header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add padding for spacing */
}

.header-content h1 {
    margin: 0;
    flex-grow: 1; /* Ensures the title takes the available space */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px; /* Adjusted spacing between menu items */
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #a8dadc; /* Hover effect color change */
}

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-icon img {
    width: 30px;
    height: auto;
}


.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.product {
    background-color: white;
    margin: 10px;
    padding: 20px;
    width: calc((100% / 3) - 40px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}
.one {
    background-image:url(../img/havnGimp_4171.jpg);
    object-fit: contain;
    background-repeat: no-repeat;
    position: relative;
}
.one .action-button {
    bottom: 8px;
    right: 16px;
    color: rgb(158, 22, 22);
    position: absolute;

}
.action-button:hover {
    background-color: #0056b3;
}


.three{
    /*background-image:url(../img/bg_june12.jpg);*/
    /*background-color: #007bff;*/
    background: #97a4b5;
}

    #hero {
        /*background-image: url('https://i.imgur.com/oXrLmSl.jpg'); /* Add your image path */
        /*background-color: #a8dadc;*/
        background-size: cover;
        background-position: center;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        }
        
        .hero-content {
            background-color: #87ce97;
        /*background-color: rgba(0, 0, 0, 0.5);*/
        padding: 20px;
        }
        
        .hero-button {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 20px;
        background-color: #887229;
        text-decoration: none;
        /*background-color: #f1d98f;*/
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
        }
        
        .hero-button:hover {
        background-color: #d64b2a;
        }
        


.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product h2 {
    color: #333;
    margin-bottom: 10px;    
}

.price {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #218838;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}

@media screen and (max-width: 768px) {
    .product {
        width: calc((100% / 2) - 30px); /* Adjust for 2 products per row */
    }
}

@media screen and (max-width: 480px) {
    .product {
        width: 100%; /* Full width for single product per row */
    }
}
span{
    color: rgb(118, 121, 121);
}

.two p{
    color: #f2f7f3;
}
.two iframe{
    border-radius: 20px;
  }
.surfblue{
    background: #448b91;

  }
.porcelain {
    background-color: #98ab90;
  }

  