body {
  margin: 0;
font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, serif;
  background-color: #f7f3ee;
  color: #2b2b2b;
}

header {
  background: #111;
  color: white;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, serif;
  letter-spacing: 1px;
}

header h1 {
font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, serif;
  font-weight: 600;
  letter-spacing: 2px;
}
nav {
    margin-left: auto;
}
nav a {
  color: white;
  margin-left: 100px;
  text-decoration: none;
  
}

nav a:hover {
  color: #d6b48c;
}

section {
  padding: 60px 8%;
}

h2 {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

h3 {
  color: #cbbfa3;
  font-size: 1.8rem;
  margin-top: 60px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-align: center;
}

.gallery-grid {
  margin-bottom: 40px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

.about-container {
  display: flex;
  align-items: flex-start; /* THIS is the key */
  gap: 50px;
  margin-top: 40px;
}

.about-photo {
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px; /* small rounded corners */
}

.about-text {
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.6;
  
 section h2 {
  margin-bottom: 40px;
}
  section {
  padding-top: 80px;
}
}

.about-text {
  max-width: 500px;
}

.hero {
  height: 90vh;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('images/engagementbackground.jpeg'); /* change to your photo */
    
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  color: #f2ede4;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #d9d2c3;
  margin-bottom: 25px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.button {
  background: #cbbfa3;
  color: #121212;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background: #f2ede4;
}

		.pricing-container {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 25px;
		}

.price-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical centering */
  align-items: center;       /* horizontal centering */

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
 
  position: relative; /* REQUIRED for badge */

  
}
.popular {
  transform: scale(1.05);
  border: 1px solid #cbbfa3;
}

.price-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

		.price-card h3 {
			font-size: 1.6rem;
			margin-bottom: 15px;
			color: #1f1f1f;
		}

		.price {
			font-size: 2rem;
			color: #a68a64; /* muted gold */
			margin: 10px 0 20px;
			font-weight: medium;
		}

		.price-card ul {
    text-align: left;
    list-style-type: disc;
    padding-left: 30px;
    margin: 25px auto 0 auto;
    width: fit-content;
    line-height: 1.8;
}

.price-card li {
    margin-bottom: 10px;
    font-size: 0.93rem;
    letter-spacing: 0.5px;
}



.badge {
  position: absolute;
  top: -12px;
    background: #000;
    color: #fff;
    border: 1px solid #cbbfa3;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  border-radius: 20px;
}

.contact-form {
			max-width: 650px;
			margin: auto;
			background: white;
			padding: 35px;
			border-radius: 15px;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
		}

		.contact-form label {
			display: block;
			margin-top: 15px;
			font-weight: bold;
		}

		.contact-form input,
		.contact-form textarea {
			width: 100%;
			padding: 12px;
			margin-top: 6px;
			border: 1px solid #ccc;
			border-radius: 8px;
			font-size: 1rem;
		}

		.contact-form textarea {
			resize: vertical;
			height: 130px;
		}

		.contact-form button {
			margin-top: 20px;
			width: 100%;
			border: none;
			cursor: pointer;
			font-size: 1rem;
		}
		
		
		.booking-section {
    padding: 80px 10%;
    text-align: center;
    background-color: #f7f4ef;
}

.booking-section h2 {
    font-family: Didot, "Bodoni MT", "Times New Roman", serif;
    font-size: 2.5rem;
    color: #a68a64;
    margin-bottom: 15px;
}

.booking-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #333;
}

.calendar-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.logo {
    height: 150px;
    width: auto;
    display: block;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
}

.policies-section {
    padding: 80px 10%;
    text-align: center;
}

.policies-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.policies-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.policy-box h3 {
    margin-bottom: 20px;
    color: #a68a64;
}

.policy-box ul {
    padding-left: 20px;
    line-height: 1.9;
}

.policy-box li {
    margin-bottom: 10px;
}

.booking-button-container {
    text-align: center;
    margin-top: 30px;
}