@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Video */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.625);
}

/* Apply to all headings in hero */
.hero-content h1,
.hero-content h4,
.hero-content p {
    color: #fff;
    /* keep text visible */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
}

/* Optional: stronger shadow for smaller text */
.hero-content h4 {
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

/* Optional: for your Google rating box text */
.hero-content .google-tag p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
}

/* General About Sections */
.about-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1d2939;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Alternate Background */
.light-bg {
    background-color: #f5f7fa;
}

/* Contact Highlight */
.contact-highlight {
    background-color: orange;
    color: white;
}

.contact-highlight .about-heading {
    color: white;
}

.contact-highlight p {
    color: white;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-heading {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}

.purple {
    color: #5170ff !important;
}

.orange {
    color: #fd8f50 !important;
}