/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #2c5777;
    transition: color 0.3s ease;
}

a:hover {
    color: #f2c795;
    text-decoration: underline;
}

/* Header */
header {
    margin: 0 auto;
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
}

nav ul li a.active {
    color: #f2c795;
    text-decoration: underline;
    font-weight: bold;
}
/* Hero Section */

.hero {
    background: linear-gradient(135deg, #2c5777 0%, #3a7ca8 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='20,5 23,8 20,11 17,8' fill='rgba(255,255,255,0.05)'/%3E%3Crect x='50' y='5' width='3' height='8' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1' transform='rotate(20 51.5 9)'/%3E%3Ccircle cx='5' cy='30' r='2' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3Cpolygon points='85,25 90,30 85,35 80,30' fill='rgba(255,255,255,0.04)'/%3E%3Crect x='40' y='40' width='4' height='4' fill='rgba(255,255,255,0.08)' transform='rotate(75 42 42)'/%3E%3Ccircle cx='15' cy='75' r='1' fill='rgba(255,255,255,0.09)'/%3E%3Cpolygon points='95,50 98,53 95,56 92,53' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Crect x='65' y='55' width='6' height='2' fill='rgba(255,255,255,0.06)' transform='rotate(45 68 56)'/%3E%3Ccircle cx='25' cy='90' r='2.5' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3Cpolygon points='75,10 78,7 81,10 78,13' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
    animation: organicFloat 25s ease-in-out infinite;
}

@keyframes organicFloat {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    20% { transform: translateY(-8px) translateX(3px) rotate(72deg); }
    40% { transform: translateY(-15px) translateX(-2px) rotate(144deg); }
    60% { transform: translateY(-5px) translateX(4px) rotate(216deg); }
    80% { transform: translateY(-12px) translateX(-1px) rotate(288deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}


.hero-content {
    position: relative;
    z-index: 1; /* ensures text is above shapes */
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}



.calling {
    background: #f2c795;
    text-align: center;
    padding: 15px 0;
    color: #2c5777;
    font-weight: 600;
}
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #2c5777;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

/* About Section */
.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 3.5rem;
    color: #2c5777;
    margin-bottom: 1rem;
    text-align: left;
    font-style: italic;
    font-weight: 700;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f2c795;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(44, 87, 119, 0.1);
    transition: transform 0.3s ease;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: block;
    transition: transform 0.3s ease;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text,
.about-location {
    font-size: 1.2rem;
    line-height: 1.;
    color: #333;
}

.about-location {
    color: #555;
    font-style: italic;
}

.about-contact {
    margin-top: 1rem;
}

.about-email {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #2c5777;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-email:hover {
    background-color: #f2c795;
    color: #2c5777;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 87, 119, 0.2);
}

/* Footer */
footer {
    margin-top: 133px;
    background-color: #f2c795;
    padding: 40px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact h3 {
    margin-bottom: 10px;
    color: #2c5777;
}

.social-icons a {
    margin-right: 15px;
    color: #2c5777;
    font-size: 1.5rem;
}

.resume-link a {
    padding: 10px 20px;
    border: 2px solid #2c5777;
    color: #2c5777;
    font-weight: 600;
}

.resume-link a:hover {
    text-decoration: none;
    background-color: #2c5777;
    color: white;
}

.copyright {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    padding: 20px 0;
    background-color: #f2c795;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .about {
        padding: 3rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 5%;
    }

    .hamburger-menu {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin: 20px 0;
        text-align: center;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-title {
        text-align: center;
    }
    .about-content {
        align-items: center;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }
}
