*{
    box-sizing: border-box;
}

:root{
    --bg1:#fff5f0;
    --bg2:#f0f8ff;
    --ink:#111827;
    --muted:#6b7280;
    --brand:#d4a017; /* gold-ish */
    --brand2:#f59e0b; /* orange-ish */
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, var(--bg1), var(--bg2), #ffffff);
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* Make text selection brand-colored */
::selection{
    background: rgba(212, 160, 23, .25);
}

/* NAVIGATION */
nav {
    background: #000;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

nav a:hover {
    color: #fff;
    background: rgba(212, 160, 23, 0.12);
    transform: translateY(-1px);
}

#logo-div{
    display:flex;
    align-items: center;
}

#logo-image{
    height:40px;
    width: auto;
    border-radius:50%;
    background:#fff;
    padding-left:0px;
    margin-left: 0%;
}

#nav-div-a{
    display:flex;
    gap:10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* smoother scroll for anchor links */
html{ scroll-behavior: smooth; }

header {
    background: linear-gradient(to right, #000, #444);
    color: #fff;
    text-align: center;
    width: 100%;
    padding: clamp(22px, 6vh, 64px) 16px;
    min-height: clamp(280px, 50vh, 520px);
    height: auto;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

/* Background video for header */
.header-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header-video-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

header img,
header h1,
header p {
    position: relative;
    z-index: 2;
}

header img {
    width: 220px;
    max-width: min(240px, 60vw);
}


section {
    padding: 50px 20px;
}

h1, h2, p {
    text-wrap: balance;
}

h1, h2, h3{
    line-height: 1.15;
}

/* General type scale */
h1{
    font-size: clamp(2rem, 3.2vw, 2.8rem);
}
h2{
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}
p{
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
}


.services ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.services li {
    margin: 10px 0;
    font-size: 18px;
}

/*events*/
.event-h1{
    text-align:center;
    font-size:32px;
    color:#222;
    margin-bottom:40px;
}
.event {
    margin-bottom: 60px;
}
.event-h2{
    text-align:center;
}

.slider {
    position: relative;
    max-width: 760px;
    margin: auto;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.35);
}

.slides {
    display: flex;
    height: clamp(260px, 52vh, 520px);
    transition: transform 0.5s ease;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    transition: transform .15s ease, background .15s ease;
}

.arrow:hover{
    transform: translateY(-50%) scale(1.06);
    background: rgba(0,0,0,0.8);
}

.left { left: 12px; }
.right { right: 12px; }

/*form*/
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

input, textarea {
    margin: 10px 0;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    outline: none;
    transition: box-shadow .2s ease, border-color .2s ease, transform .05s ease;
    background: #fff;
}

input:focus, textarea:focus{
    border-color: rgba(245, 158, 11, 0.9);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

button.submit {
    background: linear-gradient(to right, var(--brand), var(--brand2));
    border: none;
    padding: 12px;
    cursor: pointer;
    color: #000;
    font-weight: 800;
    border-radius: 10px;
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.22);
}

button.submit:hover{
    transform: translateY(-2px);
    filter: saturate(1.05);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.32);
}

button.submit:active{
    transform: translateY(0px);
}

/*footer*/
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* contact iframe / embedded media */
iframe{
    max-width: 100%;
}

/* Icons beside text inside contact section */
#contact p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

#contact p img{
    flex: 0 0 auto;
    height: 18px;
    width: auto;
}

#contact p a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/*social*/
.social {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    width: 120px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}


.social:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/*services*/
#services{
    background:linear-gradient(135deg,#fff8f2,#f3f7ff);
    padding:60px 20px;
}

#service-header{
    text-align:center;
    font-size:32px;
    color:#222;
    margin-bottom:30px;
}

#service-div1{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:30px;
    max-width:1100px;
    margin:auto;
}

#service-div2{
    flex:1;
    min-width:400px;
    height: clamp(280px, 50vh, 520px);
}

#service-image{
    width:100%;
    height: 100%;
    object-fit: cover;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

#service-div2{
    position: relative;
}

#service-image-text{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    background: rgba(0,0,0,0.35);
}

#service-image-text h3{
    margin: 0 0 10px 0;
    font-size: 26px;
    color: #fff;
}

#service-image-text p{
    margin: 0;
    font-size: 16px;
    max-width: 90%;
    color: rgba(255,255,255,0.95);
}

#list-div{
    flex:1;
    min-width:300px;
}

#unorder-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-item {
    margin-bottom:12px;
    padding:15px;
    border-radius:10px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform:translateY(-6px) scale(1.03);
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    background:linear-gradient(135deg,#ffffff,#f9f9f9);
}

#service-item-list1{ background:#ffe4e1; margin-bottom:12px; padding:15px; border-radius:10px; }
#service-item-span1{ background:#ff6b6b; color:#fff; padding:5px 10px; border-radius:50%; margin-right:10px; font-weight: bold; }

#service-item-list2{ background:#e6f7ff; margin-bottom:12px; padding:15px; border-radius:10px; }
#service-item-span2{ background:#1890ff; color:#fff; padding:5px 10px; border-radius:50%; margin-right:10px; font-weight: bold; }

#service-item-list3{ background:#f6ffed; margin-bottom:12px; padding:15px; border-radius:10px; }
#service-item-span3{ background:#52c41a; color:#fff; padding:5px 10px; border-radius:50%; margin-right:10px; font-weight: bold; }

