/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body {
  background-color: #FFDEDE;
  color: #333;
  line-height: 1.6;
}

/* Reset */
*
.dynapuff-headerfont {
  font-family: 'DynaPuff';
  font-optical-sizing: auto;
  font-weight: 18;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.logo img {
  height: 214px;      /* adjust size */
  width: auto;
  display: block;
} 

 .sour-gummy-secondhead {
  font-family: 'Sour Gummy'
  font-optical-sizing: auto;
  font-weight: 18;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}



:root{
--bs-primary: #FF6F6F;
--secondary-color:#0FDE1D ;
--bs-font-sans-serif: 'dynapuff', 'sour-gummy', sans-serif;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.3rem;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar a:hover {
  color: #ff6b81;
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(255, 107, 129, 0.4), rgba(255, 107, 129, 0.4)),
              url('img/plumeria.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6b81;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  margin: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4f6d;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Summary */
.summary p {
  max-width: 600px;
  margin: auto;
}

/* Grid Layouts */
.work-grid,
.commission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}


div.polaroid {
  width: 80%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

img {width: 100%}

div.container {
  text-align: center;
  padding: 10px 20px;
}

/* Commissions button */
.learn-more {
  margin-top: 30px;
}

/* Contact */
.contact form {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.form-left,
.form-right {
  flex: 1;
  min-width: 250px;
}

input, textarea {
  width: 519px;
  padding: 10px;
  border: 10px solid #ffd1d9;
  border-radius: 8px;
  outline: none;
}

textarea {
  height: 365px;
  resize: none;
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container {
  padding: 2px 16px;
}

/* Footer */
.footer {
  background: #ff6b81;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-links {
  list-style: none;
  margin: 15px 0;
}

.footer-links li {
  display: inline;
  margin: 0 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.socials a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .navbar {
    flex-direction: column;
    gap: 57px;
  }
}

