/* ==========================================================
   Custom Theme Variables
   ========================================================== */
:root {
    --cream: #faedcd;
    --cream-soft: #fff8e8;
    --card-border: #f0e2c8;
    --brown: #bc6c25;
    --brown-dark: #9d5519;
    --pink: #b5838d;
    --dark: #2c2c2c;
    --muted: #555555;
    --accent-green: #00c86a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
}

/* ==========================================================
   Navbar
   ========================================================== */
.custom-navbar {
    background: rgba(250, 237, 205, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 14px 0;
}

.custom-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.custom-navbar .navbar-brand b {
    color: var(--pink);
}

.custom-navbar .nav-link {
    color: var(--muted);
    font-weight: 500;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--brown);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

/* Sections get scroll offset so fixed navbar doesn't cover the heading */
section {
    scroll-margin-top: 90px;
    padding: 100px 0;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-desc {
    text-align: center;
    color: var(--muted);
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ==========================================================
   Hero Section
   ========================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--brown);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.circle-frame {
    width: 320px;
    height: 320px;
    max-width: 80vw;
    max-height: 80vw;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background-color: #e6dfd5;
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn-primary-custom {
    background-color: var(--brown);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(188, 108, 37, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--brown-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--brown);
    color: #fff;
}

.btn-access-custom {
    background-color: var(--accent-green);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 200, 106, 0.25);
    transition: all 0.3s ease;
}

.btn-access-custom:hover {
    background-color: #00a856;
    color: #fff;
    transform: translateY(-2px);
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================
   About Cards
   ========================================================== */
.about-card {
    background: var(--cream-soft);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    color: var(--brown);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================
   Projects
   ========================================================== */
.project-item {
    background: var(--cream-soft);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

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

.project-img {
    height: 180px;
    background-color: #e6dfd5;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-box {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #887a6b;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.project-item h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.project-item p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ==========================================================
   Contact
   ========================================================== */
.contact-section {
    background-color: var(--cream);
}

/* ==========================================================
   Footer
   ========================================================== */
footer {
    text-align: center;
    padding: 30px;
    background-color: var(--dark);
    color: #ffffff;
    font-size: 0.9rem;
}
