* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border: none;
    scroll-behavior: smooth;
	font-family: 'Roboto', sans-serif;
}

:root {
    --main-color: #0063c7;
    --bg-color: #fff;
    --bg-black: #000;
    --bg-second-color: #f7f8f9;
    --bg-third-color: #f4f4f4;
    --bg-transparent-main: rgb(172 134 59 / 70%);
    --bg--green: #18a800;
    
    --text-dark: #888;
    --text-color-dark-heading: #3a3d45;
    --text-color-light: #fff;
    --text-color-dark: #1b1c1f;
    --text-color-main: var(--main-color);

    --star-color: #ffb600;
	
    --border-green-color: .2rem solid rgb(18 141 125 / 45%);
    --border-main-color: .2rem solid var(--main-color);
    --border-white: 0.2rem solid var(--bg-color);
    --border: .2rem solid #ccc;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    --box-shadow-whatsapp: 1px 1px 4px rgba(60, 60, 60, 0.4);
    --box-shadow-project: -1px 2px 10px 1px rgba(0, 0, 0, 0.15);
    --box-shadow-drop-down: 0 3px 4px rgba(0, 0, 0, .2);
    --box-shadow-green: 0 3px 5px rgb(24 168 0);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
	font-size: 1.4rem;
	padding-bottom: 6rem;
}
section {
    padding: 5rem 3% 5rem;
}
footer {
    padding: 2rem 3%;
}
a {
    cursor: pointer;
    color: var(--bg-black);
}
a:active {
    color: var(--bg-black);
}
a.btn:active {
    color: var(--bg-black);
}
a.btn.reverse:active {
    color: var(--main-color)
}
.p-0{
	padding: 0 !important;
}

input,
select,
textarea {
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.5rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: .6rem;
    user-select: none;
    color: var(--text-color-dark);
}
select {
     -webkit-appearance: none;
     -moz-appearance: none;
     text-indent: 1px;
     text-overflow: '';
     /*color: var(--text-color-dark);*/
     background: transparent;
     cursor: pointer;
     color: #606060;
}
.btn {
    padding: 1.5rem 3rem;
    background-color: var(--main-color);
    color: var(--bg-color);
    border: var(--border-main-color);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 5rem;
    width: max-content;
	transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--bg-color);
    color: var(--main-color);
}
.text-white{
	color: var(--bg-color);
}
.color-main{
    color: var(--main-color);
}
.color-black{
    color: var(--bg-black);
}
.icon-color{
	color: #e3a984;
}
.color-green{
	color: var(--bg--green);
}

