
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #F4EDF1;
    font-family: 'Poppins', sans-serif;
    color: #494747;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
}



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #E97AB0;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 14px;
}



.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.cart {
    font-size: 20px;
    cursor: pointer;
    
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 4px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 25px;
    width: 160px;
    font-size: 14px;
}

.search-box button {
    border: none;
    background-color: #E97AB0;
    color: white;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
}




.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f7f0f4; 
}

.hero h1 {
    font-family: serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    color: #777;
}


.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 60px 10%;
    text-align: center;
    gap: 20px;
}

.info-card i {
    font-size: 1.5rem;
    color: #d67eb2;
    background: #fdf0f7;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}



.form-section {
    padding: 40px 25%;
    background-color: #f7f0f4;
}

.form-section h2 {
    text-align: center;
    font-family: serif;
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: #666;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.btn-send {
    width: 100%;
    padding: 15px;
    background-color: #d67eb2;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}


.special-requests {
    padding: 80px 10%;
    text-align: center;
}

.special-requests h2 {
    font-family: serif;
    margin-bottom: 40px;
}

.request-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.request-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    text-align: left;
    max-width: 450px;
}

.request-card h3 {
    margin-bottom: 15px;
}

.request-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.request-card a {
    color: #d67eb2;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: bold;
}


.newsletter{
    font-family: 'Playfair Display', serif;
    background: #f7eef3;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
}

.newsletter-box{
    background: #fff;
    padding: 45px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.newsletter-box h2{
    margin-bottom: 12px;
}

.newsletter-box p{
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.newsletter-form{
    font-family: 'Playfair Display', serif;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input{

    padding: 12px 15px;
    width: 60%;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.newsletter-form button{
    padding: 12px 22px;
    background: #e86db1;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover{
    background: #d4559e;
}

.note{
    font-size: 13px;
    color: #888;
}


.footer {
  background: #1f1f1f;
  color: #ddd;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}

.footer .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a,
.footer-links a {
  color: #ddd;
  text-decoration: none;
  display: flex;
  margin-bottom: 8px;
}

.footer-section ul li a:hover,
.footer-links a:hover {
  color: #ffb703;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

.created-by {
  margin-top: 5px;
  color: #aaa;
}
