/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
   
}

/* Navigation */
header {
  background: #222;
  color: #fff;
  padding: 1rem;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header ul {
  list-style: none;
  display: flex;
}
header ul li {
  margin-left: 20px;
}
header ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
header ul li a:hover {
  color: #ff9800;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(to right, #ff9800, #f44336);
  color: #fff;
}
.hero button {
  margin-top: 1rem;
  padding: 10px 20px;
  border: none;
  background: #fff;
  color: #f44336;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}
.hero button:hover {
  background: #222;
  color: #fff;
}

/* Sections */
.section {
  padding: 2rem;
  text-align: center;
}
.section img {
  margin-top: 1rem;
  max-width: 100%;
  border-radius: 10px;
}

/* Shop */
.shop .product-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.product {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}
.product img {
  max-width: 100%;
  border-radius: 10px;
}
.product button {
  margin-top: 10px;
  padding: 8px 15px;
  background: #ff9800;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}
.product button:hover {
  background: #f44336;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
#instagram{
    color: #4729f5;
    text-decoration: none;
}
#instagram:hover{
    color: #6668ec;
}

.section img {
  width: 400px;          
  height: auto;          
  border-radius: 10px;   
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 20px auto;    
  display: block;        
}
.product img {
  width: 200px;          
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}
.section img:hover,
.product img:hover {
  transform: scale(1.05);          
  transition: transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2); 
}