.text-center{
	text-align: center;
	text-align: -webkit-center;
}
.text-left {
    text-align: left;
	text-align: -webkit-left;
}
.text-right{
	text-align: right;
	text-align: -webkit-right;
}
.d-flex{
    display:flex;
}
.gap1{
    gap: 1rem;
}
.d-grid{
    display:grid;
	align-items: center;
}
.uppercase{
    text-transform: uppercase;
}
h2{
	font-size: 3.3rem;
}
h3{
	font-size: 2.8rem;
}
h4{
	font-size: 2.2rem;
}
p{
	font-size: 1.8rem;
}
.w-90{
	width: 90%;
	margin: 0 auto;
}
.text-a{
	font-size: 2rem;
}
.custom-select {
    position: absolute;
    top: 2rem;
    right: 2rem;
}
/* Wrapper */
#languageSelect {
  padding: 1rem 4.5rem 1rem 2rem;
  border-radius: 4px;
  appearance: none;    
      border: navajowhite;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='black' height='24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
  background-size: 2rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: var(--main-color);
}
/* Hover effect */
#languageSelect:hover {
  border-color: #666;
}
/* Focus (when clicked) */
#languageSelect:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}
/*Fixed Btn*/
.fixed-btns {
    position: fixed;
    bottom: 1rem;
    right: 2rem;
    z-index: 100;
    flex-direction: column;
    gap: 1.5rem;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.top a {
     background-color: var(--main-color);
     border-radius: 50%;
	 top: var(--swiper-navigation-top-offset, 50%) !important;
     padding: 0.5rem;
     transition: background-color .3s, opacity .5s, visibility .5s;
     opacity: 0;
     visibility: hidden;
     cursor: pointer;
}
.top a i {
     font-size: 3rem;
     color: var(--bg-color);
}
.top #back-to-top.show {
  opacity: 1;
  visibility: visible;
}
a.float {
    width: 6.2rem;
    height: 6.2rem;
	font-size: 1rem;
    color: var(--text-color-light);
	background: var(--bg--green);
    border-radius: 50%;
    box-shadow: var(--box-shadow-whatsapp);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.bg-banner{
	background-image: url("../img/background-image.jpg");
	background-repeat: no-repeat;
	background-size: cover;	
	margin-top: -1rem;
}

/*=====Banner hero=====*/
.hero {
    padding: 0;
/*    background: #000;*/
    position: relative;
}
.hero .hero-wrapper {
    line-height: 0;
    position: relative; 
}
.hero .hero-wrapper .bannerimg {
    height: 100%;
    /*object-position: 50% 30%;*/
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #be9c23;
}
.hero-heading {
    text-align: center;
}
.hero-heading p {
    font-size: 1.8rem;
    color: #000000;
}
.hero-heading h1 {
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}
.hero-heading h2 {
    font-size: 4rem;
    font-weight: bold;
    padding: 2rem 0 3rem;
}
.hero-wrapper .lux-logo{
    position: absolute;
    top: 3rem;
    left: 3rem;
}
.hero-wrapper .lux-logo img {
    width: 33%;
        filter: invert(1);
}
/*=====context-box====*/
.context-box{
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 2rem;
}
.context-box p{
    font-size: 2.2rem;
}
hr {
    border: 1px solid #ccc;
    display: flex;
    width: 80%;
    margin: 1rem 0;
}
.event-container {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    column-gap: 6rem;
        row-gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}
.h2-text{
	font-size: 6rem;
	color: #4d4c4c;
	font-family: 'Great Vibes', cursive; 
	line-height: 1;
	padding-top: 4rem;
	display: contents;
    grid-column: 1 / -1;
}
.h2-date {
    display: contents;
    font-size: 3rem;
    font-weight: 300;
    font-family: 'Lobster', cursive;
}
.h2-date sup {
    font-size: 2rem;
}
.h2-text span {
    font-family: 'Lobster', cursive;
    font-size: 5rem;
    text-transform: uppercase;
}
.icon-loct{
	margin: 0 auto;
}
.zero-flex{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
.why-attend {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  padding-bottom: 8rem;
}

.attend-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 5rem;
  width: 80%;
  margin: 0 auto;
}

.attend-box{
  display: flex;
  align-items: center;
  text-align: left;
  width: max-content;
  border-radius: 2rem;
  border: 3px solid #8cc640;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
  padding: 2rem 4rem;
  position: relative;
  margin: 0 auto;
}

.number-badge {
    background-color: #8cc640;
    color: #000;
    font-weight: 600;
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -3rem;
    font-family: 'Lobster', cursive;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    outline: 3px solid rgba(51, 153, 0, 0.65);
    outline-offset: 1rem;
    z-index: 2;   
}

.why-attend-content {
    margin: 0 0 0 4rem;
    padding: 2rem;
    line-height: 1.5;
    border-radius: 1rem;
    font-weight: 500;
    color: #000;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15)
}


/* Color Variants */
.green {
  border-color: #83c46d;
}

.green .circle {
  background: #83c46d;
}

.blue {
  border-color: #4aa3df;
}

.blue .circle {
  background: #4aa3df;
}

.teal {
  border-color: #2cb8b4;
}

.teal .circle {
  background: #2cb8b4;
}

.navy {
  border-color: #517daa;
}

.navy .circle {
  background: #517daa;
}


.rsvp-section {
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
    padding: 5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.rsvp-section h2 {
    margin-bottom: 3rem;
}

.rsvp-section p {
  color: #333;
  margin-bottom: 4rem;
}

.rsvp-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
    width: 50%;
    margin: 0 auto;
}

.phone-group {
  display: flex;
  gap: 1rem;
}

.phone-group select {
  flex: 0 0 100px;
}

.phone-group input {
  flex: 1;
}
.rsvp-section form .btn {
    width: 100%;
}

/* ======Footer section =====*/
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #333;
  background: rgb(0,0,0); /* semi-transparent black */
  color: white;
  padding: 0.5rem 2rem;
  display: flex;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  justify-content: center;
  z-index: 9;
}

