/*
Theme Name: Sasha Theme
Theme URI: https://evontech.com/
Author: Evon Tech
Author URI: https://evontech.com/
Description: Single-page custom WordPress theme for Sasha Gimpelson
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: sasha-theme
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(0 40 80 / 40%), rgba(0, 20, 40, 0.88)), url(img/sasha_background_new.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 120, 215, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: -webkit-center;
    color: white;
    padding: 2rem;
    margin-top: 130px;
    max-width: 900px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #0078d4, #005a9e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 120, 212, 0.4);
    background: linear-gradient(135deg, #005a9e, #004578);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 60px;
    height: 60px;
    fill: white;
    opacity: 0.7;
}

section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #001428;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0078d4, #005a9e);
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.profile-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.profile-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.profile-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #0078d4;
}

.highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #001428;
}

.highlight-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.highlight-item svg {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
    fill: #0078d4;
}

.experience {
    background: linear-gradient(135deg, #001428 0%, #002d5c 100%);
    color: white;
}

.experience .section-title {
    color: white;
}

.experience .section-title::after {
    background: linear-gradient(90deg, #0078d4, #00a4ef);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00a4ef;
}

.achievements {
    background: white;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0078d4, #005a9e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #001428;
}

.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #001428;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #0078d4, #005a9e);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.3);
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    margin: 0 1rem;
    color: #0078d4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #005a9e;
    transform: translateY(-2px);
}

.contact-info svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    fill: currentColor;
}

footer {
    background: #001428;
    color: white;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .hero .tagline {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-image-container {
        max-width: 280px;
        margin: 0 auto;
    }

    section {
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .highlights {
        padding: 1.5rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info a {
        display: flex;
        margin: 1rem 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, rgb(0 40 80 / 40%), rgba(0, 20, 40, 0.88)), url(img/sasha_background.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero .tagline {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .experience-card,
    .achievement-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}