/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f8f9fa;
    --accent-color: #0d6efd;
    --text-color: #333;
    --light-text: #fff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    background-color: #000000;
    color: var(--light-text);
    padding: 100px 0;
    position: relative;
}

#hero h1 {
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-image-container {
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-container {
    max-width: 400px; /* Increased by a third from 300px */
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 50px;
}

.social-icons a {
    display: inline-block;
    margin: 0 15px;
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Quote Section */
#quote {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

blockquote {
    font-style: italic;
    position: relative;
    padding: 20px 40px;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    opacity: 0.3;
}

blockquote::before {
    top: -20px;
    left: 0;
}

blockquote::after {
    bottom: -60px;
    right: 0;
}

/* Video Section */
#video {
    padding: 80px 0;
}

/* Smart TV style for video container */
.smart-tv-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 8px solid #222;
    background-color: #000;
}

.smart-tv-container iframe {
    border-radius: 12px;
}

/* Contact Section */
#contact {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.contact-links a {
    transition: var(--transition);
    border-radius: 50px;
    padding: 12px 30px;
}

.contact-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery styles */
.gallery-item {
    transition: transform 0.3s ease;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-caption {
    font-weight: 500;
    color: #555;
}

/* Bio page styles */
#bio-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.bio-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.bio-gallery-item {
    transition: transform 0.3s ease;
    height: 100%;
}

.bio-gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bio-gallery-item:hover {
    transform: translateY(-5px);
}

.career-item {
    padding: 2rem 1rem;
    transition: var(--transition);
}

.career-item:hover {
    transform: translateY(-5px);
}

.career-item i {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: var(--light-text);
}

.footer-links a {
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color) !important;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #hero {
        text-align: center;
        padding: 80px 0;
    }
    
    .profile-image-container {
        width: 250px;
        height: 250px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 60px 0;
    }
    
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .contact-links a {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}