.footer-inner {
  width: 88%;
  display: grid;
  grid-template-columns: 2fr 1fr;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
    text-align: center;
    justify-items: center;
}

.footer-text {
  font-size: 2rem;
  margin: 0;
/*  flex: 1;*/
  text-align: left;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.links a {
    color: #fff;
}
.footer{
	text-align: center;
	color: var(--text-color-light);
	padding: 2rem 0;
	display: flex;
    justify-content: space-around;
	background: var(--bg-black);
}
.footer p{
	font-size: 1.4rem;
	    text-align: center;
}
.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], 
.iti--allow-dropdown input[type=text], .iti--separate-dial-code input, 
.iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text] {
    padding-left: 10rem !important;
}



/*=====responsive breakpoints less than 5200px Queries=====*/
@media (width<=5200px) {
    html {
        font-size: 220%;
    }
}

@media (width<=5000px) {
    html {
        font-size: 200%;
    }
}

@media (width<=4500px) {
    html {
        font-size: 180%;
    }
}

@media (width<=4000px) {
    html {
        font-size: 160%;
    }
}

@media (width<=3500px) {
    html {
        font-size: 140%;
    }
}

@media (width<=3000px) {
    html {
        font-size: 120%;
    }
}

@media (width<=2500px) {
    html {
        font-size: 100%;
    }
}

@media (width<=2000px) {
    html {
        font-size: 80%;
    }
}

@media screen and (max-width: 1920px) and (min-width: 1500px) {
    html {
        font-size: 68%;
    }
}

@media (width<=1500px) {
    html {
        font-size: 60%;
    }
}

@media (width<=1200px) {
    html {
        font-size: 53%;
    }
}

@media (width<=1024px) {
    html {
        font-size: 51%;
    }
}

@media (width<992px) {
    html {
        font-size: 50%;
    }
}

@media (width<900px) {
	
}

@media (width<=768px) {
    
}

@media (width<601px) {
    html {
        font-size: 46%;
    }
    .hero-wrapper .lux-logo img {
        width: 22%;
	}
    .hero-wrapper .lux-logo {
        top: 1rem;
        left: 1rem;;
    }
    .hero .hero-wrapper .bannerimg {
        height: auto;
        object-position: center;
    }
	.hero-heading h1 {
        font-size: 3.3rem;
	}
	.hero-heading h2 {
        font-size: 2.3rem;
        padding: 1rem 0 2rem;
    }
	.why-attend-content {
        margin: 0 0 0 1rem;
        padding: 1rem;
	}
	.attend-box {
        padding: 1rem 2rem;
        border: 2px solid #8cc640;
	}
	.attend-box p {
        font-size: 1.6rem;
    }
	.number-badge {
        font-size: 2rem;
        width: 4rem;
        height: 4rem;
        left: -2rem;
        outline: 2px solid rgba(51, 153, 0, 0.65);
        outline-offset: 0.5rem;
	}
	.attend-container {
        gap: 4rem;
        width: 90%;
	}
	.why-attend {
        gap: 3rem;
	}
	.attend-box {
         width: auto;
	}
    .hide {
        display:none;
    }
    .event-container {
        column-gap: 1rem;
        row-gap: 1rem;
    }
    .h2-text {
        font-size: 2.6rem;
    }
    .h2-text span {
        font-size: 2.3rem;
    }
    .h2-date {
        font-size: 1.6rem;
    }
    .h2-date sup {
        font-size: x-small;
    }
    h3 {
        font-size: 2.2rem;
    }
    h4 {
        font-size: 2.1rem;
    }
    .context-box p {
        font-size: 1.8rem;
    }
    .footer-text {
        display: none;
    }
    .footer-inner {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .rsvp-section form {
     width:100%;
    }
}


@media only screen and (max-width: 480px) {
  html {
        font-size: 42%;
    }  
}

@media only screen and (max-width: 414px) {
    
}

@media only screen and (max-width: 380px) {

}

@media only screen and (max-width: 330px) {
	
}

@media only screen and (max-width: 320px) {}

