* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oswald', sans-serif;
  background: linear-gradient(135deg, #ff0000, #000000);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  height: 110px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  text-align: center;
  margin-top: 100px;
  animation: fadeIn 1s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}

/* Ensure the product details section is centered */
.product-details {
  display: none; /* Hidden by default */
  text-align: center;
  margin-top: 20px;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.portfolio-item {
  background: #ffffff;
  border: 2px solid #ff0000;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item h2 {
  color: #ff0000;
  margin-bottom: 10px;
}

.portfolio-item p {
  color: #555;
}


/* Add this to your style.css */

/* Center the PayPal Button and other elements inside product-details */
.product-details {
  display: none; /* Hidden by default */
  text-align: center; /* Align text centrally */
  margin-top: 20px;
}

/* Center PayPal button container */
#paypal-button-container {
  display: flex; /* Enable flexbox */
  justify-content: center; /* Horizontally center the button */
  align-items: center; /* Vertically center if needed */
  margin-top: 20px;
}

/* Ensure the clickable strawberry product image and text is centered */
.product-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.product-button img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
}

.product-button p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

/* Optional styling for product details */
.product-details p {
  font-size: 1rem;
  margin: 10px 0;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff; /* Adjust the color as needed */
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
