:root {
  --bg: #fafaf8;
  --ink: #0f0f0f;
  --accent: #c5a98b;
  --muted: #6b6b6b;
  --radius: 10px;
  --max: 1200px;
  --gap: 2.5rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, sans-serif;
  background-image:url('background2.png');
}

body {
  animation: none;
  opacity: 1;
  
}

.body, .img {
  will-change: auto;
  transform: none;
}

.img[loading="lazy"] {
  opacity: 1;
  transition: none;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.section {
  content-visibility: visible;
}

/*Hero*/
.hero-bg,
.events-title img,
.portfolio-grid img,
.service-card {
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hide scrollbar visually (for all browsers) */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}
::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Header */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

a.logo,
.logo-text {
  text-decoration: none !important;
}

.logo img {
  height: 120px;
  color: var(--ink);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.logo-text {
  text-decoration: none !important;
  display: inline-block;
  color: var(--ink);
  font-family: 'Great Vibes', cursive;
  font-weight: 200;
  font-size: 1.5rem;
}

.logo:hover, .logo-text:hover{
  color: var(--accent);
  text-decoration: none;
}
.logo,
.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: var(--accent);
}

/* Buttons unified */
.btn, .btn-ghost, .download-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: filter 0.3s;
  height: auto; 
  width: auto;
}

.btn:hover, .btn-ghost:hover, .download-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

/* Center the Services button */
.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
}

.btn-wrapper .btn {
  border-radius: 999px;
  padding: 12px 32px;
  background: var(--accent);
  color: #111;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  height: auto;
  width: auto;
}


/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-top: 25vh;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-size: 3rem;
  font-weight: 200;
  color: #bfbebe;
  margin-top: 20px;
}

.hero-content {
  animation: fadeInUp 1s ease-out both;
}

.h2 {
  animation: fadeInUp 1s ease-out both;
  animation-delay: 0.3s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content:hover {
  animation: shake 0.5s ease-in-out;
}

.hero h1 .cursive {
  font-family: 'Great Vibes', cursive;
  font-size: 1.2em; /* slightly larger for emphasis */
  color: #c49b63;   /* optional – a warm highlight color */
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-top: -60px;
}

.lead {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 100;
}

/* Footer */
.site-footer {
  background: #fafafa;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #eee;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer nav a {
  text-decoration: none;             
  color: #444;                        
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer nav a:hover {
  color: #b59770;                     
  transform: translateY(-2px);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.social-icons a {
  color: #111;
  margin: 0 10px;
  font-size: 25px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent);
}

/* Section base styles */

section {
  padding: 6rem 2rem;
  text-align: center;
  content-visibility: visible;
}

h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}

/* Services */
.services {
  background-image: url('background2.png'), cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}


.service-card {
  background: #fafafa;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
  color: var(--ink);
}

.service-card p {
  color: var(--muted);
  font-size: 1rem;
  padding: 0 1.5rem 2rem;
}

.list{
  text-align: left;
  padding: 0 1.5rem 2rem;
  color: var(--muted);
}

/* Portfolio */


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.portfolio-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s, filter 0.3s;
}

.portfolio-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* Events */
.events-gallery {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: flex-start;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 2rem; /* space between images */
}

.events-title {
  text-align: center;
  flex: 1 1 300px; /* allows flexibility for responsiveness */
  max-width: 400px;
}

.events-title img {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.events-title figcaption {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #444;
  font-style: italic;
}

.events-title img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}


/* Testimonials */
.comments {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #9e9e9e;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 35px 10px 10px;
  width: 300px;
  height: 380px;
  position: relative;
  text-align: center;
  background-color: #fafaf8;
  border-radius: 5px;
  border-top: 5px solid wheat;
  vertical-align: top;

}

.comments *,
.comments *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.comments figcaption {
  padding: 13% 10% 12%;
}

.comments figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color:#D4AF37;
  content: "\f10e";
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.comments h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.comments h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.comments blockquote {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 20px;
}

/* About */
.about-grid{
display:grid; 
gap:var(--gap);
grid-template-columns: 1.1fr 1fr; 
align-items:center;
}

.about-copy h2{
	font-family: 'Great Vibes', cursive;
	font-size: clamp(28px, 3.2vw, 44px);
	text-align: center ;
}

