/* ==============================================
   CSS Variables (Design Tokens)
============================================== */
:root {
    /* Colors */
    --color-primary: #7877c6;
    --color-secondary: #78dbe2;
    --color-accent: #ff77c6;
    --color-bg-dark: #0a0e1a;
    --color-bg-mid: #1a1f35;
    --color-bg-accent: #2d1b69;
    --color-text-light: #e8eaed;
    --color-text-muted: rgba(232, 234, 237, 0.9);

    /* Responsive Breakpoints */
    --breakpoint-mobile: 1024px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s ease;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(120, 219, 226, 0.2);
    --shadow-md: 0 8px 32px rgba(120, 119, 198, 0.3);
    --shadow-lg: 0 20px 60px rgba(120, 119, 198, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-mid) 50%, var(--color-bg-accent) 100%);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 226, 0.2) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

option {
    color: rgba(10, 14, 26, 0.85);
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(120, 219, 226, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    gap: 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7877c6, #ff77c6, #78dbe2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    margin: 0;
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
}

/* Dropdown Menu */
.nav-menu li.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0;
    padding-top: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(120, 219, 226, 0.2);
    z-index: 1000;
    list-style: none;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #e8eaed;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(120, 219, 226, 0.1);
    color: #78dbe2;
    padding-left: 2rem;
}

/* Hover dropdown for desktop */
.nav-menu li.has-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
    opacity: 0.7;
}

.nav-item {
    display: inline-block;
    padding: 0.8rem 1.3rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    color: #e8eaed;
    white-space: nowrap;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #78dbe2);
    transition: transform 0.3s ease;
}

.nav-item:hover {
    background: rgba(120, 119, 198, 0.1);
    color: #78dbe2;
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.25), rgba(120, 219, 226, 0.25));
    color: #78dbe2;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(120, 219, 226, 0.2);
}

/* Mobile Menu Toggle - CSS Only */
#menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #78dbe2;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #78dbe2;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 110px;
    min-height: calc(100vh - 110px);
    padding: 1rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.6s ease-out;
}

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

a {
    color: #78dbe2;
    text-decoration: none;
}

.social-links a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    text-align: center;
    position: relative;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120, 219, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e8eaed 0%, #78dbe2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(120, 119, 198, 0.4);
}

