/* General Styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4 !important; /* Light gray similar to the Wix template */
    color: #333;
    text-align: center;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e74c3c;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: white; /* Changed to white */
}

.hero-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* Profile Picture */
.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    background-size: cover; /* Fallback */
    border: 5px solid #ccc;
    box-sizing: border-box; /* Fix border issue */
}

/* Intro Text */
.intro-text {
    margin-top: 20px;
}

.intro-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 5px 0;
}

.intro-text p {
    font-size: 16px;
    color: #666;
}

/* Circle Buttons */
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.circle-button {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.circle-button:hover {
    transform: scale(1.05);
}

/* Button Colors */
.yellow {
    background: #f39c12;
}

.red {
    background: #e74c3c;
}

.blue {
    background: #3498db;
}

/* Sections */
.content-section {
    padding: 40px 20px;
    background: white;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: white;
    padding: 5px 20px; /* Reduced padding */
    text-align: center;
    margin-top: 5px; /* Reduce space above */
    border-top: 0.5px solid #ddd; /* Super thin line */
    box-shadow: none ; /* Remove shadow completely */
    height: auto; /* Ensures no extra height */
}


.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.footer-content a:hover {
    color: #e74c3c;
}
