body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  /* Background image pattern */
  background-image: url("/website\ background_2.png"); /* replace with your actual file */
  background-repeat: repeat; /* tile the image in both directions */
  background-size: auto;     /* use the image’s natural size */
  background-size: 400px 400px;

  background-attachment: fixed; /* keeps pattern fixed while scrolling */
}


/* Main container */
.container {
  max-width: 1000px;
  margin: 0 auto; /* Center the container */
  text-align: center;
  background: #efe2e9; /* Inside container background */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Main container */
.container {
  max-width: 1000px;
  margin: 0 auto; /* Center the container */
  text-align: center;
  background: #efe2e9; /* Inside background (light, wedding-theme look) */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.banner-container {
  width: 1000px;           /* match your design width */
  max-width: 100%;         /* still allow it to shrink on smaller screens */
  margin: 0 auto;          /* center the banner horizontally */
  overflow: hidden;        /* prevents overflow scrollbars */
}

.banner-container img {
  width: 100%;             /* makes the image fit the container */
  height: auto;            /* keeps aspect ratio */
  display: block;
}


/* Header styling */
header {
  text-align: center;
  position: relative;
  overflow: hidden;
}

header img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

header h1, 
header p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  margin: 0;
}

header h1 {
  top: 30%;
  font-size: 3rem;
}

header p {
  top: 50%;
  font-size: 1.3rem;
}

.venue {
  padding: 40px 20px;
  background: #fdf0f6;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.venue h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #a83279;
}

.venue p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.map-link {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.map-link:hover {
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
}
