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

:root {
    /* Color Palette */
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0f2440;
    --secondary-color: #6b46c1;
    --accent-color: #2b6cb0;
    --accent-light: #4299e1;
    --text-primary: #1a202c;
    --text-secondary: #5a6c7d;
    --text-light: #a0aec0;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --bg-dark: #2d3748;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --error-color: #f56565;
    --warning-color: #ed8936;

    /* Typography */
    --font-heading: 'Barlow', sans-serif;
    --font-body: 'Barlow Condensed', sans-serif;
    --font-size-xs: 0.9rem;
    --font-size-sm: 1.05rem;
    --font-size-base: 1.2rem;
    --font-size-lg: 1.35rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 1.8rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 2.7rem;
    --font-size-5xl: 3.6rem;

/* Google Fonts */

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

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Styles */
.header {
    background-color: #000;
    border-bottom: 1px solid var(--bg-dark);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: auto;
    max-width: 280px;
}

.logo h1 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--bg-primary);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent-light);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.nav-link:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-primary);
    font-size: var(--font-size-2xl);
    cursor: pointer;
    padding: var(--spacing-xs);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    color: var(--accent-light);
    outline: none;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .nav-menu.mobile-menu-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--text-primary);
        border-top: 1px solid var(--bg-dark);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md);
        gap: var(--spacing-xs);
    }

    .nav-menu.mobile-menu-open .nav-link {
        padding: var(--spacing-md);
        border-radius: var(--radius-md);
        text-align: center;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,30 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    animation: wave 20s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero::before {
        animation: none;
    }

    .hero-headline,
    .hero-subtext,
    .hero-cta {
        animation: none;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(107, 70, 193, 0.8) 100%);
} */

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--spacing-xl) 0;
}

.hero-headline {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtext {
    font-size: var(--font-size-xl);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: #fff;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f9c74f;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #f3b73e;
}

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

/* About Section Styles */
.about-section {
    padding: var(--spacing-2xl) 0;
    /* background-color: var(--bg-secondary); */
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.about-intro h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.about-intro p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: #0cc0df;
}

.service-card:focus-within {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #0cc0df;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: white;
    font-size: var(--font-size-2xl);
}

.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Ventures Section Styles */
.ventures-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-primary);
    background-image: url('../img/background-ventures.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ventures-section > .container > h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.venture-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.venture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: #0cc0df;
}

.venture-card:focus-within {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.venture-image {
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.venture-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    transition: transform var(--transition-slow);
}

.venture-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.venture-card:hover .venture-logo-container {
    transform: scale(1.05);
}

.venture-card:hover .venture-logo {
    transform: scale(1.1);
}

/* Legacy styles for backward compatibility */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    transition: transform var(--transition-slow);
}

.psychaesthesia {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.new-eleusis {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.venture-card:hover .placeholder-image {
    transform: scale(1.1);
}

.venture-content {
    padding: var(--spacing-xl);
}

.venture-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.venture-content p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.venture-link {
    display: inline-flex;
    align-items: center;
    color: #0cc0df;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) 0;
    min-height: 44px;
}

.venture-link:hover {
    color: #0cc0df;
    transform: translateX(4px);
}

.venture-link:focus-visible {
    outline: 2px solid color: #0cc0df;
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.venture-link i {
    margin-left: var(--spacing-xs);
    transition: transform var(--transition-fast);
}

.venture-link:hover i {
    transform: translateX(4px);
}

/* Contact Section Styles */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-primary);
    background-image: url('../img/background-contact.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color:#fff;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color:#ff1fa9;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}
.text-magenta{
color:#b24690;
}
.contact-description {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-links a:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

.contact-details {
    color: white;
}

.contact-column h3 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #FF1FA9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-column p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
}

.services-list {
    list-style: none;
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.services-list li {
    padding: 0.25rem 0;
}

.services-list i {
    margin-right: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-container {
    background-color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

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

.submit-button {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: #f9c74f;
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #f3b73e;
}

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

.submit-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Form Success Message */
.form-success {
    background-color: var(--success-color);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    animation: slideDown 0.3s ease-out;
}

.form-success p {
    margin: 0;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Integrated Footer Styles */
.footer-integrated {
    text-align: center;
    padding-top: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-integrated p {
    font-size: var(--font-size-sm);
    color: #FFF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ventures-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --font-size-2xl: 1.25rem;
        --font-size-xl: 1.125rem;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo-image {
        max-width: 200px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        background-position: center center;
        background-size: cover;
    }

    .hero-headline {
        font-size: var(--font-size-4xl);
    }

    .hero-subtext {
        font-size: var(--font-size-lg);
    }

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: var(--font-size-base);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-form-container {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .header {
        padding: var(--spacing-sm) 0;
    }

    .logo-image {
        max-width: 160px;
    }

    .hero {
        min-height: 60vh;
        background-position: center center;
        background-size: cover;
    }

    .hero-headline {
        font-size: var(--font-size-3xl);
    }

    .hero-subtext {
        font-size: var(--font-size-base);
    }

    .about-section,
    .ventures-section,
    .contact-section {
        padding: var(--spacing-xl) 0;
    }

    .service-card,
    .venture-card {
        padding: var(--spacing-lg);
    }

    .venture-image {
        height: 180px;
    }
}

/* Focus styles for better keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}
