/* General Styling */
body, html {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.video-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

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

.video-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.video-content .btn {
    background-color: #fff; /* White button background */
    color: #333; /* Dark gray button text */
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.video-content .btn:hover {
    background-color: #f5f5f5; /* Subtle hover effect */
    color: #000; /* Darker text on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.video-wrapper iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.livestream-section {
    padding-top: 50px;
}


.livestream-section a {
    text-decoration: none;
    color: #333; /* Set to black or preferred color */
    font-weight: bold;
}

.livestream-section a:hover {
    color: #ff6600; /* Change to brand color */
    text-decoration: none;
}


.recent-uploads {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.upload-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.upload-item:last-child {
    border-bottom: none;
}

.upload-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.upload-info h6 {
    font-size: 0.9rem;
    margin: 0;
    font-weight: bold;
}

.upload-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.half-section {
    background-color: #f8f9fa; /* Light gray background */
}

.content {
    padding: 20px;
}

.spreaker-player {
    display: block;
    max-width: 100%;
    /* margin: auto; */
}

.outlook {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow for the iframe */
    border-radius: 8px; /* Rounded corners for a cleaner look */
    width: 100%;
    height: 100vh;
}

/* Plan a Visit Section */
.plan-a-visit h2 {
    font-size: 2rem;
    font-weight: 600;
}

.info-icons p {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.info-icons i {
    margin-right: 8px;
    color: #ff6600;
}

.booking-form {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


.home-btn:hover {
    background-color: #e65a00;
    transform: scale(1.1); /* Slight hover effect */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.home-btn:active {
    background-color: #cc4f00; /* Even darker shade for active state */
    transform: scale(1); /* Reset scaling on click */
}