.about-copy p{
	margin-top:0;
  line-height:1.8;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-align: left;
  margin-right: 10%;
}

.about-media img{
	border-radius: var(--radius);
  object-fit: cover;
  width: 500px;
  height: 500px;
  display: block;
  margin: 0 auto; 
 border: #6b6b6b;
 margin-right:10%;
}

.about-media img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

@media (max-width:900px){
	 .about-grid{
		grid-template-columns:1fr;
	}
 }


 /* CheckList */
 .checklist-teaser {
padding: 60px 20px;
text-align: center;
border-radius: var(--radius);
}

.checklist-teaser h2 {
font-size: 3em;
margin-bottom: 15px;
color: #b59770; /* deep romantic brown */
font-family: 'Great Vibes', cursive;
}

.checklist-teaser p {
font-size: 1.1em;
color: #0e0d0d;
max-width: 600px;
margin: 0 auto 25px;
line-height: 1.6;
font-family: "Cormorant Garamond", serif;
}

.download-btn{
display: inline-block;
background: #c7b49e;
color: #030303;
padding: 12px 25px;
border-radius: 30px;
text-decoration: none;
transition: background 0.3s;
}

.checklist-teaser .btn:hover {
background:#c7b49e;
}

/* Form */
.form{
	max-width:720px;
	margin: 0 auto;
  background-color: #fafaf8;
  border: 2px solid #e0e0e0;        
  border-radius: 12px;               
  padding: 30px 25px;               
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);  
  transition: box-shadow 0.3s ease;
}

.form:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);  
}

.form-row{
	display:flex;
	flex-direction:column;
	margin-bottom:14px;
  font-family:"Cormorant Garamond", serif;
	}

.label{
	font-weight:600;
}

input, .textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #fff;
  transition: border-color 0.3s ease;
  width: 100%;               
  box-sizing: border-box;     
}

.input:focus, .textarea:focus {
  border-color: #d9a7c7;
  outline: none;
}

.privacy{
	color:var(--muted); 
	font-size:.9rem; 
	margin-top:8px;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox.show {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.4s ease-out;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #d9a7c7;                   /* subtle brand accent */
}

.lightbox-content img,
#lightbox-img {
  width: auto !important;
  height: auto !important;
  max-width: 90vw !important;
  max-height: 90vh !important;
  object-fit: contain !important;
  display: block;
  margin: auto;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.h-divider {
  margin: auto;
  margin-top: -10px;
  width: 80%;
  position: relative;
}

.h-divider .shadow {
  overflow: hidden;
  height: 20px;
}

.h-divider .shadow:after {
  content: '';
  display: block;
  margin: -25px auto 0;
  width: 100%;
  height: 25px;
  border-radius: 125px/12px;
  box-shadow: 0 0 8px black;
}


/* --- Responsive Navbar Fix --- */
@media (max-width: 768px) { 
  
  .header-inner { 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
     padding: 0.8rem 1rem;
     } 
     .site-header { 
      padding: 0.1rem 1rem;
     } 
     .logo-area { 
      align-items: center; 
      margin-bottom: 10px; 
    } 
    .logo img {
       max-height: 55px;
        width: auto; 
      } 
      .logo-text { 
        display: block; 
        font-size: 15px;
         margin-top: 4px;
         } 
         .site-nav { 
          flex-direction: column; 
          align-items: center; 
          width: 100%;
           gap: 0; 
        }
         .site-nav a { 
          display: block; 
          width: 100%;
           text-align: center; 
           font-size: 16px;
            padding: 6px 0; 
          } 
          .site-nav .btn {
            display: inline-block;
             font-size: 15px;
              font-weight: 500;
               padding: 12px 26px; 
               border-radius: 555px; 
               background: var(--accent);
                color: #111;
                 text-decoration: none; 
                 text-align: center;
                  border: none; 
                  cursor: pointer; 
                  transition: filter 0.3s;
                   height: auto; width: auto; 
                  } 
                  .hero h1 { 
                    font-size: clamp(1rem, 8vw, 3rem);
                   } 
                   .about-media img {
                     margin-right: 0; 
                     width: 100%;
                      height: auto;
                       max-width: 400px; 
                      } 
                      .form {
                         width: 90%; 
                         max-width: 400px;
                          padding: 20px; 
                        } 
                      }

