*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(PHOTO-2024-12-23-10-05-17.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Style for the logo image */
.logo {
    width: 150px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    display: inline-block; /* Ensure it stays inline with other elements */
    margin: 0; /* Remove any default margin */
    position: relative; /* Allows precise positioning if needed */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
}

@media (max-width: 700px) {
    .logo {
        width: 70px; /* Resize the logo for smaller screens */
    }
}


/* Style for the nav */
nav {
    display: flex; /* Use Flexbox for layout */
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Space between logo and nav links */
    padding: 2% 6%; /* Add padding for spacing */
}

nav img{
    width: 150px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

.gallery{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}

.media-col{
    width: 100%;
    max-width: 600px;
    height: auto;
    flex-basis: 31%;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 5%;
}

.media-col img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(IMG_3608\ \(1\).JPG);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;

}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(IMG_3608\ \(1\).JPG);
    background-position: center;
    text-align: center;
    color: #fff;
}

.sub-header h1{
    margin-top: 100px;
}

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin-bottom: 30px;
    padding: 50px 0;
    text-align: left;
}

.contact-col{
    flex-basis: 100%;
    text-align: left;
    margin-bottom: 20px;
}

@media(min-width: 768px){
    .contact-col{
        flex-basis: 48%;
    }
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 24px;
    color: #f44336;
    margin: 0 ;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.social-media {
    display: flex; /* Ensures the icons are aligned horizontally */
    justify-content: center; /* Centers the icons */
    gap: 20px; /* Adds space between the icons */
    margin-top: 20px;
}

.social-media a {
    text-decoration: none;
    color: inherit; /* Inherits the text color (useful for hover effects) */
    font-size: 24px; /* Adjusts icon size */
    transition: transform 0.3s, color 0.3s; /* Smooth animation for hover effects */
}

.social-media a:hover {
    color: #f44336; /* Change to desired hover color */
    transform: scale(1.2); /* Slightly enlarges the icon on hover */
}

/* Style for the Coming Soon message */
.coming-soon {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: #fff; /* Text color */
    padding: 20px 40px; /* Add padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 24px; /* Font size */
    text-align: center; /* Center text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    z-index: 1000; /* Ensure it's above other content */
    display: none; /* Initially hidden */
}

/* Add a class to show the message */
.coming-soon.visible {
    display: block; /* Make it visible */
}

/* Style the fade-out animation */
.coming-soon.fade-out {
    animation: fadeOut 1.5s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Official WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Slight zoom when a user hovers over it */
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Make it slightly smaller on mobile devices for better UX */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Inquiry Form Container */
.inquiry-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Arial', sans-serif;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 25px;
}

.inquiry-header h2 {
    color: #800000; /* Matching your maroon/dark red theme */
    margin-bottom: 10px;
}

.inquiry-header p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Elements */
.inquiry-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.inquiry-form label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.inquiry-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.inquiry-form input:focus {
    outline: none;
    border-color: #800000;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #800000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #5a0000; /* Slightly darker on hover */
}

/* Base state: Grey icon, transparent background */
.social-icon {
    color: grey;
    transition: all 0.3s ease; /* Makes the transition smooth */
}

/* Hover state: White icon, white glow */
.social-icon:hover {
    color: white;
    /* This creates the glow effect */
    text-shadow: 0 0 10px white, 0 0 20px white; 
    cursor: pointer;
}

/* --- SCHEDULE A VISIT PAGE --- */

.visit-split {
    width: 80%;
    margin: auto;
    padding: 80px 0 40px;
}

.visit-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.visit-text-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.visit-text-col p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.expect-title {
    font-family: 'Playfair Display', serif;
    color: var(--red-deep);
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.expect-list {
    list-style: none;
}

.expect-list li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

/* Adds a nice dash before each list item like the inspiration image */
.expect-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--red);
}

.visit-video-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: #000; /* Fallback background while loading */
}

/* --- ENQUIRY FORM SECTION --- */

.visit-form-container {
    width: 80%;
    margin: auto;
    padding: 20px 0 80px;
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    border-top: 5px solid var(--red-deep);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-wrapper .section-title {
    margin-bottom: 30px;
    font-size: 26px;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .visit-text-col, .visit-video-col {
        flex-basis: 100%;
    }
    
    .form-wrapper {
        padding: 25px;
    }
}

/* =========================================
   HOMEPAGE SLIDESHOW ANIMATION
   ========================================= */

.homepage-slider {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* The dark red overlay tint */
.homepage-slider .slider-tint {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* You can adjust the 0.85 opacity if you want it lighter or darker */
    background: rgba(168, 28, 20, 0.85); 
    z-index: 1;
}

.homepage-slider .slide {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Total cycle is 15 seconds */
    animation: fadeSlide 15s infinite; 
    z-index: 0;
}

/* Attaching the photos and timing them 5 seconds apart */
.homepage-slider .slide1 { 
    background-image: url('PHOTO-2024-12-23-10-05-17.jpg'); 
    animation-delay: 0s; 
}
.homepage-slider .slide2 { 
    background-image: url('PHOTO-2024-12-23-10-05-18 (1).jpg'); 
    animation-delay: 5s; 
}
.homepage-slider .slide3 { 
    background-image: url('PHOTO-2024-12-23-10-05-18 (2).jpg'); 
    animation-delay: 10s; 
}

/* The smooth crossfade keyframes */
@keyframes fadeSlide {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    33%  { opacity: 1; }
    45%  { opacity: 0; }
    100% { opacity: 0; }
}


