/* --- Reset + Fonts --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #41A67E, #05339C);
    color: #333;
}


/* --- Navbar --- */
.custom-nav {
    background-color: #05339C;
}


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


.logo {
    color: #E5C95F;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}


.nav-links {
    display: flex;
    gap: 25px;
}


.nav-links .nav-link {
    color: #E5C95F !important;
    font-size: 18px;
    transition: 0.3s;
}


.nav-links .nav-link:hover {
    color: #41A67E !important;
    transform: scale(1.1);
}


/* --- Gradient Text --- */
.gradient-text {
    font-weight: bold;
    background: linear-gradient(to right, #05339C, #41A67E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* --- Centered Gold Box (Intro & Section Titles) --- */
.title-gold-box, .intro-box {
    background: #ffffff;
    padding: 20px 30px;
    font-size: 28px;
    color: #1C658C;
    border: 3px solid #E5C95F;
    border-radius: 12px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* --- Photo Frame --- */
.photo-frame {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    padding: 15px;
    border-radius: 18px;
    background: linear-gradient(to right, #41A67E, #05339C);
    width: fit-content;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}


.photo-frame img {
    width: 250px;
    height: auto;
    border-radius: 12px;
    border: 4px solid #ffffff;
    object-fit: cover;
}


/* --- Cards & Boxes --- */
.card, .custom-text-box, .social-card {
    background: #ffffff;
    border: 3px solid #E5C95F;  /* gold border */
    border-radius: 15px;
    padding: 25px;
    margin: 20px auto;
    max-width: 700px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-align: center;
}


/* Headings inside boxes */
.card h3, .custom-text-box h3, .social-card h3 {
    color: #1C658C;
    margin-bottom: 15px;
}


/* Paragraph text inside boxes */
.card p, .custom-text-box p, .social-card p {
    color: #0C4F5E; /* dark blue-green */
    font-size: 1rem;
    line-height: 1.6;
}


/* --- Social Links --- */
.social-card-links a {
    font-size: 26px;
    color: #2b2b2b;
    background: #E5C95F;
    padding: 10px 12px;
    border-radius: 12px;
    transition: 0.3s ease;
}


.social-card-links a:hover {
    transform: translateY(-4px);
    background: #1055C9;
    color: #fff;
}


/* --- Commission Button --- */
.commission-btn {
    padding: 0.8rem 1.2rem;
    background: #1055C9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}


.commission-btn:hover {
    background: #0a3f90;
}


/* --- Footer --- */
footer {
    color: white;
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, #41A67E, #05339C);
}


/* --- Responsive Grid for Hobbies / Skills --- */
.hobbies-grid, .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}


