/* Contact Strip */
.contact-strip {
    position: fixed;
    top: 0;
    width: 100%;
    background: #6B0609;
    color: white;
    font-size: 0.9rem;
    z-index: 1001;
    padding: 0.5rem 0;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
    /* Reduced from default to bring content closer to navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/Project124-Montage.png') center/cover;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6B0609;
    opacity: 0.8;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto 23rem auto;
    /* Added bottom margin for spacing from stats */
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: calc(100vh - 200px);
    /* Reduced from 280px to bring content up */
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 4em;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f97316;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #8b4513;
    transform: translateY(-3px);
}

/* Hero Visuals */
.hero-visuals {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 10;
}

.hero-image {
    left: -100px;
    width: 550px;
    height: auto;
    z-index: 2;
    position: relative;
    bottom: 30px;
    padding: 20%;
}

/* Floating Social Cards */

.followers-card {
    bottom: 12%;
    left: -20%;
    animation-delay: 1s;
}

.reach-card {
    bottom: 10%;
    right: -1%;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.followers-card .card-icon {
    background-color: #4ecdc4;
    color: white;
}

.reach-card .card-icon {
    background-color: #45b7d1;
    color: white;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.card-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.card-growth {
    font-size: 11px;
    color: #4caf50;
    font-weight: 500;
}

.social-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.likes-card {
    top: 25%;
    right: 1%;
    animation-delay: 0s;
}

.likes-card .card-icon {
    background-color: #ff6b6b;
    color: white;
}

.followers {
    top: 140px;
    left: -20px;
    /* Moved further left */
    animation-delay: -1s;
}

.reach {
    top: 260px;
    /* Moved down to add margin from followers card */
    right: -180px;
    /* Moved further right */
    animation-delay: -1.5s;
}

.metric-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 3rem 0;
    margin-top: 2rem;
    /* Added top margin for spacing from hero-container */
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.stat-item {
    text-align: center;
    color: #333;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes card-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-strip {
        padding: 0.75rem 0;
    }

    body {
        padding-top: 60px;
    }

    .navbar {
        top: 60px;
        padding: 0.25rem 0;
        /* Reduced padding on mobile too */
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding-top: 40px;
        /* Reduced padding on mobile */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        height: auto;
        min-height: 60vh;
        margin-bottom: 2rem;
    }

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

    .hero-visuals {
        height: 350px;
    }

    .hero-image {
        width: 250px;
        bottom: 0;
    }

    .likes-card {
        top: 40px;
        right: -120px;
    }

    .followers {
        top: 100px;
        left: -140px;
    }

    .reach {
        top: 180px;
        /* Increased spacing on mobile too */
        right: -120px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1rem;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}