:root {
    --bg-dark: #121212;
    --card-bg: #1c1c1e;
    --accent-orange: #f96d00;
    --text-light: #f5f5f7;
    --text-muted: #a1a1a6;
    --border-color: #333336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--accent-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-icon {
    font-size: 1.2rem;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--text-light);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* HERO SECTION */
.hero-section {
    padding: 2rem 3rem 4rem 3rem;
}

.hero-card {
    background: linear-gradient(135deg, #1f1d1b 0%, #121212 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--border-color);
    max-height: 480px; /* Limits total height of hero card */
}

.hero-text {
    padding: 3rem;
    flex: 1.4; /* Gives more screen space to text */
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-image-container {
    flex: 0.8; /* Reduces image section width */
    max-width: 380px; /* Constrains max width of the photo */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover; /* Keeps aspect ratio clean without stretching */
    display: block;
}

/* QUOTE BANNER */
.quote-banner {
    background: linear-gradient(rgba(0, 40, 50, 0.85), rgba(0, 20, 30, 0.95)), url('images/quote-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 4rem;
    color: var(--text-muted);
    line-height: 1;
}

.quote-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 1rem 0;
    line-height: 1.4;
}

.quote-author {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ABOUT SECTION */
.about-section {
    padding: 6rem 3rem;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-content strong, .about-content em {
    color: var(--text-light);
}

/* PROJECTS SECTION */
.projects-section {
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.project-card.reverse {
    flex-direction: row-reverse;
}

.project-image-wrapper {
    flex: 1;
}

.project-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.project-info {
    flex: 1.2;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.project-info ul {
    list-style-type: disc;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.project-info li {
    margin-bottom: 0.8rem;
}

.project-info strong {
    color: var(--text-light);
}

/* DOWNLOADS SECTION */
.downloads-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #ffffff;
    color: #121212;
}

.downloads-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.downloads-box {
    background-color: #f5f5f7;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    color: #666;
}

/* CONTACT SECTION */
.contact-section {
    padding: 6rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.contact-form {
    text-align: left;
}

.contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-bottom-color: var(--accent-orange);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--text-light);
    border-radius: 50px;
    background: transparent;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.recaptcha-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    text-align: center;
}

.recaptcha-note a {
    color: var(--accent-orange);
    text-decoration: none;
}

/* FOOTER */
.footer {
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-links a:hover {
    color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-card, .about-container, .project-card, .project-card.reverse {
        flex-direction: column;
    }
    .hero-image-container {
        max-width: 100%;
    }
    .navbar {
        padding: 1rem;
    }
    .hero-text {
        padding: 2rem;
    }
}