/* Landing Page Specific Styles */

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #183227 !important;
    z-index: 1000;
    height: 80px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-2-color);
}

.nav-link.cta-button {
    background: var(--accent-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.nav-link.cta-button:hover {
    background: #dd6b20;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: var(--background-primary);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

/* Partners Section */
.partners {
    background: var(--background-dark);
    padding: 80px 0;
}

.partners .section-title,
.partners .section-description {
    color: #ffffff;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 200px;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Products Section */
.products {
    background: #f6f8f6;
    padding: 60px 0;
}

.products .section-header {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
}

.products .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.products .section-description {
    text-align: left;
    margin-left: 0;
    max-width: none;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal);
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    min-height: 450px;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-card.product-reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    background: #e8f5e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-details {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.product-assets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    min-height: 180px;
    justify-content: flex-end;
}

.product-assets-horizontal {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.product-assets img {
    width: 70%;
    height: auto;
    min-height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 0.5rem;
    margin: 0 auto;
}

.product-assets-horizontal img {
    width: 45%;
    margin: 0;
}

/* Why Custodia Section */
.why-custodia {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.why-custodia-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 50, 39, 0.8);
    z-index: -1;
}

.why-custodia .section-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-title {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    background: var(--background-primary);
    padding: 60px 0;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    padding: 0 2rem;
}

.contact-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info {
    text-align: left;
}

.contact-info .section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.contact-info .section-description {
    font-size: 1rem;
    text-align: left;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-alternative {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-alternative + .contact-alternative {
    margin-top: 0.2rem;
}

.contact-alternative a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

/* Team Section */
.team {
    background: var(--background-dark);
    padding: 60px 0;
}

.team .section-title,
.team .section-description {
    color: #ffffff;
    text-align: left !important;
}

.team .section-description {
    margin: 0 !important;
    max-width: none !important;
}

.team .section-header {
    text-align: left !important;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
}

.team .container .section-header {
    text-align: left !important;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-3px);
}

.member-photo {
    margin-bottom: 1rem;
    width: 100%;
}

.member-photo img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    border: 2px solid var(--primary-color);
}

.member-info {
    text-align: left;
}

.member-name {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.member-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.member-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
    font-size: 0.85rem;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: var(--spacing-2xl) 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-text {
    color: var(--text-light);
    margin: 0;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: var(--spacing-lg) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: var(--spacing-md) 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .products .section-header {
        text-align: center;
    }
    
    .products .section-title,
    .products .section-description {
        text-align: center;
    }
    
    .products-grid {
        gap: 1.5rem;
    }
    
    .product-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-card.product-reverse {
        flex-direction: column;
    }
    
    .product-image {
        height: 250px;
    }
    
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team .section-header {
        text-align: left !important;
    }
    
    .team .section-title,
    .team .section-description {
        text-align: left !important;
    }
    
    .member-info {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .partners-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-content { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .contact-visual { 
        height: 300px; 
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
}

