@font-face {
    font-family: 'MySinhalaFont'; 
    src: url('linked/font/sinha.ttf'); 
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  background: linear-gradient(-90deg,
      rgb(255, 239, 205),
      rgb(255, 255, 255));
}

.navbar {
  width: 100%;
  padding: 38px 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: right;
  gap: 40px;
}

.nav-container-logo{
  position:absolute;
  display: flex;
  justify-content: left;
  left:20px;
  top:10px;
  width: 100px;
  height: 100px;
}

.nav-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #5a4a42;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.nav-linkR {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #c9a234;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.nav-linkR:hover {
  background-color: #947308;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.nav-link:hover {
  background-color: rgb(255, 252, 90);
  color: #3d2f2a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .nav-container {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* VIDEO HERO SECTION */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Center Content */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero-content-img img{
  position: relative;
  z-index: 3;
  top: 300px;
  left: 30%;
  width: 550px;
  height: auto;
  justify-content: center;
  align-items: center;
}

/* Title */
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 900px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h2 {
  color: #c9a227;
  font-size: 3.0rem;
  font-weight: 700;
  max-width: 900px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content .sinhala-sadewlanka {
  font-style: normal;
  font-family: 'MySinhalaFont', sans-serif;
  font-size: 100px;
  /* font-weight: 700; */
  max-width: 900px;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Description */
.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 35px;
}

/* Button */
.hero-btn {
  background: #c9a227;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-btn:hover {
  background: #947308;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content .sinhala-sadewlanka {
    font-size: 3.0rem;
  }
  .hero-content h2 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}


/* ABOUT SECTION */
.about-section {
  padding: 90px 20px;
  background: linear-gradient(0deg,
      rgb(255, 239, 205),
      rgb(255, 255, 255));
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 36px;
  color: #c9a234;
  margin-bottom: 18px;
  margin-left: 35px;
}

.about-content p {
  font-size: 15px;
  color: #5f5a57;
  line-height: 1.7;
  margin-bottom: 12px;
  margin-left: 35px;
  max-width: 520px;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content p {
    max-width: 100%;
  }

  .about-image img {
    width: 260px;
    height: 260px;
  }
}

/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 90px 20px;
  background: linear-gradient(180deg,
      rgb(255, 239, 205),
      rgb(255, 255, 255));
}

.how-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-header h2 {
  font-size: 36px;
  color: #c9a234;
  margin-bottom: 10px;
}

.how-header p {
  font-size: 14px;
  color: #6b665f;
}

/* STEPS GRID */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.how-card {
  background: #faf9f4;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ICON */
.how-icon {
  width: 50px;
  height: 50px;
  background-color: #c9a234;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* TEXT */
.how-card h3 {
  font-size: 16px;
  color: #2f2b27;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 13px;
  color: #5f5a57;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}


/* WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 90px 20px;
  background-color: #faf9f4;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 36px;
  color: #c9a234;
  margin-bottom: 10px;
}

.why-header p {
  font-size: 14px;
  color: #6b665f;
}

/* GRID */
.why-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

/* ICON */
.why-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

/* TEXT */
.why-card h3 {
  font-size: 16px;
  color: #2f2b27;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: #5f5a57;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-content {
    grid-template-columns: 1fr;
  }
}

/* FAQ SECTION */
.faq-section {
  padding: 90px 20px;
  background-color: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 34px;
  color: #c9a234;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 14px;
  color: #6b665f;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.faq-item {
  background-color: #faf9f4;
  border-radius: 14px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item summary {
  font-size: 14px;
  font-weight: 600;
  color: #2f2b27;
  list-style: none;
  position: relative;
  padding-right: 25px;
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Custom arrow */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  color: #c9a234;
  transition: transform 0.3s ease;
}

/* Open state */
.faq-item[open] summary::after {
  content: "−";
}

/* ANSWER */
.faq-item p {
  margin-top: 12px;
  font-size: 13px;
  color: #5f5a57;
  line-height: 1.7;
}

/* HOVER */
.faq-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .faq-item {
    padding: 18px 20px;
  }
}

/* CTA SECTION */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #c9a234, #e6d48a);
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* CONTENT */
.cta-content h2 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 15px;
  color: #fffdf2;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 38px;
  background-color: #ffffff;
  color: #c9a234;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #2f2b27;
  color: #ffffff;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 14px;
  }
}

/* FOOTER */
.footer {
  background-color: #2f2b27;
  color: #dcd7c9;
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo img{
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  justify-content: left;
}

/* BOX */
.footer-box h3 {
  font-size: 22px;
  color: #c9a234;
  margin-bottom: 15px;
}

.footer-box h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 13px;
  line-height: 1.7;
}

/* LINKS */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #dcd7c9;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-box ul li a:hover {
  color: #c9a234;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: #bfb9a6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Registration CSS */
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #fff8cc;
}

.register-section {
  padding: 50px 20px;
}

.register-form {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
}

/* HEADINGS */
.register-form h2 {
  text-align: center;
  color: #c9a234;
  margin-bottom: 30px;
}

.form-section {
  margin-bottom: 35px;
}

.form-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #2f2b27;
}

.input-box-payment input[type="file"]{
  padding:10px;
  background:#fff;
  cursor:pointer;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* INPUT */
.input-box label {
  font-size: 11px;
  color: #6b665f;
  margin-bottom: 5px;
  display: block;
}

.input-box input,
.input-box select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 13px;
  outline: none;
}

