/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Use Roboto font */
    line-height: 1.6;
    color: white;    
    background-color: #1a1a1a; /* Very dark gray background */
}


parallax-container {
    position: relative;
    height: 400px; /* Set the height of the container */
    overflow: hidden; /* Hide the overflowing background */
}

/* The background that moves with the parallax effect */
.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px; /* Make it as tall as the viewport */
    background-image: url('price_banner.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1; /* Place behind the content */
}


header {
    position: relative;
    color: white;
    height: 400px;
    display: block;
    justify-content: left;
    align-items: left;
    text-align: left;
    z-index: 1; /* Make sure content appears above background */
    padding: 100px 30px;
}


/* Adjust for portrait orientation */
@media only screen and (orientation: portrait) {
    header {
        background-size: auto 100%; /* Make the image fill the height */
    }
}

/* Adjust for landscape orientation */
@media only screen and (orientation: landscape) {
    header {
        background-size: 100% auto; /* Make the image fill the width */
    }
}

b {
    color: #FFF9C4; /* Text color */
    background-color: #002147; /* Dark blue background */
    font-weight: 800; /* Bold text */
    padding: 5px 0px; /* Optional: add some padding for better readability */    
}

.allcontent {
    background-color: #1a1a1a; /* Light solid background with opacity */
    position: relative;
    padding: 30px;
    z-index: 2; /* Ensure it stays above the background */        
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

headred {
    color: white; /* Text color */
    background-color: #8B0000; /* Dark blue background */
    font-weight: 500; /* Bold text */
    padding: 5px 0px; /* Optional: add some padding for better readability */    
}

h1 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1; /* Adjust this value for line spacing */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Adding shadow */
}

.content-section {
    background-color: #1a1a1a; /* Very dark gray background */
    margin: 20px 0;
    margin-bottom: 10px; /* Add space between sections */
    position: relative; /* Ensure the stacking context is set */
}

h2 {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: -0.05em;
}


reghead {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: -0.05em;
}


p {
    margin-bottom: 20px;
}

/* Registration Form */
form {
    display: flex;
    flex-direction: column;
}

form input, form button {
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
}

form button {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}



#registration {
    background-color: #002147; /* Dark blue background */
    color: white; /* White text color */
    padding: 20px; /* Padding inside the section */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Box shadow for depth */    
    margin: 20px 0; /* Center the section */
}

/* Style for the form inputs */
#registration-form input {
    width: calc(100% - 20px); /* Full width with padding */
    padding: 10px; /* Inner padding */
    margin: 10px 0; /* Spacing between inputs */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners for inputs */
}

/* Style for the submit button */
#registration-form button {
    background-color: #004d00; /* Dark green background */
    color: white; /* White text */
    padding: 10px 15px; /* Button padding */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners for button */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth background change */
}

#registration-form button:hover {
    background-color: #006600; /* Lighter green on hover */
}

/* Style for the paragraph text */
#registration p {
    margin-top: 15px; /* Space above the paragraph */
    font-size: 14px; /* Font size for the text */
    line-height: 1.5; /* Line height for better readability */
}


/* Gallery */
.gallery-grid {
    display: flex;
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Video */
#video {
    height: 70vh; /* Set the height to 80% of the viewport height */
    align-items: center; /* Center horizontally */
    margin: 20px 0; /* Add some vertical spacing */
}

#video video {
    height: 60vh; /* Maintain the aspect ratio */
}

/* Feedback */
.feedback-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feedback-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 100px; /* Adjust size as needed */
}

.footer-social a {
    margin: 0 10px;
}

.footer-social img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* Make icons white */
    transition: filter 0.3s ease;
}

.footer-social a:hover img {
    filter: brightness(1) invert(0.7); /* Hover effect */
}

/* Responsive Design */
@media (min-width: 600px) {
    .gallery-grid {
        flex-direction: row;
    }

    .feedback-grid {
        flex-direction: row;
    }

    .feedback-item {
        flex: 1;
    }
}


    /* Style for the carousel */
        .carousel {
            background-color: #2E2E2E;
            margin: 0 auto;
            max-width: 100%;            
        }
        
        .carousel img {
         display: block;
        height: 500px;
        padding: 5px;
        }

        .carousel-cell {
            width: 60%;
            padding: 10px;
        }

        .carousel-cell img {
            display: block;
            width: 100%;
            height: auto;
        }
        
        
            /* Style for the carousel */
        .review {
            background-color: #ffffff;
            margin: 20px 0;
            max-width: 100%;            
        }
        
        .review-cell {
            width: 350px;
            padding: 30px;   
            text-align: center;
        }

        
        
  .user-photo {
            width: 80px; /* Circle photo width */
            height: 80px; /* Circle photo height */
            border-radius: 50%; /* Make it a circle */
            overflow: hidden; /* Clip overflow */
            margin: 0 auto 10px; /* Center and space below */
        }

        .user-photo img {
            width: 100%; /* Image fills the circle */
            height: auto; /* Keep aspect ratio */
        }

        .user-name {
            font-weight: bold;
            color: black;
            margin-bottom: 5px;            
        }

        .user-comment {
            font-style: italic;
            font-weight: 500;
            line-height: 1.2;
            color: #555; /* Subtle comment text color */            
        }     
        
        
        .collapsible-header {
    cursor: pointer;
    background-color: #002147;
    color: white;
    padding: 20px;
    text-align: left;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.collapsible-header:hover {
    background-color: #004080;
}

/* Initially hide the collapsible content */
.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #000000;
    padding: 0 15px;
    border-radius: 0 0 8px 8px;
}

/* Add some padding and margin for the expanded content */
.collapsible-content p, 
.collapsible-content ul {
    padding: 15px;
    margin: 0;
}

.video-container {
    position: relative;
    height: 60vh; /* Height capped at 60% of the viewport */
    margin: 0 auto; /* Center horizontally */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}