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

:root {
    --primary-color: #4A5568;
    --text-dark: #2D3748;
    --text-light: #718096;
    --background: #F7FAFC;
    --white: #FFFFFF;
    --purple: #805AD5;
    --purple-light: #9F7AEA;
    --purple-dark: #6B46C1;
    --accent: #D69E2E;
    --accent-light: #ECC94B;
    --border: #E2E8F0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    transform-origin: center;
}

.shape-left {
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: #245D7A;
    transform: rotate(-15deg);
}

.shape-right {
    bottom: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: #4BB8BA;
    transform: rotate(-15deg);
}


/* Main Container */
.main-container {
    position: relative;
    z-index: 1;
}

/* Left Section */
.left-section {
    position: fixed;
    left: 0;
    top: 0;
    width: 60%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30vh 60px 60px;
    background: transparent;
    z-index: 1;
}

.content-wrapper {
    max-width: 420px;
    width: 100%;
}

.site-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.tagline {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.8;
}

/* Right Section */
.right-section {
    margin-left: 45%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    z-index: 2;
}

.info-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
}

/* Info Blocks */
.info-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.info-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Contact block - tighter spacing for simple content */
.info-block:last-of-type .info-title {
    margin-bottom: 8px;
}

/* Copyright */
.copyright {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 30px;
}

/* Service Items */
.service-item {
    margin-bottom: 25px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* About Details */
.about-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: baseline;
}

.detail-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: var(--text-dark);
}

.detail-value a {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.detail-value a:hover {
    color: var(--purple);
    border-bottom-color: var(--purple);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .left-section {
        position: relative;
        width: 100%;
        height: auto;
        padding: 60px 30px 0px;
        align-items: center;
        justify-content: center;
    }

    .right-section {
        margin-left: 0;
        min-height: 0;
        padding: 60px 30px 0px;
    }

    .site-title {
        font-size: 36px;
    }

    .shape-purple {
        width: 80%;
        height: 40%;
        bottom: -10%;
    }

    .shape-accent {
        width: 100%;
        height: 50%;
        bottom: -15%;
    }
}

@media (max-width: 480px) {
    .left-section {
        padding: 25px 20px 20px;
        justify-content: left;
    }

    .right-section {
        padding: 5px 20px 30px;
    }

    .site-title {
        font-size: 24px;
    }

    .tagline {
        font-size: 14px;
    }

    .info-wrapper {
        padding: 25px;
        border-radius: 8px;
    }

    .info-block {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .service-item h3 {
        font-size: 15px;
    }

    .service-item p {
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-container {
    animation: fadeIn 0.8s ease-out;
}

.info-wrapper {
    animation: fadeIn 1s ease-out 0.2s backwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Style */
::selection {
    background-color: var(--purple);
    color: white;
}

::-moz-selection {
    background-color: var(--purple);
    color: white;
}
