/* Subscribe Section Styles */

/* Background style from subscribe.php inline CSS */
.subscribe {
    background-image: url('../site-images/how-to-subscribe-to-channel.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Main subscribe section styling - from style.css */
.subscribe {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    min-height: 60vh;
    background: url(../site-images/stock.jpg) no-repeat center center/cover fixed;
}

/* Overlay styling - from style.css */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Container for subscribe section - from style.css */
.s-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Steps wrapper - main flex container - from style.css */
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -20px;
    flex-wrap: wrap;
    perspective: 1000px;
}

/* Individual step item - from style.css */
.step-item {
    position: relative;
    display: flex;
    align-items: center;
    margin: 20px -10px;
    animation: fadeInUp 0.8s ease backwards;
}

/* Animation delays for each step - from style.css */
.step-item:nth-child(1) {
    animation-delay: 0.1s;
}

.step-item:nth-child(2) {
    animation-delay: 0.2s;
}

.step-item:nth-child(3) {
    animation-delay: 0.3s;
}

.step-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Hexagon shape styling - from style.css */
.step-hexagon {
    width: 352px;
    height: 210px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    clip-path: polygon(0% 0%, 83% 0%, 100% 50%, 83% 100%, 0% 100%, 8% 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Hexagon shine effect overlay - from style.css */
.step-hexagon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    clip-path: polygon(0% 0%, 83% 0%, 100% 50%, 83% 100%, 0% 100%, 8% 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.step-hexagon:hover::before {
    opacity: 1;
}

/* Step icon styling - from style.css */
.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.step-hexagon:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Step title styling - from style.css */
.step-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Step description styling - from style.css */
.step-description {
    font-size: 12px;
    color: #555;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    padding: 0 25px;
}

/* Arrow connector between steps - from style.css */
.step-arrow {
    width: 130px;
    height: 210px;
    position: relative;
    margin-left: -66px;
    transition: all 0.3s ease;
}

.step-item:hover .step-arrow {
    transform: translateX(5px);
}

/* Arrow shape with clip-path - from style.css */
.arrow-shape {
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%);
    position: relative;
    overflow: hidden;
}

/* Arrow shine effect - from style.css */
.arrow-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* Shine animation for arrows - from style.css */
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Step number display - from style.css */
.step-number {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 56px;
    font-weight: 900;
    color: white;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.step-item:hover .step-number {
    transform: translateY(-50%) scale(1.1);
}

/* Arrow gradient colors for each step - from style.css */
.step-item:nth-child(1) .arrow-shape {
    background: linear-gradient(135deg, #ff6b9d 0%, #c94b7d 100%);
}

.step-item:nth-child(2) .arrow-shape {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.step-item:nth-child(3) .arrow-shape {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.step-item:nth-child(4) .arrow-shape {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

/* Progress line styling - from style.css */
.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 0;
}

/* Progress fill animation - from style.css */
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.5));
    width: 0;
    animation: progressFill 2s ease forwards;
    animation-delay: 0.5s;
}


@media (max-width: 400px){
    .step-title{
        font-size: 11px;
    }

    .step-hexagon{
        width: 298px;
    }
}

@media (max-width: 360px){
   
    .step-hexagon{
        width: 260px;
    }
}












