/* General Styles */
body {
    margin: 0;
    font-family: 'Century Gothic', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

h1, h2 {
    font-size: 36px;
    margin: 20px 0;
}

p {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 20px;
}

/* Responsive Image and Video Section */
img, iframe {
    max-width: 100%;
    height: auto;
}

/* Specific size for videos on desktop */
@media (min-width: 769px) {
    iframe {
        width: 800px;
        height: 400px;
    }
}

/* Keep the video responsive on mobile */
@media (max-width: 768px) {
    iframe {
        width: 100%;
        height: auto; /* Let the browser maintain the aspect ratio */
    }
}

/* Fade-in Effect */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Contact Button */
.floating-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    z-index: 200;
    transition: background-color 0.3s, color 0.3s;
}

.floating-button:hover {
    background-color: #fff;
    color: #000;
}

/* Media Query for Tablets and Larger Screens */
@media (min-width: 769px) {
    h1, h2 {
        font-size: 60px;
    }

    p {
        font-size: 20px;
    }

    .content-section, .image-section, .contact-info {
        padding: 100px;
    }

    .floating-button {
        font-size: 20px;
        padding: 15px 30px;
    }
}

/* Media Query for Smaller Screens (Mobile) */
@media (max-width: 768px) {
    h1, h2 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .content-section, .image-section, .contact-info {
        padding: 20px;
    }

    .floating-button {
        font-size: 16px;
        padding: 10px 20px;
    }
	
	.circle-photo {
    width: 150px; /* Set the size of the circle */
    height: 150px; /* Match the height to the width for a perfect circle */
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensures the image scales without distortion */
	}

	.subheading {
    font-size: 2em; /* Adjust the value between 1.2em and 1.5em for a size between h2 and h3 */
    font-weight: 1000; /* Optional: Adjust font-weight for emphasis */
    line-height: 1.3; /* Adjust line-height for readability */
    margin: 20px 0;
}
