/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Georgia", serif;
  }
  
  body {
    background-color: #fdf8f9;
    color: #333;
  }
  
  /* ===== CONTAINER & LAYOUT ===== */
  /* กล่องกลางเว็บ */
.wedding-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  /* คอลัมน์แต่ละอัน */
  .column {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  /* ซูมนิดๆ ตอน hover */
  .column:hover {
    transform: scale(1.02);
  }
  
  /* overlay ซ่อนอยู่ก่อน */
  .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 40px 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(2px);
  }
  
  /* แสดง overlay ตอน hover */
  .column:hover .overlay {
    opacity: 1;
  }
  
  /* ข้อความ */
  .overlay h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffeef2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  }
  
  .overlay p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f9f9f9;
  }
  
  
  /* ===== HERO SECTION WITH VIDEO ===== */
  .gift-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 3rem;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .hero-text h1 {
    font-family: 'Charm', cursive;
    font-size: 5rem;
    color: #ffe9f0;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  .hero-text p {
    font-family: 'Sriracha', cursive;
    font-size: 1.8rem;
    color: #fffafc;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  /* ===== BUTTON STYLE ===== */
  .load-more-button {
    display: block;
    margin: 30px auto;
    padding: 12px 36px;
    background-color: #f48fb1;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(244, 143, 177, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .load-more-button:hover {
    background-color: #e91e63;
    box-shadow: 0 6px 12px rgba(233, 30, 99, 0.5);
  }







/* ===== our-service===== */

.wedding-single {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
  }
  
  .wedding-single .column {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .wedding-single .column:hover {
    transform: scale(1.02);
  }
  
  .wedding-single .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(2px);
    transition: background 0.3s ease;
  }
  
  .wedding-single h2 {
    font-family: 'Charm', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffeef2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  }
  
  .wedding-single p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f8f8f8;
    max-width: 700px;
    margin: 0 auto;
  }
  
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 1024px) {
    .column h2 {
      font-size: 2rem;
    }
  
    .column p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      height: auto;
    }
  
    .column {
      height: 100vh;
      padding: 30px 20px;
    }
  
    .hero-text h1 {
      font-size: 3rem;
    }
  
    .hero-text p {
      font-size: 1.2rem;
    }
  }
  