/* Modern Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* 2x2 Grid für Webdesign (4 Bilder) */
.portfolio-grid.grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 2rem auto 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(120, 219, 226, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(120, 219, 226, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Portfolio Video (YouTube) mit Thumbnail */
.portfolio-item.portfolio-video {
    cursor: pointer;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item.portfolio-video:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(120, 219, 226, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.portfolio-item.portfolio-video:hover .play-button {
    background: rgba(120, 119, 198, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-item.portfolio-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-sm);
}

/* Social Media Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(120, 219, 226, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(120, 219, 226, 0.4);
    box-shadow: 0 12px 40px rgba(120, 219, 226, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.process-step h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Platforms Grid */
.social-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(120, 219, 226, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 219, 226, 0.3);
    background: rgba(120, 219, 226, 0.05);
}

.platform-card h4 {
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.platform-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(120, 219, 226, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #78dbe2, #ff77c6);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(120, 219, 226, 0.4);
    box-shadow: 0 20px 60px rgba(120, 119, 198, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-card h3,
.service-card h4 {
    background: linear-gradient(135deg, #78dbe2, #7877c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    opacity: 0.85;
    line-height: 1.6;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #78dbe2;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(120, 219, 226, 0.3);
    border-radius: 12px;
    color: #e8eaed;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #78dbe2;
    box-shadow: 0 0 20px rgba(120, 219, 226, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-spaced {
    margin-top: var(--spacing-sm);
}

.shop-product-image {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-sm);
}

.impressum-img {
    width: 80vw;
    max-width: 600px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

/* Download Button */
.download-btn {
    background: linear-gradient(135deg, #ff77c6, #7877c6);
    margin: 2rem 0;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #e8eaed 0%, #78dbe2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(120, 219, 226, 0.15);
    backdrop-filter: blur(20px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 219, 226, 0.1);
    border-radius: 12px;
    color: #78dbe2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(120, 219, 226, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 219, 226, 0.2);
}

/* Price Tags */
.price-tag {
    background: linear-gradient(135deg, #7877c6, #ff77c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: rgba(10, 14, 26, 0.9);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(120, 219, 226, 0.2);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #78dbe2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e8eaed;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #78dbe2;
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 119, 198, 0.2);
    opacity: 0.7;
    font-size: 0.9rem;
}

.contact-img {
    width: 40%;
    max-width: 500px;
    height: auto;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.15), rgba(120, 219, 226, 0.15));
    border: 1px solid rgba(120, 219, 226, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7877c6, #78dbe2, #ff77c6);
}

.newsletter-section h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #78dbe2, #7877c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-section p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: #e8eaed;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(120, 219, 226, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #e8eaed;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #78dbe2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(120, 219, 226, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(232, 234, 237, 0.5);
}

.newsletter-submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.3);
    white-space: nowrap;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(120, 119, 198, 0.4);
}

.newsletter-submit:active {
    transform: translateY(0);
}

/* Compact newsletter for footer */
.newsletter-compact {
    padding: 1.5rem;
    margin: 0;
}

.newsletter-compact h3 {
    font-size: 1.3rem;
}

.newsletter-compact p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contact Grid */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(120, 219, 226, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(120, 219, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(120, 219, 226, 0); }
}

/* Loading animation for buttons */
.btn:active {
    transform: scale(0.98);
}

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

/* Shop Item Images */
.shop-item-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero {
    text-align: center;
    padding: 2rem 0 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(120, 219, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.about-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 10px 40px rgba(120, 219, 226, 0.3);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #78dbe2, #7877c6, #ff77c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #e8eaed;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(120, 219, 226, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #78dbe2, #ff77c6);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.about-card:hover::before {
    transform: translateX(0);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(120, 219, 226, 0.4);
    box-shadow: 0 20px 60px rgba(120, 119, 198, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.about-card h3 {
    color: #78dbe2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    opacity: 0.9;
    line-height: 1.8;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(120, 219, 226, 0.05);
    border-radius: 12px;
    border-left: 3px solid #78dbe2;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(120, 219, 226, 0.1);
    transform: translateX(5px);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #78dbe2;
    min-width: 60px;
}

.timeline-text {
    opacity: 0.9;
    font-size: 1rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.skill-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.2), rgba(120, 219, 226, 0.2));
    border: 1px solid rgba(120, 219, 226, 0.3);
    border-radius: 20px;
    color: #78dbe2;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.3), rgba(120, 219, 226, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 219, 226, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        margin-top: 80px;
    }

    .contact-img {
        width: 70%;
    }

    .nav-container {
        padding: 1rem;
        flex-wrap: nowrap;
        position: relative;
    }

    .logo {
        font-size: 1.3rem;
    }

    .menu-icon {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        display: flex;
        flex-direction: column;
        width: 280px;
        max-width: 85vw;
        gap: 0;
        padding: 0;
        background: rgba(10, 14, 26, 0.75);
        backdrop-filter: blur(15px);
        border-radius: 0 0 0 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    #menu-toggle:checked ~ .nav-menu {
        max-height: 600px;
        overflow-y: auto;
    }

    .nav-menu > li {
        width: 100%;
        display: block;
    }

    .nav-item {
        width: 100%;
        display: block;
        text-align: center;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(120, 219, 226, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    /* Dropdown on mobile - always visible in submenu */
    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        background: rgba(120, 219, 226, 0.05);
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .dropdown-menu a {
        padding: 0.8rem 1rem 0.8rem 2rem;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(120, 219, 226, 0.05);
    }

    .dropdown-menu a:hover {
        padding-left: 2.5rem;
    }

    .nav-item.dropdown-toggle {
        pointer-events: none;
        opacity: 0.7;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    #menu-toggle:checked ~ label .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    #menu-toggle:checked ~ label .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ label .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-grid.grid-2x2 {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-platforms {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-photo {
        width: 200px;
        height: 200px;
    }

    .service-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .content-section {
        padding: 2rem;
    }

    .newsletter-button {
        max-width: 90%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem;
    }

    .about-name {
        font-size: 2rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }
}
