/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    padding: 150px 0 80px;
    margin-top: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 42px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.hero-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    gap: 40px;
}

.about-content p {
    flex: 2;
    font-size: 16px;
    line-height: 1.8;
}

.skills {
    flex: 1;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.skills h3 {
    color: var(--purple);
    font-size: 20px;
}

.skills ul {
    list-style: none;
}

.skills li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.skills li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--pink);
}
/* Page Previews Section */
.page-previews {
    padding: 80px 0;
    background: var(--white);
}

.page-previews h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.preview-card {
    display: block;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-gray);
}
/* Feminine Tech Preview Cards */
.preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(158, 102, 173, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 89, 182, 0.1);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(158, 102, 173, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.preview-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
}

.preview-card:hover .preview-image {
    transform: scale(1.03);
}

.preview-content {
    padding: 20px;
    background: white;
}

.preview-content h3 {
    color: var(--purple);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.preview-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.preview-link {
    color: var(--pink);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.preview-card:hover .preview-link {
    color: var(--dark-blue);
    transform: translateX(5px);
}
.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.preview-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.preview-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-blue);
    font-size: 22px;
}

.preview-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-previews h2 {
        font-size: 30px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Projects */
.featured-projects {
    background: linear-gradient(135deg, var(--white), var(--light-blue));
}

.featured-projects h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.projects-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project:hover {
    transform: translateY(-10px);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project h3 {
    padding: 15px 20px 0;
    color: var(--dark-blue);
}

.project p {
    padding: 0 20px 20px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content h3 {
        font-size: 20px;
    }
}