@font-face {
  font-family: Mulish;
  src: url('fonts/mulish/Mulish-VariableFont_wght.ttf' ) format("truetype");
}

@font-face {
  font-family: "Merriweather";
  src: url("fonts/merriweather/Merriweather-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Merriweather";
  src: url("fonts/merriweather/Merriweather-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Mulish', sans-serif;
}

h1,h2,h3,h4,h5{
    font-family: 'Merriweather';
}

h1{
    font-size: calc(16px + 2vw);
}

h2{
    margin-bottom: 40px;
    margin-top:0;
}

p{
    margin-bottom:20px;
    line-height: 1.4;
}

.mini-subtitle{
    color:grey;font-size:12px;letter-spacing: 1px;
}

a{
    color: #778da9;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}






header {
    background-color: #1A2A3ACC;
    color: white;
    backdrop-filter: blur(5px);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 5000;
}

header ul {
    list-style-type: none;
    padding: 0;
}

header ul li {
    display: inline;
    margin-right: 20px;
}

header ul li:last-child {
    margin-right: 0;
}
header ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.2px;
}

header ul li a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo img{
    max-width: 100%;
}


.primary-button{
    background-color: #778DA9;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    letter-spacing: 0px;
    font-weight: 600;
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-block;
    transition: all 0.1s ease-in;
    position: relative;
    top:0px;
}

.primary-button:hover{
    background-color: #94A6BC;
    top: -2px;
    box-shadow: 0px 2px 5px #9D95A6;
}

.primary-button:active{
    background-color: #5A7290;
    top: 2px;
    box-shadow: 0px 2px 5px #9D95A6;
}

.secondary-button{
    background-color: #010101;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    letter-spacing: 0px;
    font-weight: 600;
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-block;
    transition: all 0.1s ease-in;
    position: relative;
    top:0px;
}

.secondary-button:hover{
    background-color: #232323;
    top: -2px;
    box-shadow: 0px 2px 5px #9D95A6;
}

.secondary-button:active{
    background-color: #000000;
    top: 2px;
    box-shadow: 0px 2px 5px #9D95A6;
}




.review{
    background: white;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e9e9e9;
    box-shadow: 0px 5px 3px 0px #f4f6ff;
}

.review-grid, .occasion-grid, .benefits-grid, .features-grid, .timeline-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.counter-grid, .contact-grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.logo-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.values-grid, .contact-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.values{
    background:#0D1B2A;
    color: white;
}


.fade-quote{
    position: absolute;
    left: 20px;
    top: 20%;
}

.testimonial-picture{
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}


.our-story .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.our-story-image {
    flex: 1;
    position: relative;
}
.our-story-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #778DA9;
    z-index: -1;
}
.our-story-image img {
    width: 100%;
    height: auto;
    display: block;
}
.our-story-content {
    flex: 1;
}

.our-story h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.our-story h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #778DA9;
}



.ready-to-book{
    background: url('cta-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    background-position: center;
}


/* Updated Whatever the occasion section styles */
.occasions {
    background-color: #f8f8f8;
}

.occasions h2 {
    text-align: center;
    margin-bottom: 40px;
}

.occasion {
    text-align: center;
    position: relative;
}

.over-image-title{
    position: absolute;
    top: calc(50% - 12px);
    width: 100%;
    margin: 0;
    color:white;
    font-size: 24px;
}

.occasion img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.counter{
    text-align: center;
}

.counter-number{
    font-size: 32px;
    margin:0;
}

.counter-text{
    margin-top:6px;
}

.feature img{
    width:24px;
    padding: 4px;
}

.features-headline{
    padding: 0px;
    margin-left: 0px;
    line-height: 30px;
    position: relative;
    top: -8px;
    display: inline;
}


/* Responsive styles */
@media (max-width: 800px) {

    .our-story .container {
        flex-direction: column;
    }
    .our-story-image,
    .our-story-content {
        width: 100%;
    }

    .our-story-image::before {
        left: -10px;
        top: 10px;
    }
    
   .review-grid, .occasion-grid, .benefits-grid, .features-grid, .counter-grid, .timeline-grid, .values-grid, .contact-grid-4, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media (max-width: 600px) {

    .videos .fix-height iframe{
        max-height: calc(100px + 10vh);
    }

}


/* Mobile Menu */

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #1a2a3a;
    padding: 20px;
    z-index: 10000;
    box-sizing: border-box;
    transition: all 0.1s ease-in;
}

.close-mobile-menu{
    position: absolute;
    top:18px;
    right:26px;
    color:white;
}

.mobile-menu ul {
    list-style-type: none;
    padding: 0;
    margin:0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.mobile-menu ul li {
    margin: 16px 0;
}
.mobile-menu ul li a {
    color: white;
    text-decoration: none;
}

@media (max-width: 800px) {
    header ul {
        display: none;
    }
    .enquire-button {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
}




.why-choose-us h2 {
    text-align: center;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}
.benefit-icon {
    font-size: 48px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.benefit-icon img{
    width:50px;
}
.benefit-headline {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.benefit-text {
    font-size: 16px;
    line-height: 1.6;
}

.values-item {
    text-align: center;
    padding: 20px;
}
.values-icon {
    font-size: 48px;
    color: #4a90e2;
    margin-bottom: 20px;
}
.values-headline {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.values-text {
    font-size: 16px;
    line-height: 1.6;
}

.timeline-number{
    font-size: 72px;
    margin: 0;
    opacity: 0.6;
}

.timeline{
    text-align: center;
}



footer {
    background-color:#0D1B2A;
    color: white;
    padding: 80px 0 0;
    border-top: 10px solid #778DA9;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-info {
    flex: 1;
    min-width: 250px;
}
.footer-info h3 {
    margin-bottom: 20px;
}
.footer-links ul {
    list-style-type: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 20px;
}
.footer-links ul li a {
    color: white;
    text-decoration: none;
}
.enquiry-form {
    flex: 1;
}

.enquiry-form h3 {
    margin-bottom: 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 20px;
}
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #7a7a7a;
}

footer .form-field label{
    color:white !important;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #939393;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 0 4px 1px #d7dae6;
}
.form-field textarea {
    height: 100px;
}

.form-submit button {
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
}

.grecaptcha-badge { 
    visibility: hidden;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}


.social-icon {
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.social-icon img{
    width:32px;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.hero-video {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    color:white;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -50;
}

#about-hero-old{
    background:url('brand-bg.png');
    background-repeat: repeat;
    background-size: contain;
}

#about-hero{
    background:url('about-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#muteButton{
    display: block;
    padding: 24px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.grid-item {
    aspect-ratio: 1;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 800px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}