/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Background color like your example */
body {
    background-color: #0F1E3D;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: #7986FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    object-fit: cover;
}

/* === HEADER === */
/* Same color as button: blue-purple gradient */
.main-header {
    background: linear-gradient(90deg, #5865F2, #7928CA);
    color: white;
    padding: 30px;
    text-align: center;
}

.main-header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.location {
    font-style: italic;
    opacity: 0.9;
    margin-top: 5px;
}

/* === NAVIGATION === */
.navbar {
    background-color: #1A2C51;
    padding: 12px;
    text-align: center;
}

.navbar a {
    color: white;
    margin: 0 15px;
    font-weight: bold;
}

.navbar a:hover {
    color: #A29BFE;
}

/* === SECTIONS === */
.section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.8rem;
    border-bottom: 2px solid #7928CA;
    padding-bottom: 5px;
}

.bg-light {
    background-color: #1A2C51;
    border-radius: 10px;
    padding: 20px;
}

/* === ABOUT SECTION === */
.content-box {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* ✅ CIRCLE FRAME FOR YOUR PICTURE */
.circle-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid #ccc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.profile-pic {
    width: 100%;
    height: 100%;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.offer-box {
    background-color: #e8f4f8;
    color: #333;
    padding: 15px;
    border-left: 5px solid #1abc9c;
    margin-top: 15px;
    border-radius: 4px;
}

/* === SKILLS SECTION === */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.skill-item {
    background: #2A3F6A;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
}

.skill-item h3 {
    color: #A29BFE;
    margin-bottom: 8px;
}

/* === PROJECTS SECTION === */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-card {
    background: #1A2C51;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-top: 3px solid #7928CA;
}

.project-card h3 {
    color: #A29BFE;
    margin-bottom: 8px;
}

/* === PHOTOGRAPHY SECTION === */
.section-note {
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    background-color: #5865F2;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.photo-box {
    background-color: #2A3F6A;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff;
    font-weight: bold;
    overflow: hidden;
}

.photo-box img {
    width: 100%;
    height: 85%;
    margin-bottom: 5px;
}

/* === CONTACT SECTION === */
.contact-box {
    background: #1A2C51;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 0 auto;
}

.contact-box p {
    padding: 8px 0;
    border-bottom: 1px dashed #2A3F6A;
}

/* === FOOTER === */
/* Same color as button: blue-purple gradient */
.main-footer {
    background: linear-gradient(90deg, #5865F2, #7928CA);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    margin-top: 20px;
}