﻿/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card-section {
    display: flex;
    flex-direction: column;
    background: #000;
    align-items: center; /* Optional: centers items horizontally */
    justify-content: center; /* Optional: centers items vertically */
    min-height: 100vh; /* Optional: full viewport height */
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-card {
    background: rgba(34, 40, 49, 0.85); /* deep blue-gray with opacity */
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 2.5rem 2rem;
    max-width: 600px;
    margin: 2rem auto 0 auto;
    color: #e0e0e0;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    text-align: left;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s;
}

    .hero-card:hover {
        box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.28);
        border-color: #fff;
    }

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 200;
    letter-spacing: 12px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 48px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-button {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    padding: 16px 48px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
}

    .hero-button:hover {
        background: #fff !important;
        color: #000 !important;
        transform: translateY(-2px);
    }

.hero-button-filled {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

    .hero-button-filled:hover {
        background: transparent !important;
        color: #fff !important;
    }

.hero-card-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

@media (max-width: 600px) {
    .hero-card-section {
        min-height: unset;
        height: auto;
        padding-bottom: 4rem;
    }

    .hero-card {
        width: 95vw;
        margin: 1rem 0;
    }

    .hero-button {
        margin-bottom: 2rem;
    }
}
/* About Section */
.about-section {
    padding: 120px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 4px;
    margin-bottom: 32px;
    color: #000;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

    .about-image:hover {
        filter: grayscale(0%);
    }

/* Featured Items */
.featured-section {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

.featured-title {
    text-align: center;
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 6px;
    margin-bottom: 80px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.featured-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    group: card;
    height: 400px;
}

    .featured-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: all 0.5s ease;
    }

    .featured-card:hover img {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-overlay {
    transform: translateY(0);
}

.featured-name {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.featured-description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.social-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff !important;
}

    .social-link:hover {
        background: #fff;
        color: #000 !important;
        transform: translateY(-4px);
    }

.footer-text {
    font-size: 14px;
    opacity: 0.6;
    letter-spacing: 1px;
    font-weight: 300;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 6px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