#service-item-list4{ background:#fff7e6; margin-bottom:12px; padding:15px; border-radius:10px; }
#service-item-span4{ background:#fa8c16; color:#fff; padding:5px 10px; border-radius:50%; margin-right:10px; font-weight: bold; }

#service-item-list5{ background:#f9f0ff; margin-bottom:12px; padding:15px; border-radius:10px; }
#service-item-span5{ background:#722ed1; color:#fff; padding:5px 10px; border-radius:50%; margin-right:10px; font-weight: bold; }

#service-item-list6{ background:#e6fffb; margin-bottom:12px; padding:15px; border-radius:10px; }
#service-item-span6{ background:#13c2c2; color:#fff; padding:5px 10px; border-radius:50%; margin-right:10px; font-weight: bold; }

#service-item-list7{ background:#f8f5da; padding:15px; border-radius:10px; }
#service-item-span7{ background:#d8cb5a; color:#fff; padding:5px 10px; border-radius:50%; margin-right:10px; font-weight: bold; }

.book-btn {
    display:inline-block;
    margin-top:25px;
    background:linear-gradient(to right,gold,orange);
    color:#000;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    background:linear-gradient(to right,orange,gold);
}

#home-logo{
    border-radius: 50%;
}

#welcome-section{
    background:linear-gradient(135deg,#fff3e6,#f0f7ff);
    padding:80px 20px;
    text-align:center;
}

#welcome-div{
    max-width:800px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

#welcome-heading{
    font-size:34px;
    color:#b8860b;
    margin-bottom:20px;
}

#welcome-p1{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

#welcome-p2{
    font-size:17px;
    line-height:1.7;
    color:#666;
    margin-top:15px;
}

#chooseSection{
    display:flex;
    flex-wrap:wrap;
    min-height:350px;
}

#chooseDiv1{
    flex:1;
    min-width:300px;
    background:url('wedding3.jpeg') center/cover;
    color:white;
    padding:40px;
    display:flex;
    align-items:center;
}

#chooseDiv2{
    background:rgba(0,0,0,0.6);
    padding:25px;
    border-radius:10px;
    width:100%;
}

#chooseHeading1{
    text-align:center;
    margin-bottom:20px;
    font-size: 25px;
}

#chooseUl{
    list-style:none;
    padding:0;
    font-size: 20px;
}

#chooseDiv3{
    flex:1;
    min-width:300px;
    padding:50px;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg, #fdf0e6, #ffe4d6);
}

#chooseDiv4{
    max-width:500px;
    margin:auto;
}

#chooseHeading2{
    color:#b8860b;
    margin-bottom:20px;
    font-size:26px;
}

#choosep1{
    font-size:18px;
    line-height:1.8;
    color:#333;
}

#choosep2{
    font-size:17px;
    line-height:1.7;
    color:#555;
    margin-top:15px;
}

#About-Us{
    background:linear-gradient(135deg,#f8fbff,#fff7f2);
    padding:60px 20px;
}

#About-Heading{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
}

.About-Us-Div1{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.About-Us-Div2{
    flex:1;
    min-width:300px;
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.About-Us-h1{
    color:#b8860b;
    margin-bottom:15px;
}

.About-Us-p1{
    line-height:1.8;
    color:#444;
}

.About-Us-p2{
    line-height:1.8;
    color:#555;
    margin-top:10px;
}

.missionDiv1{
    flex:1;
    min-width:300px;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.missionDiv2{
    background:linear-gradient(135deg,#fff0e6,#ffe4d6);
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.missionh1{
    color:#d97706;
    margin-bottom:10px;
}

.missionp1{
    line-height:1.7;
    color:#444;
}

.missionDiv3{
    background:linear-gradient(135deg,#e6f7ff,#f0fbff);
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.missionh2{
    color:#2563eb;
    margin-bottom:10px;
}

.missionp2{
    line-height:1.7;
    color:#444;
}

.book-h1{
    text-align:center;
    font-size:32px;
    color:#222;
    margin-bottom:40px;
}

.contactH1{
    text-align:center;
    font-size:32px;
    color:#222;
    margin-bottom:40px;
}

.contactp1, .formP1{
    text-align:center;
}

.contactDiv1{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
}

#to-top{
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.75);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 22px;
    z-index: 1001;
    transition: transform .15s ease, background .15s ease;
}

#to-top:hover{
    transform: translateY(-3px);
    background: rgba(0,0,0,0.9);
}


@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  #logo-div{
    width: 100%;
    justify-content: center;
  }

  #nav-div-a{
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
  }

  nav a{
    font-size: 14px;
  }

  .services-container,
  .about-container {
    flex-direction: column;
  }

  .slides img {
    height: clamp(260px, 60vh, 520px);
  }

  .book-btn { text-align: center; }
}

@media (max-width: 480px) {

  nav {
    padding: 10px;
    gap: 12px;
  }

  nav a{
    font-size: 12px;
    text-align: center;
    white-space: normal;
  }

  #logo-image{
    height: 32px;
  }

  body{
    font-size: 16px;
    line-height: 1.55;
  }

  .social{
    width: 90px;
    padding: 12px;
    border-radius: 12px;
  }

  form{
    padding: 16px;
  }

  /* global h1/h2/p sizing handled above */

  h3{ font-size: 17px; }

  .event-h1{
    font-size: 26px;
  }

  .book-h1, .contactH1, #About-Heading{
    font-size: 26px;
  }

  .slides img{
    height: clamp(220px, 55vh, 420px);
  }

  .whatsapp{
    bottom: 14px;
    right: 14px;
    padding: 12px;
    font-size: 18px;
  }
}

