@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    background-color: #FEF3E2;
}
.sidebar ul {
    text-align: center;
    list-style-image: none;
    list-style-type: none;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.content p {
    color: #000000;
    font-size: 20px;
    line-height: 30px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FEF3E2;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background-color: #fff;
    color: #000;
}

.contact-form button {
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.contact-form button:hover {
    background-color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}

.product {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px;
    border-bottom: 3px solid #000000;
}

.product-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.product-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}

.product-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.footer ul a {
    text-decoration: none;
    color: #000000;
    padding-left: 87px;
    font-size: 22px;
}

#header {
    background-color: #FEF3E2;
    padding: 20px;
    border-bottom: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.sidebar h1 {
    color: #000000;
    text-align: center;
    font-size: 28px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.sidebar p {
    color: #000000;
    text-align: center;
    font-size: 20px;
}

body {
    padding-top: 80px; 
}

#header h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #000000;
}

.nav-container {
    position: relative;
}

.hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: #000000;
    height: 3px;
    width: 100%;
    position: absolute;
    border-radius: 2px;
}

.hamburger span {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: 4px;
}

.hamburger::after {
    bottom: 4px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FEF3E2;
    min-width: 150px;
    z-index: 1;
}

.dropdown a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 14px;
}

.dropdown a:hover {
    background-color: #CCC3B7;
}

.nav-container:hover .dropdown {
    display: block;
}

.sidebar {
    background-color: #FEF3E2;
    padding: 20px;
    width: 25%;
    float: left;
    
}

.circular-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.content {
    width: 75%; 
    float: left; 
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px; 
}

.content img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    margin-top: 0px;
}




.footer {
    clear: both;
    border-top-width: 2px;
    border-top-style: solid;
    padding-top: 5px;
    padding-bottom: 5px;
}
.footer ul a:hover {
    text-shadow: 1px 1px 4px #717171;
}
.sidebar ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 20px;
}
.sidebar ul li a:hover  {
    color: #000000;
    text-decoration: none;
    text-shadow: 1px 1px #6B6B6B;
    font-size: 20px;
}