.input-box input:focus,
.input-box select:focus {
  border-color: #c9a234;
}

/* BUTTON */
.submit-btn {
  display: block;
  margin: 40px auto 0;
  padding: 14px 45px;
  background: #c9a234;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #2f2b27;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#fff8cc;
}

/* HERO */
.contact-hero{
  text-align:center;
  padding:70px 20px;
  background:#2f2b27;
  color:#fff;
}

.contact-hero h1{
  font-size:38px;
  margin-bottom:10px;
}

.contact-hero p{
  font-size:15px;
  opacity:0.9;
}

/* CONTAINER */
.contact-container{
  max-width:1100px;
  margin: -40px auto 60px;
  background:#fff;
  padding:40px;
  border-radius:20px;
}

/* TITLES */
.section-title{
  font-size:20px;
  font-weight:600;
  margin:40px 0 20px;
  color:#2f2b27;
}

/* INFO CARD */
.info-card{
  text-align:center;
  padding:30px;
  border-radius:18px;
  background:#f7f5ef;
}

.info-card h2{
  font-size:22px;
  color:#ffffff;
  margin-bottom:15px;
}

.highlight{
  background:linear-gradient(135deg,#c9a234,#e5c861);
  color:#fff;
}

.price{
  font-size:34px;
  font-weight:700;
  margin:15px 0;
}

.note{
  font-size:14px;
}

/* BANK */
.bank-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;
}

.bank-card{
  background:#fafafa;
  padding:25px;
  border-radius:16px;
  border:1px solid #eee;
}

.bank-card h3{
  margin-bottom:12px;
  color:#c9a234;
}

.bank-card p{
  font-size:14px;
  margin-bottom:6px;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:20px;
}

.contact-card{
  background:#fafafa;
  padding:25px;
  border-radius:16px;
  border:1px solid #eee;
  text-align:center;
}

.contact-card h3{
  margin-bottom:10px;
  color:#2f2b27;
}

.contact-card p{
  font-size:14px;
}

/* LOCATION */
.location-box{
  background:#fafafa;
  padding:25px;
  border-radius:16px;
  border:1px solid #eee;
}

.map-note{
  margin-top:10px;
  font-size:13px;
  color:#777;
}

/* TRUST */
.trust-box{
  margin-top:40px;
  text-align:center;
  padding:30px;
  background:#f7f5ef;
  border-radius:18px;
}

.trust-box h3{
  margin-bottom:10px;
  color:#c9a234;
}

.trust-box p{
  font-size:14px;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:900px){
  .bank-grid{
    grid-template-columns:1fr;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }
}

.payment-section {
  padding: 50px 20px;
}

.payment-info {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
}

/* about CSS */
body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#f9f9f9;
    color:#333;
}

/* Hero Section */

.about-hero{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("linked/head_section_photo.jpg");
    background-size:cover;
    background-position:center;
    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
}

.about-hero h1{
    font-size:40px;
    letter-spacing:2px;
}

/* About Content */

.about-container-new{
    max-width:900px;
    margin:auto;
    padding:50px 20px;
    line-height:1.8;
    font-size:17px;
}

.about-container-new p{
    margin-bottom:20px;
}

/* Vision Mission */

.vision-mission{
    display:flex;
    gap:30px;
    justify-content:center;
    padding:40px 20px;
}

.box h2{
    color:#b9972b;
    margin-bottom:15px;
}

/* Mobile */

@media(max-width:768px){

    .vision-mission{
        flex-direction:column;
        align-items:center;
    }

    .box{
        width:90%;
    }

}

.box{
    background:white;
    padding:30px;
    width:350px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.3s;
    cursor:pointer;
}

/* Hover Lift Effect */

.box:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}


/* Shake Animation */

.box:hover{
    animation:shake 0.4s;
}

@keyframes shake{
    0%{transform:translateX(0);}
    25%{transform:translateX(-4px);}
    50%{transform:translateX(4px);}
    75%{transform:translateX(-4px);}
    100%{transform:translateX(0);}
}

.box{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* SERVICES SECTION */

.wedding-services{
padding:80px 20px;
background:#f8f8f8;
text-align:center;
}

.services-title{
font-size:34px;
color:#b9972b;
margin-bottom:10px;
}

.services-subtitle{
font-size:15px;
color:#555;
margin-bottom:50px;
}

/* GRID */

.services-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */

.service-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 18px rgba(0,0,0,0.08);
transition:0.4s;
cursor:pointer;
position:relative;
overflow:hidden;
}

/* HOVER EFFECT */

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* GOLD LINE EFFECT */

.service-card::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:0;
height:3px;
background:#b9972b;
transition:0.4s;
}

.service-card:hover::after{
width:100%;
}

.service-card h3{
color:#333;
margin-bottom:10px;
}

.service-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:900px){
.services-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.services-grid{
grid-template-columns:1fr;
}
}

/* Scroll animation start state */
.service-card{
opacity:0;
transform:translateY(40px);
transition:all 0.6s ease;
}

/* When visible */
.service-card.show{
opacity:1;
transform:translateY(0);
}

/* Ripple effect */

.service-card span.ripple{
position:absolute;
border-radius:50%;
transform:scale(0);
animation:ripple 0.6s linear;
background:rgba(185,151,43,0.4);
}

@keyframes ripple{
to{
transform:scale(4);
opacity:0;
}
}