/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-color: #103E57;
    --background-color: #F5F5F5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(16, 62, 87, 0.08);
    --shadow-md: 0 4px 16px rgba(16, 62, 87, 0.12);
    --shadow-lg: 0 8px 32px rgba(16, 62, 87, 0.16);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Funnel Sans', sans-serif;
    background-color: var(--background-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Sidebar Menu ===== */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
    z-index: 1000;
    padding: 2rem;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-color);
}

.sidebar-header h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.close-btn:hover {
    background-color: var(--background-color);
    transform: rotate(90deg);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    font-family: 'Funnel Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 62, 87, 0.1), transparent);
    transition: left var(--transition-smooth);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateX(8px);
}

/* ===== Overlay ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 62, 87, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== Header ===== */
.header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--accent-color);
    transform: translate(-50%, -50%);
    transition: width var(--transition-smooth), height var(--transition-smooth);
    z-index: 0;
}

.menu-toggle:hover::before {
    width: 100px;
    height: 100px;
}

.menu-toggle:hover {
    box-shadow: var(--shadow-md);
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1;
}

.menu-toggle:hover span {
    background-color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--accent-color);
    margin-bottom: 6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 6rem;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    transition: all var(--transition-smooth);
    animation: fadeInScale 1s ease 0.2s backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 0 12px rgba(16, 62, 87, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 0%;
    display: block;
}

.hero-description {
    max-width: 700px;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333333;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ===== Footer ===== */
.footer {
    margin-top: auto;
    padding: 3rem 0 2rem;
    border-top: 2px solid rgba(16, 62, 87, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-name {
    font-family: 'Roboto Slab', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-email {
    font-family: 'Funnel Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-smooth);
}

.contact-email:hover {
    color: var(--accent-color);
}

.contact-email:hover::after {
    width: 100%;
}

.footer-copyright {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 62, 87, 0.05);
    text-align: center;
    width: 100%;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .hero {
        padding: 0 0 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 3rem;
    }

    .hero-image-container {
        width: 250px;
        height: 250px;
        margin-bottom: 3rem;
        border-width: 4px;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: unset;
        width: 100%;
        flex: none;
    }

    .social-links {
        justify-content: center;
        width: 100%;
    }

    .sidebar {
        width: 85%;
        max-width: 320px;
        right: -100%;
    }

    .sidebar.active {
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero-image-container {
        width: 180px;
        height: 180px;
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
    }
}