
/* Overall Page Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background:#f7f8f3;
    background-size: cover;
    background-attachment: fixed; 
}

html {
    overflow-y: scroll;  /* Always reserve scrollbar space */
    overflow-x: hidden; 
}


/* Body Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    width: 100%; /* Ensure width is 100% */
    min-height: calc(var(--vh, 1vh) * 100);
}

/* Header Styles for 'header-white' */
.header-white {
    background:#f7f8f3;

}

@font-face {
    font-family: 'eyesome';
    src: url('../fonts/Eyesome-Script.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Eyesome-Script.eot?#iefix') format('embedded-opentype'), /* IE6–IE8 */
         url('../fonts/Eyesome-Script.otf') format('opentype');
}

@font-face {
    font-family: 'lora';
    src: url('../fonts/Lora-Regular.eot');
    src: url('../fonts/Lora-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Lora-Regular.ttf') format('opentype');
}


@font-face {
    font-family: 'shrikhand';
    src: url('../fonts/shrikhand.regular.eot');
    src: url('../fonts/shrikhand.regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/shrikhand.regular.ttf') format('opentype');
}


@font-face {
    font-family: 'marcellus';
    src: url('../fonts/marcellus.regular.eot');
    src: url('../fonts/marcellus.regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/marcellus.regular.ttf') format('opentype');
}




header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-family: 'shrikhand', sans-serif;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.header-title {
    font-weight: normal;
    order: 2;
    text-align: center;
    flex-grow: 1;
    margin: 0;
}

.logo {
    order: 1;
    height: 100px; /* Adjust logo size */
    width: auto;
    margin-left: 0; /* Align logo to the left */
    align-self: flex-start; /* Align logo to the top of the container */
    margin-top: -10px;  /* Move logo upward */
}

/* The entire box (button, arrow, icons) */
.social-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    box-shadow:none;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column-reverse; 
}

/* When shown */
.social-box.show {
    display: flex;
    opacity: 1;

}


/* Icon images inside */
.icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: background 0.3s;
}

/* Enquire button (now inside box) */
.enquire-btn {
    position: static; /* Remove fixed positioning */
}

/* Arrow icon (now inside box) */
.arrow-icon {
    margin-top: -10px;
    width: 30px;
    height: 30px;
    object-fit: contain;
    user-select: none;
    cursor: default;
    display: none;
}

/* Social icons layout */
.header-contact-social-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


#contactDetails {
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    /* Enquire Button */

    .header-title {
        /*font-size: 40px;*/
        font-size: 30px;
        margin-left: -25px;
        margin-right: 40px;
    }
    
    .logo {
        height: 130px;
        /* margin-top: -60px; */
        margin-top: 5px; 
        padding: 0; /* Ensure no padding */
        margin-left: -10px; 
    }
    
    
    
    header {
        padding: 0px 40px 0px 0px;
    }

    body {
        padding-top: 135px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }


    /* Social box wrapper */
    .social-box {
        display: inline-block;
        bottom: 10px;
        right: 5px; 
    }

    .icon-img {
        width: 35px;
        height: 35px;
    }

}

@media (min-width: 768px) {
    .header-title {
        font-size: 70px;
        margin-right: 30px;
    }

    .logo {
        height: 140px;

    }
    .social-box {
        display: inline-block;
    }
    body {
        padding-top: 130px;
    }

}


/* Laptops & Desktops (Large Screens) - 4 Templates per Row */
@media (min-width: 1024px) {
    .header-title {
        font-size: 70px;
        margin-right: 30px;
    }

    .logo {
        height: 250px;
        margin-left: 0; /* Align logo to the left */
        margin-top: -20px;  /* Move logo upward */
        margin-bottom: -40px;
        padding: 0; /* Ensure no padding */
    }

    
    body {
        padding-top: 190px;
    }
     .social-box {
        display: inline-block;
    }
}

.main-banner {
    width: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    margin-bottom: 20px;
}

.banner-container {
    width: 100%;
    position: relative;
}

.banner-item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}


.banner-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.story-section {
    padding: 0;
    margin-top: 0;
}

.story-card {
    width: 100%;
    padding: 0;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.story-content {
    font-family: 'marcellus', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 15px;
}

.story-text {
    flex: 1 1 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 0;
    text-align: center;
    padding: 0 20px;
}

.story-text h2 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.5; /* Line height for better readability */
    margin-top: 0;
    margin-bottom: 10px; 
}
.story-text p {
    font-size: 30px; /* Base font size for paragraphs */
    line-height: 1.5; /* Increased line height for readability */
    margin: 15px 0; /* Margin for spacing between paragraphs */
    text-align: center;
}


@media (max-width: 1023px) {
    .story-text h2 {
        font-size: 1.8rem;
    }

    .story-text p {
        font-size: 0.95rem;
    }
    
}



