/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #ffffff, #fdf2e9);
    color: #3b3b3b;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header a{
	font-size:14px;
	line-height:22px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo img{
	width:100px;
	height:75px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #3b3b3b;
    font-weight: 500;
}

.shop-btn {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
}

.main-content {
    display: flex;
	flex-wrap:wrap;
    justify-content:center;
    align-items: center;
    padding: 50px 10%;
}

.text-content {
    max-width: 50%;
}
@media(max-width:900px){
	.text-content{
	max-width:100%;
}
}
.text-content h2 {
    color: #999;
    font-size: 20px;
	font-size:14px;
	line-height:22px;
}

.text-content h1 {
    font-size: 48px;
    margin: 20px 0;
	line-height:46px;
}
.text-content p{
	font-size:14px;
	line-height:22px;
}

.email-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.email-form input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.email-form button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.note {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.image-content img {
    max-width: 100%;
    height: auto;
}

.footer {
    background-color: #f8f8f8;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.footer-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
}
