:root {
    --background-color: #F5F5F5;
    --text-color: #333333;
    --title-color: #333333;
    --border-color: #4A6A8A;
    --subtitle-color: #666666;
    --cta-background: linear-gradient(45deg, #4A4A7A, #6A4A9A);
    --cta-background-hover: linear-gradient(45deg, #6A4A9A, #8A6ABA);
    --cta-border: #4A6A8A;
    --footer-shadow: rgba(74, 106, 138, 0.1);
    --logo-shadow: rgba(74, 106, 138, 0.3);
    --social-icon-color: #333333;
    --social-text-color: #333333;
}

.cta {
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #4A6A8A;
}

.cta:hover {
    background: #1A1A1A;
    color: #FFFFFF;
    border-color: #333333;
}

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--background-color);
    padding-top: 0.25rem; /* Reduce from 1rem to 0.25rem to bring content much closer to navigation */
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Increase gap from 2rem to 3rem for more space */
}

.title {
            font-size: 3rem;
    font-weight: bold;
    color: var(--title-color);
    margin: 0;
    line-height: 1.1;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem; /* Add extra margin below the title */
}

.mindset {
    color: #DAA520;
    text-shadow: 0 2px 4px rgba(218, 165, 32, 0.3);
}

.subtitle {
            font-size: 1.3rem;
    color: var(--subtitle-color);
    margin: 0;
    font-weight: 300;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 1.2rem; /* Reduce gap between paragraphs for more compact layout */
}

.description p {
    font-size: 0.95rem; /* Slightly smaller font size for more compact text */
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}



.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 400px; /* Adjust width to be smaller than height for portrait */
    height: 500px; /* Keep height larger for portrait aspect ratio */
    border-radius: 20px;
    object-fit: cover; /* Change back to cover to fill the container properly */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--cta-border);
}

footer {
    background: transparent !important;
    color: var(--subtitle-color);
    text-align: center;
    padding: 1rem;
    border-top: none;
    width: 100%;
    box-shadow: none;
    z-index: auto;
    margin-top: 2rem;
    font-size: 0.85rem;
}

footer p {
    margin: 0;
    opacity: 0.7;
}

footer a {
    color: var(--subtitle-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
        padding-top: 1rem; /* Reduced from 2rem to push content even higher on mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        gap: 1.5rem; /* Reduce from 2.5rem to 1.5rem for more compact mobile layout */
    }
    
    .title {
        font-size: 2.5rem;
        margin-bottom: 0.25rem; /* Reduce from 0.5rem to 0.25rem for tighter spacing */
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem; /* Add small margin below subtitle */
    }
    
    .description {
        gap: 1rem; /* Reduce gap between paragraphs from 1.5rem to 1rem */
    }
    
    .description p {
        font-size: 0.9rem; /* Smaller font size for mobile */
    }
    
    .profile-image {
        width: 300px; /* Adjust for portrait aspect ratio */
        height: 380px; /* Keep height larger for portrait aspect ratio */
    }
}

/* Medium mobile screens */
@media (max-width: 600px) and (min-width: 481px) {
    .hero-section {
        padding-top: 0.75rem; /* Reduced from 1.75rem to push content even higher on medium mobile screens */
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 0.5rem; /* Reduced from 1.5rem to push content even higher on very small screens */
    }
    
    .hero-text {
        gap: 1.25rem; /* Even more compact for very small screens */
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 0.2rem; /* Minimal margin for very small screens */
    }
    
    .subtitle {
        margin-bottom: 0.4rem; /* Smaller margin for very small screens */
        font-size: 1rem;
    }
    
    .description {
        gap: 0.8rem; /* Tighter spacing for very small screens */
    }
    
    .description p {
        font-size: 0.85rem; /* Even smaller for very small screens */
    }
    
    .profile-image {
        width: 250px; /* Adjust for portrait aspect ratio */
        height: 320px; /* Keep height larger for portrait aspect ratio */
    }
}