/* Global Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: #111;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

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

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

.nav-btn {
    background-color: #d4af37;
    color: #111 !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: #c19b2e;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/static/assets/logo.png') center/cover no-repeat;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.hero .tagline {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    background-color: #d4af37;
    color: #111;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #c19b2e;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #ffffff;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #111;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
}

.profile-pic-placeholder {
    background-color: #eaeaea;
    border: 2px dashed #d4af37;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    color: #555;
}

.profile-pic-placeholder span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-pic-placeholder small {
    color: #d4af37;
    font-weight: 600;
}

/* Services / Skills Grid */
.services-grid, .insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card, .insight-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.service-card:hover, .insight-card:hover {
    transform: translateY(-5px);
}

.service-card h3, .insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111;
}

.service-card p, .insight-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-sub {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}
