body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3dcff;
  color: #4a148c;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 60px; /*prevent horizontal scroller*/
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.about-me {
  background-color: #240129;
  padding: 60px;
  border-radius: 0;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
  border: 1px solid #e1bee7;
  position: relative;
  width: 100%;
  background-image: linear-gradient(to bottom,  #2e033b 0%, #240129 20%, #240129 80%, #2e033b 100%);
  box-sizing: border-box;
}
.about-me-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-sizing: border-box;
}
.about-me-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
}
h1, h2, h3 {
  color: #ce93d8;
  font-weight: 700;
  margin-bottom: 0.75em;
  letter-spacing: -0.02em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}
h1 {
  font-size: 3em;
}
h2 {
  font-size: 2.25em;
}
 h3 {
  font-size: 1.5em;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden; /* Important for 'object-fit: cover' to clip excess */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-sizing: border-box;
  /* Add a defined height for the gallery item if you want a uniform look */
  height: 300px; /* Example: Adjust this value as desired */
}
.gallery-grid {
  display: grid;
  /* This rule is correct for auto-fitting columns */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 2em;
  box-sizing: border-box;
}
.gallery-item img { /* TARGET THE IMAGE INSIDE THE GALLERY ITEM */
  width: 100%; /* Make the image take up the full width of its parent (.gallery-item) */
  height: 100%; /* Make the image take up the full height of its parent (.gallery-item) */
  object-fit: cover; /* THIS IS THE KEY! */
  display: block; /* Removes any extra space below the image */
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.04); /* This is your desired effect */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* This is your desired effect */
}

 .gallery-button {
  background-color: #ce93d8;
  color: #240129;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-sizing: border-box;
}
.gallery-button:hover {
  background-color: #240129;
  color: #ce93d8;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.gallery-section {
  background-color: #240129;
  padding: 60px 0; /* consider making this vertical padding only */
  text-align: center;
   /* Or whatever width matches your other sections */
  margin-left: 60px;
  margin-right: 60px;
  box-sizing: border-box;
  margin-bottom: 60px;
  padding-right: 60px;
  padding-left: 60px;
}
.gallery-title {
  font-size: 3em;
  margin-bottom: 2em;
  color: #ce93d8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.header-title{
  color: #240129;
  font-size: 1.8em;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}
   .header-instagram {
    display: inline-block; /* Explicitly set to inline-block */
    text-decoration: none;
    color: inherit;
    align-items: center;
    gap: 15px;
  }
  
  .header-instagram-logo {
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  
  .header-instagram-name {
    color: #240129;
    font-size: 1.2em;
    font-weight: 600;
    padding-right: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }
.image-and-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding-right: 0;
  width: 100%;
  box-sizing: border-box;
}
.keywords {
  font-size: 1em;
  color: #9c27b0;
  margin-top: 30px;
  font-style: italic;
  opacity: 0.8;
}
.kissy-lips {
  position: relative;
  bottom: auto;
  right: auto;
  font-size: 10em;
  color: #ce93d8;
  opacity: 0.7;
  user-select: none;
  pointer-events: none;
  float: right;
  padding-right: 30px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  box-sizing: border-box;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f3dcff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  box-sizing: border-box;
}
.modal-close:hover {
  color: #ce93d8;
}
.modal-content {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 90%;
  max-width: 800px;
  box-sizing: border-box;
}
.modal-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
p {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 1.5em;
  color: #f3dcff;
}
.price-cell {
  display: table-cell;
  padding: 1.5em;
  border-bottom: 1px solid #e1bee7;
  text-align: left;
  font-size: 1.2em;
  color: #f3dcff;
  box-sizing: border-box;
}
.price-cell:last-child {
  text-align: right;
  font-weight: 600;
}
.price-row {
  display: table-row;
  box-sizing: border-box;
}
.price-row:last-child .price-cell {
  border-bottom: none;
}
.price-table {
  display: table;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  box-sizing: border-box;
}
.pricing-section {
  background-color: #240129;
  padding: 60px;
  border-radius: 0;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
  border: 1px solid #e1bee7;
  width: 100%;
  text-align: center;
   background-image: linear-gradient(to bottom,  #2e033b 0%, #240129 20%, #240129 80%, #2e033b 100%);
   box-sizing: border-box;
}
.pricing-title {
  font-size: 3em;
  margin-bottom: 1.5em;
  color: #ce93d8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  margin-bottom: 60px;
  box-sizing: border-box;
}
.full-viewport-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
}

.contact-section {
  background-color: #240129;
  color: #f3dcff;
  padding: 60px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  text-align: left;
  font-weight: 600;
  color: #ce93d8;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  background-color: #f3dcff;
  color: #240129;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form button {
  background-color: #ce93d8;
  color: #240129;
  padding: 15px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.contact-form button:hover {
  background-color: #4a148c;
  color: #f3dcff;
}
 /* Footer Styles */
 .footer {
  background-color: #240129;
  color: #5d4037;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #f0e0d5;
  font-size: 0.9em;
}
.footer a {
  color: #a37153;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer a:hover {
  color: #754630;
}

/* MOBILE STYLES - Combined into single media query */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }
  .modal-image {
      max-height: 80vh;
  }
  .price-table {
    display: block;
  }
  .price-row {
    display: block;
    margin-bottom: 1.5em;
  }
  .price-cell {
    display: block;
    text-align: center;
    padding: 1em;
    border: none;
  }
  .price-cell:last-child {
    text-align: center;
  }
  .header {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }
  .header-title{
      padding-bottom: 10px;
      font-size: 1.5em;
  }
  .header-instagram {
    flex-direction: row;
    gap: 10px;
  }
  .header-instagram-logo {
    width: 30px;
    height: 30px;
  }
  .header-instagram-name {
    font-size: 1em;
    padding-right: 0;
  }
  .image-and-text {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .about-me-image {
    max-width: 300px;
  }
  .kissy-lips{
    float: none;
    text-align: center;
    font-size: 6em;
    padding-right: 0;
  }
  
  h1 {
    font-size: 2.5em;
    text-align: center;
  }

  h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.2em;
    padding: 0 20px;
  }
  p{
      padding: 0 20px;
  }

  /* Gallery styles for mobile - FIXED */
  .gallery-grid {
    grid-template-columns: 1fr !important; /* Force single column on mobile */
  }
  
  .gallery-item img {
      max-height: 400px;
      min-height: 300px;
      width: 100%;
      object-fit: cover;
  }
      
  .gallery-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .gallery-section {
    padding: 30px 20px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .gallery-title {
    font-size: 2.5em;
    margin-bottom: 1.5em;
  }

  .keywords {
    font-size: 0.9em;
    margin-top: 20px;
  }

  .pricing-title {
    font-size: 2.5em;
    margin-bottom: 1em;
  }

  .contact-form {
    padding: 20px;
    gap: 15px;
  }

  .contact-form label {
    font-size: 1em;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 0.9em;
  }

  .contact-form button {
    padding: 12px;
    font-size: 1em;
  }
  .video-container {
      height: 50vh;
      overflow: hidden;
    }
  
  .video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .about-me {
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      padding-top: 30px;
      padding-bottom: 30px;
      margin-bottom: 50px;
    }

    .pricing-section {
      width: 100%;
      margin-bottom: 50px;
      padding-left: 0;
      padding-right: 0;
      padding-top: 50px;
    }
    .container{
        padding: 0;
        width:100%;
    }
}