@media (max-width: 600px) {
    .story-text h2 {
        font-size: 21px; /* Adjust font size for smaller screens */
    }

    .story-text p {
        font-size: 15px; /* Adjust paragraph font size */
    }
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    font-family: 'marcellus', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 260px; /* Maximum width for each card */
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    background: linear-gradient(180deg, 
    rgba(0, 0, 0, 1) 0%,         /* Black with 80% opacity */
    rgba(75, 59, 0, 0.7) 40%,      /* Dark gold/olive with 70% opacity */
    rgba(200, 145, 22, 0.5) 100%   /* Gold with 60% opacity */
);

    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 100%;
    margin: 0;
    width: auto; /* Let it take natural width based on max-width and content */
    border: 2px solid black; /* Add black border */
}

.card-img-container {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 10px;
    overflow: hidden;
}

.card-img {
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* same as template */
    border-radius: 8px;
    display: block;
}

.card-content {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 16px;
}

.card-title {
    color: black; /* Text color */
    font-size: 1.0rem;
    font-weight: normal; 
    text-align: center;
    padding: 8px 16px; /* Padding around the text */
    border: 2px solid black; /* Black outline/border around the heading */
    border-radius: 999px; /* Rounded corners */
    background-color: transparent; /* Transparent background */
    width: 200px; /* Fixed width for the border */
    display: inline-block; /* Ensure the title is centered within the width */
    margin-bottom: -20px; /* Remove space below the title */
}

.card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 20px;
    justify-items: center;
    align-items: stretch;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.celebration-text {
    font-weight: bold;
    color: #9e627c; /* You can change this to a richer/darker pink or purple if you want */
    text-align: center;
    font-size: 0.8rem;
    margin-top: 30px;
    letter-spacing: 0.5px;
    line-height: 1.6; /* Optional: change font */
}

@media (min-width:860px) {

    .celebration-text {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }
}

/* Wrapper for images */
.image-wrapper {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Default to auto-fit for smaller screens */
    gap: 0;
    padding: 20px;
    justify-items: center;
    align-items: center;
    margin-bottom: -30px;
}

/* Style for each image item */
.image-item {
    text-align: center; /* Align title under the image */
    margin: 0; 
}

/* Fixed width and height for images */
.fixed-image {
    width: 200px; /* Fixed width for each image */
    height: 200px; /* Fixed height for each image */
    object-fit: cover; /* Ensure the image covers the area without stretching */
    border-radius: 8px; /* Slightly rounded corners (adjust as needed) */
    margin: 0; 
}

/* Title below the image */
.image-title {
     font-family: 'marcellus', sans-serif;
    margin-top: 10px; /* Space between image and title */
    font-size: 1rem;
    font-weight: normal; 
    color: black; /* Black text color */
    text-align: center;
}

.image-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Media query for larger screens (like laptops and iPads) */
@media (min-width: 768px) {
    .image-wrapper {
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr); /* Two images per row on larger screens */
        gap: 25px;
        margin-bottom: -40px;
    }
    .image-item {
        margin: 0; /* Remove margin around image items */
    }
}


.footer-title {
    margin-top: 0px;
    font-size: 4.2rem;
    margin-bottom: 20px;
    font-family: 'eyesome', cursive;
    color: black;
}

.contact-section-wrapper {
    width: fit-content;
    text-align: left;          /* Align text inside to the left */
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* Align children (contact items) to start at the same point */
    margin-bottom: 20px;       /* Optional: add space below for visual clarity */
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-family: 'lora', serif;
    color: black;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: normal;
}

.footer-divider {
    border: none;
    border-top: 1px solid #000;
    margin: 10px auto;
    width: 100%;
}

.working-hours .working-hours-details {
    margin-top: 5px;
    text-align: center;
}

.working-hours-details .day,
.working-hours-details .time {
    font-weight: normal;
    font-size: 20px;
    margin: 0;
}



/* Footer */
footer {
    color: #000;
    padding: 20px;
    box-shadow:none;
    background: transparent;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* Footer Content */
.footer-content {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    color: #3B2F2F;
}

.contact-icon {
    width: 30px;   /* Adjust size as needed */
    height: 30px;
    object-fit: contain;
}


@media (max-width: 768px) {
    footer {
    padding: 20px 0;
    /*box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);*/
    box-shadow: none;
    width: 100%;
    margin: 0 auto;
    color: #333;
    

}

.footer-content {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    border-radius: 0;
    background: transparent; /* inherit the footer's blur */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-family: 'eyesome', cursive;
    color: black;
}

.contact-icon {
    width: 20px;   /* Adjust size as needed */
    height: 20px;
    object-fit: contain;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-family: 'lora', serif;
    color: black;
}

.working-hours-details .day,
.working-hours-details .time {
    font-weight: normal;
    font-size: 16px;
    margin: 0;
}
}

.footer-copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 10px; /* default for mobile */
    color: black;
    font-weight: normal;
}

.footer-credits {
    text-align: center;
    font-size: 10px; /* smaller font */
    color: black;
    margin-top: 10px;
    font-weight: normal;
    margin-bottom: 10px;
}

/* Increase font size on tablets and larger */
@media (min-width: 768px) {
    .footer-copyright {
       font-size: 10px;
        
    }
    
    .footer-credits {
        margin-top: 10px;
        font-size: 10px;
        margin-bottom: -15px;
    }
}

